Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions buildbot/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,7 @@ def do_configure(args, passthrough_args):
# libclc passes `--nvvm-reflect-enable=false`, build NVPTX to enable it
if "NVPTX" not in llvm_targets_to_build:
llvm_targets_to_build += ";NVPTX"
# since we are building AMD libclc target we must have AMDGPU target
if "AMDGPU" not in llvm_targets_to_build:
llvm_targets_to_build += ";AMDGPU"
# Add both NVIDIA and AMD libclc targets
if libclc_amd_target_names not in libclc_targets_to_build:
libclc_targets_to_build += libclc_amd_target_names
# Add NVIDIA libclc targets
if libclc_nvidia_target_names not in libclc_targets_to_build:
libclc_targets_to_build += libclc_nvidia_target_names
libclc_gen_remangled_variants = "ON"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// REQUIRES: hip_dev_kit
// REQUIRES: target-amd && hip_dev_kit

// XFAIL: new-offload-model && windows
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/20797
Expand Down
Loading