Skip to content

Commit

Permalink
set CMAKE_HIP_ARCHITECTURES at configure time so that build matches
Browse files Browse the repository at this point in the history
desired execution environment

Signed-off-by: Karl W Schulz <karl.schulz@amd.com>
  • Loading branch information
koomie committed Jun 3, 2024
1 parent c31ecf2 commit 18f96b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/mi-rhel9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,12 @@ jobs:
mkdir build
cd build
ml cmake
cmake -DENABLE_TESTS=ON -DENABLE_COVERAGE=ON -DPYTEST_NUMPROCS=8 ..
cmake -DENABLE_TESTS=ON -DCMAKE_HIP_ARCHITECTURES=$CI_ARCH -DENABLE_COVERAGE=ON -DPYTEST_NUMPROCS=8 ..
- name: Build tests and Run [profile] mode
run: |
cd build
srun -N 1 -J omniperf -p $CI_QUEUE -t 00:20:00 make; ctest -j 4 --resource-spec-file ../tests/4gpus.json --verbose -L profile
make
srun -N 1 -J omniperf -p $CI_QUEUE -t 00:20:00 ctest -j 4 --resource-spec-file ../tests/4gpus.json --verbose -L profile
- name: Run [analyze workloads] mode
if: '!cancelled()'
run: |
Expand Down
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,11 @@ endif()
# Setup testing collateral

option(ENABLE_TESTS "Enable compilation of testing collateral" OFF)
set(CMAKE_HIP_FLAGS_RELEASE "-O2")
if(${ENABLE_TESTS})
enable_language("C" "HIP")
add_subdirectory(tests)
set(CMAKE_HIP_FLAGS_RELEASE "-O2")

endif()
message(STATUS "Enable tests compilation: ${ENABLE_TESTS}")

Expand Down

0 comments on commit 18f96b6

Please sign in to comment.