We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75f476d commit 47b3e0eCopy full SHA for 47b3e0e
.github/workflows/sycl-linux-run-tests.yml
@@ -284,7 +284,11 @@ jobs:
284
echo "opts=$CMAKE_EXTRA_ARGS" >> $GITHUB_OUTPUT
285
else
286
if [ "${{ contains(inputs.target_devices, 'ext_oneapi_hip') }}" == "true" ]; then
287
- echo 'opts=-DHIP_PLATFORM="AMD" -DAMD_ARCH="gfx1031"' >> $GITHUB_OUTPUT
+ if [ "${{ runner.name }}" == "cp-amd-runner" ]; then
288
+ echo 'opts=-DHIP_PLATFORM="AMD" -DAMD_ARCH="gfx1030"' >> $GITHUB_OUTPUT
289
+ else
290
+ echo 'opts=-DHIP_PLATFORM="AMD" -DAMD_ARCH="gfx1031"' >> $GITHUB_OUTPUT
291
+ fi
292
293
echo 'opts=' >> $GITHUB_OUTPUT
294
fi
0 commit comments