File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -37,5 +37,5 @@ if %errorlevel% neq 0 exit 1
3737" %PYTHON% " -m dpctl -f
3838if %errorlevel% neq 0 exit 1
3939
40- " %PYTHON% " -m pytest -ra --pyargs dpnp
40+ " %PYTHON% " -m pytest -s --pyargs dpnp
4141if %errorlevel% neq 0 exit 1
Original file line number Diff line number Diff line change 3737
3838$PYTHON -c " import dpnp; print(dpnp.__version__)"
3939$PYTHON -m dpctl -f
40- $PYTHON -m pytest -ra --pyargs dpnp
40+ $PYTHON -m pytest -s --pyargs dpnp
Original file line number Diff line number Diff line change @@ -411,9 +411,22 @@ def is_intel_numpy():
411411 blas = build_deps ["blas" ]
412412 lapack = build_deps ["lapack" ]
413413
414+ print ()
415+ print ("is_intel_numpy" )
416+ print (blas )
417+ print ()
418+ print (lapack )
419+ print ()
420+
414421 if numpy_version () < "2.0.0" :
415422 # numpy 1.26.4 has LAPACK name equals to 'dep140030038112336'
423+ print ("return < 2.0 = " , "mkl-dynamic" in blas ["name" ])
424+ print ()
416425 return "mkl-dynamic" in blas ["name" ]
426+ print (
427+ "return = " , all ("mkl-dynamic" in dep ["name" ] for dep in [blas , lapack ])
428+ )
429+ print ()
417430 return all ("mkl-dynamic" in dep ["name" ] for dep in [blas , lapack ])
418431
419432
You can’t perform that action at this time.
0 commit comments