We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e97a25 commit 5515e01Copy full SHA for 5515e01
dpnp/tests/helper.py
@@ -427,6 +427,10 @@ def is_intel_numpy():
427
build_deps = numpy.show_config(mode="dicts")["Build Dependencies"]
428
blas = build_deps["blas"]
429
lapack = build_deps["lapack"]
430
+
431
+ if numpy_version() < "2.0.0":
432
+ # numpy 1.26.4 has LAPACK name equals to 'dep140030038112336'
433
+ return "mkl-dynamic" in blas["name"]
434
return all("mkl-dynamic" in dep["name"] for dep in [blas, lapack])
435
436
0 commit comments