Skip to content

Commit 8dc2523

Browse files
committed
Add debug prints
1 parent b03f7ab commit 8dc2523

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

dpnp/tests/helper.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)