Skip to content

Commit

Permalink
try to skip only gpu spmd tests
Browse files Browse the repository at this point in the history
  • Loading branch information
julia.roznova committed Dec 4, 2024
1 parent 48b70a1 commit 1e71ba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/run_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def get_exe_cmd(ex, args):
return None
if not check_version(req_version[os.path.basename(ex)], get_daal_version()):
return None
if not check_library(req_library[os.path.basename(ex)]):
if not check_library(list(filter(lambda x: x!="dpctl", req_library[os.path.basename(ex)]))):
return None

if os.path.dirname(ex).endswith("sklearnex"):
Expand Down

0 comments on commit 1e71ba7

Please sign in to comment.