From 31fc6020fc307b8cceea29b8b0c9a690fe98d215 Mon Sep 17 00:00:00 2001 From: Scott Todd Date: Mon, 10 Feb 2025 12:14:14 -0800 Subject: [PATCH] Enable CUDA and ROCm backends in ci_linux_x64_clang.yml. (#19883) These backends default to disabled, so enable them on this CI config. The backends are already tested in other jobs too. I hoped this might help spot issues like https://github.com/iree-org/iree/issues/19875, but it doesn't seem that way. | | Before | After | -- | -- | -- Logs | [logs here](https://github.com/iree-org/iree/actions/runs/13118302608/job/36597989009) | [logs here](https://github.com/iree-org/iree/actions/runs/13118149869/job/36597451528?pr=19883) Number of build targets | 8442 | 8715 Number of `iree-test-deps` targets | 1067 | 1336 Number of tests | 1538 | 1552 ci-exactly: linux_x64_clang --- .github/workflows/ci_linux_x64_clang.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci_linux_x64_clang.yml b/.github/workflows/ci_linux_x64_clang.yml index 2d1a44864dd5..8ad8337fd8b8 100644 --- a/.github/workflows/ci_linux_x64_clang.yml +++ b/.github/workflows/ci_linux_x64_clang.yml @@ -43,6 +43,8 @@ jobs: -DIREE_ENABLE_LLD=ON \ -DIREE_ENABLE_ASSERTIONS=ON \ -DIREE_BUILD_DOCS=ON \ + -DIREE_TARGET_BACKEND_CUDA=ON \ + -DIREE_TARGET_BACKEND_ROCM=ON \ -DIREE_TARGET_BACKEND_WEBGPU_SPIRV=ON - name: CMake - build run: |