Skip to content

Commit 96ea8dc

Browse files
[SYCL] Remove HIP Nvidia tests/CI support (#16611)
As noted in #14432 the configuration isn't supported/tested anymore and there were some PRs removing related `XFAIL`s (#16287, #16307, and possibly others). This PR goes a step further and removes all the support for that configuration in our LIT tests.
1 parent 48297df commit 96ea8dc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+53
-82
lines changed

sycl-jit/test/internalization/promote-private-non-unit-hip.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; REQUIRES: hip_amd
1+
; REQUIRES: hip
22
; RUN: opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext \
33
; RUN: -passes=sycl-internalization -S %s | FileCheck %s
44

sycl-jit/test/kernel-fusion/check-failed-remapping-amdgpu.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; REQUIRES: hip_amd
1+
; REQUIRES: hip
22
; RUN: opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext \
33
; RUN: -passes=sycl-kernel-fusion -S %s | FileCheck %s
44

sycl-jit/test/kernel-fusion/check-remapping-amdgpu.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; REQUIRES: hip_amd
1+
; REQUIRES: hip
22
; RUN: opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext \
33
; RUN: -passes=sycl-kernel-fusion -S %s | FileCheck %s
44

sycl-jit/test/kernel-fusion/check-remapping-interproc-amdgpu.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; REQUIRES: hip_amd
1+
; REQUIRES: hip
22
; RUN: opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext \
33
; RUN: -passes=sycl-kernel-fusion -S %s | FileCheck %s
44

sycl-jit/test/lit.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
if "NVPTX" in config.llvm_targets_to_build:
2828
config.available_features.add("cuda")
2929
if "AMDGPU" in config.llvm_targets_to_build:
30-
config.available_features.add("hip_amd")
30+
config.available_features.add("hip")

sycl-jit/test/materializer/basic.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
; RUN: %if hip_amd %{ opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext\
1+
; RUN: %if hip %{ opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext\
22
; RUN: --mtriple amdgcn-amd-amdhsa -passes=sycl-spec-const-materializer -S %s |\
33
; RUN: FileCheck --check-prefix=CHECK-MATERIALIZER %s %}
44

55
; RUN: %if cuda %{ opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext\
66
; RUN: --mtriple nvptx64-nvidia-cuda -passes=sycl-spec-const-materializer -S %s |\
77
; RUN: FileCheck --check-prefix=CHECK-MATERIALIZER %s %}
88

9-
; RUN: %if hip_amd %{ opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext\
9+
; RUN: %if hip %{ opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext\
1010
; RUN: --mtriple amdgcn-amd-amdhsa -passes=sycl-spec-const-materializer,early-cse,adce -S %s |\
1111
; RUN: FileCheck --check-prefix=CHECK-MATERIALIZER-CSE %s %}
1212

sycl-jit/test/materializer/multi_type.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
; RUN: %if hip_amd %{ opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext\
1+
; RUN: %if hip %{ opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext\
22
; RUN: --mtriple amdgcn-amd-amdhsa -passes=sycl-spec-const-materializer -S %s |\
33
; RUN: FileCheck --check-prefix=CHECK-MATERIALIZER %s %}
44

55
; RUN: %if cuda %{ opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext\
66
; RUN: --mtriple nvptx64-nvidia-cuda -passes=sycl-spec-const-materializer -S %s |\
77
; RUN: FileCheck --check-prefix=CHECK-MATERIALIZER %s %}
88

9-
; RUN: %if hip_amd %{ opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext\
9+
; RUN: %if hip %{ opt -load-pass-plugin %shlibdir/SYCLKernelJIT%shlibext\
1010
; RUN: --mtriple amdgcn-amd-amdhsa -passes=sycl-spec-const-materializer,early-cse -S %s |\
1111
; RUN: FileCheck --check-prefix=CHECK-MATERIALIZER-CSE %s %}
1212

sycl/test-e2e/Adapters/enqueue-arg-order-buffer.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// UNSUPPORTED: hip_nvidia
21
// RUN: %{build} -Wno-error=deprecated-declarations -o %t.out
32
// RUN: env SYCL_UR_TRACE=2 %{run} %t.out | FileCheck %s
43

sycl/test-e2e/AtomicRef/assignment_atomic64_generic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// RUN: %{build} -fsycl-device-code-split=per_kernel -o %t.out
33
// RUN: %{run} %t.out
44

5-
// UNSUPPORTED: hip_amd
5+
// UNSUPPORTED: hip
66
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15791
77

88
#include "assignment.h"

sycl/test-e2e/AtomicRef/exchange.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
33

4-
// UNSUPPORTED: hip_amd
4+
// UNSUPPORTED: hip
55
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15791
66

77
#include "exchange.h"

0 commit comments

Comments
 (0)