Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable rocm and vulkan build in CI workflow for PJRT plugin #19279

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Fix cmake for rocm PJRT plugin
Signed-off-by: PragmaTwice <twice@apache.org>
  • Loading branch information
PragmaTwice committed Nov 23, 2024
commit 45abc51c42c7babe6b5a90227d100f3ba1409de5
2 changes: 1 addition & 1 deletion integrations/pjrt/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ endif()
if(IREE_HAL_DRIVER_CUDA)
add_subdirectory(iree_pjrt/cuda)
endif()
if("rocm" IN_LIST IREE_EXTERNAL_HAL_DRIVERS)
if(IREE_HAL_DRIVER_HIP)
add_subdirectory(iree_pjrt/rocm)
endif()
if(IREE_HAL_DRIVER_VULKAN)
Expand Down