Skip to content

Commit cab4ce8

Browse files
committed
Print OneAPI evn variables
Enable more tests from usm-type scope Enable tests for logic and bitwise OPs Enable tests for matmul Enable tests for nrom, meshgrid, vecdot Enable tests ufuncs Use only device USM type Add host USM type Use only shared USM type
1 parent 68fa17a commit cab4ce8

File tree

2 files changed

+258
-249
lines changed

2 files changed

+258
-249
lines changed

conda-recipe/run_test.bat

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ if defined ONEAPI_ROOT (
88
set "DPLROOT=%ONEAPI_ROOT%\dpl\latest"
99
)
1010

11+
echo "DPCPPROOT=%DPCPPROOT%"
12+
echo "MKLROOT=%MKLROOT%"
13+
echo "TBBROOT=%TBBROOT%"
14+
echo "DPLROOT=%DPLROOT%"
15+
1116
REM if DPCPPROOT is specified (work with custom DPCPP)
1217
if defined DPCPPROOT (
1318
call "%DPCPPROOT%\env\vars.bat"
@@ -40,5 +45,8 @@ if %errorlevel% neq 0 exit 1
4045
"%PYTHON%" -m pytest -ra --pyargs dpnp.tests.test_ndarray
4146
if %errorlevel% neq 0 exit 1
4247

48+
"%PYTHON%" -m pytest -ra --pyargs dpnp.tests.test_usm_type
49+
if %errorlevel% neq 0 exit 1
50+
4351
"%PYTHON%" -m pytest -ra --pyargs dpnp
4452
if %errorlevel% neq 0 exit 1

0 commit comments

Comments
 (0)