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 d2c672e commit fdf4e21Copy full SHA for fdf4e21
dpnp/tests/helper.py
@@ -410,6 +410,10 @@ def is_intel_numpy():
410
build_deps = numpy.show_config(mode="dicts")["Build Dependencies"]
411
blas = build_deps["blas"]
412
lapack = build_deps["lapack"]
413
+
414
+ if numpy_version() < "2.0.0":
415
+ # numpy 1.26.4 has LAPACK name equals to 'dep140030038112336'
416
+ return "mkl-dynamic" in blas["name"]
417
return all("mkl-dynamic" in dep["name"] for dep in [blas, lapack])
418
419
0 commit comments