From 0746f01845d04a08f32fd08008c46142a232e92a Mon Sep 17 00:00:00 2001 From: Karl W Schulz Date: Mon, 3 Jun 2024 11:19:19 -0500 Subject: [PATCH] update CI to build necessary vcopy binary via new additions to build system (a la, just run make) Signed-off-by: Karl W Schulz [ROCm/rocprofiler-compute commit: 5077f9e24f9b603bdeb33b0e3a5f2226270ff477] --- .../rocprofiler-compute/.github/workflows/mi-rhel9.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/projects/rocprofiler-compute/.github/workflows/mi-rhel9.yml b/projects/rocprofiler-compute/.github/workflows/mi-rhel9.yml index e350a7ce3b..5e423b671b 100644 --- a/projects/rocprofiler-compute/.github/workflows/mi-rhel9.yml +++ b/projects/rocprofiler-compute/.github/workflows/mi-rhel9.yml @@ -82,13 +82,10 @@ jobs: cd build ml cmake cmake -DENABLE_COVERAGE=ON -DPYTEST_NUMPROCS=8 .. - - name: Create HIP binary (vcopy) - run: | - hipcc --offload-arch=$CI_ARCH -o tests/vcopy ./sample/vcopy.cpp - - name: Run [profile] mode + - name: Build tests and Run [profile] mode run: | cd build - srun -N 1 -J omniperf -p $CI_QUEUE -t 00:20:00 ctest -j 4 --resource-spec-file ../tests/4gpus.json --verbose -L profile + 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 - name: Run [analyze workloads] mode if: '!cancelled()' run: |