Skip to content

Commit

Permalink
add ROCm CI for version 5.6, 5.7 and 6.0
Browse files Browse the repository at this point in the history
CI_FILTER: ^linux_hipcc
  • Loading branch information
SimeonEhrig authored and psychocoderHPC committed Dec 20, 2023
1 parent cf105b7 commit 27de8ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions script/job_generator/generate_job_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,12 @@ def job_variables(job: Dict[str, Tuple[str, str]]) -> Dict[str, str]:
variables["ALPAKA_CI_CLANG_VER"] = "15"
elif job[DEVICE_COMPILER][VERSION] == "5.5":
variables["ALPAKA_CI_CLANG_VER"] = "16"
elif job[DEVICE_COMPILER][VERSION] == "5.6":
variables["ALPAKA_CI_CLANG_VER"] = "16"
elif job[DEVICE_COMPILER][VERSION] == "5.7":
variables["ALPAKA_CI_CLANG_VER"] = "17"
elif job[DEVICE_COMPILER][VERSION] == "6.0":
variables["ALPAKA_CI_CLANG_VER"] = "17"
else:
raise RuntimeError(
"generate_job_yaml.job_variables(): unknown hip version: "
Expand Down
2 changes: 1 addition & 1 deletion script/job_generator/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"12.1",
"12.2",
],
HIPCC: ["5.0", "5.1", "5.2", "5.3", "5.4", "5.5"],
HIPCC: ["5.0", "5.1", "5.2", "5.3", "5.4", "5.5", "5.6", "5.7", "6.0"],
ICPX: ["2023.1.0", "2023.2.0"],
# Contains all enabled back-ends.
# There are special cases for ALPAKA_ACC_GPU_CUDA_ENABLE and ALPAKA_ACC_GPU_HIP_ENABLE
Expand Down

0 comments on commit 27de8ee

Please sign in to comment.