Skip to content

Commit

Permalink
Exclude clang CUDA Debug builds from the CI
Browse files Browse the repository at this point in the history
They fail with:
ptxas /tmp/randomStrategies-sm_61-768a17.s, line 14415; fatal   : Parsing error near '.': syntax error
ptxas fatal   : Ptx assembly aborted due to errors
clang++: error: ptxas command failed with exit code 255 (use -v to see invocation)
  • Loading branch information
bernhardmgruber authored and j-stephan committed Sep 22, 2023
1 parent e8a503e commit ecc64f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/job_generator/alpaka_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def alpaka_post_filter(row: List) -> bool:
and row[param_map[BUILD_TYPE]][VERSION] == CMAKE_DEBUG
and row_check_name(row, DEVICE_COMPILER, "==", CLANG_CUDA)
):
for clang_cuda_version in ["15", "16"]:
for clang_cuda_version in ["15", "16", "17"]:
if row_check_version(row, HOST_COMPILER, "==", clang_cuda_version):
return False

Expand Down

0 comments on commit ecc64f4

Please sign in to comment.