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 b1f4cf7 commit f9c4aafCopy full SHA for f9c4aaf
.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