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 cdf220f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/run_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,9 @@ 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 cdf220f

Please sign in to comment.