diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 9c039d46d7..2f01294756 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,7 +20,7 @@ on: env: ROCM_PATH: "/opt/rocm" - GPU_TARGETS: "gfx900 gfx906 gfx908 gfx90a gfx940 gfx941 gfx942 gfx1030 gfx1100 gfx1101 gfx1102" + GPU_TARGETS: "gfx900 gfx906 gfx908 gfx90a gfx940 gfx941 gfx942 gfx950 gfx1030 gfx1100 gfx1101 gfx1102" PATH: "/usr/bin:$PATH" EXCLUDED_PATHS: "external /tmp/build/external" GLOBAL_CMAKE_OPTIONS: "-DROCPROFILER_INTERNAL_RCCL_API_TRACE=ON" diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index aa08c5c58d..5832408763 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -23,7 +23,7 @@ concurrency: env: # TODO(jrmadsen): replace LD_RUNPATH_FLAG, GPU_TARGETS, etc. with internal handling in cmake ROCM_PATH: "/opt/rocm" - GPU_TARGETS: "gfx900 gfx906 gfx908 gfx90a gfx940 gfx941 gfx942 gfx1030 gfx1100 gfx1101 gfx1102 gfx1201" + GPU_TARGETS: "gfx900 gfx906 gfx908 gfx90a gfx940 gfx941 gfx942 gfx950 gfx1030 gfx1100 gfx1101 gfx1102 gfx1201" PATH: "/usr/bin:$PATH" ## No tests should be excluded here except for extreme emergencies; tests should only be disabled in CMake ## A task should be assigned directly to fix the issue diff --git a/.github/workflows/rerun.yml b/.github/workflows/rerun.yml index 140820f3c7..a35c96d764 100644 --- a/.github/workflows/rerun.yml +++ b/.github/workflows/rerun.yml @@ -11,7 +11,7 @@ concurrency: env: # TODO(jrmadsen): replace LD_RUNPATH_FLAG, GPU_TARGETS, etc. with internal handling in cmake ROCM_PATH: "/opt/rocm" - GPU_TARGETS: "gfx900 gfx906 gfx908 gfx90a gfx940 gfx941 gfx942 gfx1030 gfx1100 gfx1101 gfx1102" + GPU_TARGETS: "gfx900 gfx906 gfx908 gfx90a gfx940 gfx941 gfx942 gfx950 gfx1030 gfx1100 gfx1101 gfx1102" PATH: "/usr/bin:$PATH" EXCLUDED_TESTS: ".*pc_sampling.*" diff --git a/samples/openmp_target/CMakeLists.txt b/samples/openmp_target/CMakeLists.txt index 4315449308..f3e09ee196 100644 --- a/samples/openmp_target/CMakeLists.txt +++ b/samples/openmp_target/CMakeLists.txt @@ -30,7 +30,8 @@ target_link_libraries( PRIVATE rocprofiler-sdk::rocprofiler-sdk rocprofiler-sdk::samples-build-flags rocprofiler-sdk::samples-common-library) -set(DEFAULT_GPU_TARGETS "gfx906" "gfx908" "gfx90a" "gfx942" "gfx1100" "gfx1101" "gfx1102") +set(DEFAULT_GPU_TARGETS "gfx906" "gfx908" "gfx90a" "gfx942" "gfx950" "gfx1100" "gfx1101" + "gfx1102") set(OPENMP_GPU_TARGETS "${DEFAULT_GPU_TARGETS}" diff --git a/source/scripts/run-ci.py b/source/scripts/run-ci.py index 46b85ba48e..575dd5f4f4 100755 --- a/source/scripts/run-ci.py +++ b/source/scripts/run-ci.py @@ -28,7 +28,7 @@ _DEFAULT_INSTALL_PREFIX = ( ) _DEFAULT_GPU_TARGETS = os.environ.get( "GPU_TARGETS", - "gfx900 gfx906 gfx908 gfx90a gfx942 gfx1030 gfx1100 gfx1101 gfx1102", + "gfx900 gfx906 gfx908 gfx90a gfx942 gfx950 gfx1030 gfx1100 gfx1101 gfx1102", ).split() diff --git a/tests/bin/openmp/CMakeLists.txt b/tests/bin/openmp/CMakeLists.txt index 9ef3d0b9bf..4b1e222d60 100644 --- a/tests/bin/openmp/CMakeLists.txt +++ b/tests/bin/openmp/CMakeLists.txt @@ -23,7 +23,8 @@ project(rocprofiler-sdk-tests-bin-openmp LANGUAGES CXX) find_package(rocprofiler-sdk REQUIRED) -set(DEFAULT_GPU_TARGETS "gfx906" "gfx908" "gfx90a" "gfx942" "gfx1100" "gfx1101" "gfx1102") +set(DEFAULT_GPU_TARGETS "gfx906" "gfx908" "gfx90a" "gfx942" "gfx950" "gfx1100" "gfx1101" + "gfx1102") set(OPENMP_GPU_TARGETS "${DEFAULT_GPU_TARGETS}" diff --git a/tests/common/CMakeLists.txt b/tests/common/CMakeLists.txt index 3969c12129..0694811f88 100644 --- a/tests/common/CMakeLists.txt +++ b/tests/common/CMakeLists.txt @@ -18,6 +18,7 @@ set(DEFAULT_GPU_TARGETS "gfx908" "gfx90a" "gfx942" + "gfx950" "gfx1030" "gfx1010" "gfx1100"