Skip to content

Commit b03f7ab

Browse files
committed
Add special handling for numpy 1.26.4
1 parent a02949b commit b03f7ab

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

dpnp/tests/helper.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,10 @@ def is_intel_numpy():
410410
build_deps = numpy.show_config(mode="dicts")["Build Dependencies"]
411411
blas = build_deps["blas"]
412412
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"]
413417
return all("mkl-dynamic" in dep["name"] for dep in [blas, lapack])
414418

415419

0 commit comments

Comments
 (0)