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"

sycl/test-e2e/Basic/built-ins.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// RUN: %{run} %t_var.out | FileCheck %s
66

77
// Hits an assertion and kernel page fault with AMD:
8-
// UNSUPPORTED: hip_amd
8+
// UNSUPPORTED: hip
99
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/14404
1010

1111
#include <sycl/detail/core.hpp>

sycl/test-e2e/Basic/host-task-dependency.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
// RUN: env SYCL_UR_TRACE=2 %{run} %t.out 2>&1 | FileCheck %s
33
//
44
// TODO: Behaviour is unstable for level zero on Windows. Enable when fixed.
5-
// TODO: The test is sporadically fails on CUDA. Enable when fixed.
6-
// UNSUPPORTED: (windows && level_zero) || hip_nvidia
5+
// UNSUPPORTED: (windows && level_zero)
76

87
#define SYCL2020_DISABLE_DEPRECATION_WARNINGS
98

sycl/test-e2e/DeviceGlobal/device_global_static.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// UNSUPPORTED: opencl && gpu
55
// UNSUPPORTED-TRACKER: GSD-4287
66
//
7-
// UNSUPPORTED: hip_amd
7+
// UNSUPPORTED: hip
88
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15329
99
//
1010
// Tests static device_global access through device kernels.

sycl/test-e2e/DeviceImageDependencies/NewOffloadDriver/free_function_kernels.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// UNSUPPORTED: cuda
99
// UNSUPPORTED-INTENDED: Not implemented yet for Nvidia/AMD backends.
1010

11-
// XFAIL: hip_amd
11+
// XFAIL: hip
1212
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/15742
1313

1414
#include <iostream>

sycl/test-e2e/DeviceImageDependencies/free_function_kernels.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// The name mangling for free function kernels currently does not work with PTX.
88
// UNSUPPORTED: cuda
99

10-
// XFAIL: hip_amd
10+
// XFAIL: hip
1111
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/15742
1212

1313
#include <iostream>

sycl/test-e2e/HierPar/hier_par_wgscope.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RUN: %{run} %t.out
44
//
55
// Test hangs on AMD
6-
// UNSUPPORTED: hip_amd
6+
// UNSUPPORTED: hip
77

88
//==- hier_par_wgscope.cpp --- hierarchical parallelism test for WG scope---==//
99
//

sycl/test-e2e/InlineAsm/asm_16_empty.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: cuda || hip_nvidia
1+
// UNSUPPORTED: cuda
22
// REQUIRES: gpu,linux,sg-16
33
// RUN: %{build} -o %t.out
44
// RUN: %{run} %t.out

sycl/test-e2e/InlineAsm/asm_8_empty.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: cuda || hip_nvidia
1+
// UNSUPPORTED: cuda
22
// REQUIRES: gpu,linux,sg-8
33
// RUN: %{build} -o %t.out
44
// RUN: %{run} %t.out

sycl/test-e2e/OptionalKernelFeatures/is_compatible/is_compatible_amdgcn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// REQUIRES: hip_amd, opencl, gpu, cpu
1+
// REQUIRES: hip, opencl, gpu, cpu
22
// REQUIRES: build-and-run-mode
33

44
// RUN: %clangxx -fsycl -Xsycl-target-backend=amdgcn-amd-amdhsa --offload-arch=gfx906 -fsycl-targets=amdgcn-amd-amdhsa %S/Inputs/is_compatible_with_env.cpp -o %t.out

sycl/test-e2e/Printf/char.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// The test is written using conversion specifiers table from cppreference [1]
55
// [1]: https://en.cppreference.com/w/cpp/io/c/fprintf
66
//
7-
// UNSUPPORTED: hip_amd
7+
// UNSUPPORTED: hip
88
//
99
// RUN: %{build} -o %t.out
1010
// RUN: %{run} %t.out | FileCheck %s

sycl/test-e2e/Printf/double.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// [1]: https://en.cppreference.com/w/cpp/io/c/fprintf
66
//
77
// REQUIRES: aspect-fp64
8-
// UNSUPPORTED: hip_amd
8+
// UNSUPPORTED: hip
99
//
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out | FileCheck %s

sycl/test-e2e/Printf/float.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// The test is written using conversion specifiers table from cppreference [1]
55
// [1]: https://en.cppreference.com/w/cpp/io/c/fprintf
66
//
7-
// UNSUPPORTED: hip_amd
7+
// UNSUPPORTED: hip
88
//
99
// RUN: %{build} -o %t.out
1010
// RUN: %{run} %t.out | FileCheck %s

sycl/test-e2e/Printf/int.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// The test is written using conversion specifiers table from cppreference [1]
55
// [1]: https://en.cppreference.com/w/cpp/io/c/fprintf
66
//
7-
// UNSUPPORTED: hip_amd
7+
// UNSUPPORTED: hip
88
// FIXME: The 'short' type gets overflown with sporadic values on CUDA.
99
// XFAIL: cuda
1010
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/14734

sycl/test-e2e/Printf/mixed-address-space.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This test is written with an aim to check that experimental::printf versions
22
// for constant and generic address space can be used in the same module.
33
//
4-
// UNSUPPORTED: hip_amd
4+
// UNSUPPORTED: hip
55
// XFAIL: cuda && windows
66
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/14733
77
// FIXME: Drop the test once generic AS support is considered stable and the

sycl/test-e2e/Printf/percent-symbol.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// The test is written using conversion specifiers table from cppreference [1]
55
// [1]: https://en.cppreference.com/w/cpp/io/c/fprintf
66
//
7-
// UNSUPPORTED: hip_amd
7+
// UNSUPPORTED: hip
88
// XFAIL: cuda && windows
99
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/14733
1010
// RUN: %{build} -o %t.out

sycl/test-e2e/README.md

Lines changed: 0 additions & 6 deletions

sycl/test-e2e/Regression/DAE-separate-compile.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
// RUN: %{run} %t.out
1010

1111
// Failing on HIP AMD, enable after fixed
12-
// UNSUPPORTED: hip_amd
13-
12+
// UNSUPPORTED: hip
1413

1514
#include <iostream>
1615
#include <sycl/detail/core.hpp>

sycl/test-e2e/Regression/static-buffer-dtor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// RUN: %{run} %t.out
1414

1515
// Failing on HIP AMD
16-
// UNSUPPORTED: hip_amd
16+
// UNSUPPORTED: hip
1717

1818
// Windows doesn't yet have full shutdown().
1919
// UNSUPPORTED: ze_debug && windows

sycl/test-e2e/Sampler/normalized-clampedge-nearest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Missing __spirv_ImageWrite, __spirv_SampledImage,
66
// __spirv_ImageSampleExplicitLod on AMD
7-
// XFAIL: hip_amd
7+
// XFAIL: hip
88
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/14732
99

1010
/*

sycl/test-e2e/Tracing/usm/queue_copy_released_pointer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: windows || hip_amd
1+
// UNSUPPORTED: windows || hip
22
// RUN: %{build} -o %t.out
33
// RUN: not --crash env SYCL_TRACE_TERMINATE_ON_WARNING=1 %{run} sycl-trace --verify %t.out | FileCheck %s
44

sycl/test-e2e/Tracing/usm/queue_single_task_nullptr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: windows || hip_amd
1+
// UNSUPPORTED: windows || hip
22
// RUN: %{build} -o %t.out
33
// RUN: not --crash env SYCL_TRACE_TERMINATE_ON_WARNING=1 %{run} sycl-trace --verify %t.out | FileCheck %s
44

sycl/test-e2e/Tracing/usm/queue_single_task_released_pointer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: windows || hip_amd
1+
// UNSUPPORTED: windows || hip
22
// RUN: %{build} -o %t.out
33
// RUN: not --crash env SYCL_TRACE_TERMINATE_ON_WARNING=1 %{run} sycl-trace --verify %t.out | FileCheck %s
44

sycl/test-e2e/USM/memadvise_flags.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %{build} -o %t1.out
2-
// REQUIRES: cuda || hip_amd
2+
// REQUIRES: cuda || hip
33
// RUN: %{run} %t1.out
44

55
//==---------------- memadvise_flags.cpp -----------------------------------==//

sycl/test-e2e/USM/memops2d/copy2d_dhost_to_shared.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16-
// UNSUPPORTED: (gpu-intel-dg2 || hip_amd) && linux
16+
// UNSUPPORTED: (gpu-intel-dg2 || hip) && linux
1717
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1818

1919
#include "copy2d_common.hpp"

sycl/test-e2e/USM/memops2d/copy2d_host_to_shared.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16-
// UNSUPPORTED: (gpu-intel-dg2 || hip_amd) && linux
16+
// UNSUPPORTED: (gpu-intel-dg2 || hip) && linux
1717
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1818

1919
#include "copy2d_common.hpp"

sycl/test-e2e/USM/memops2d/copy2d_shared_to_dhost.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16-
// UNSUPPORTED: (gpu-intel-dg2 || hip_amd) && linux
16+
// UNSUPPORTED: (gpu-intel-dg2 || hip) && linux
1717
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1818

1919
#include "copy2d_common.hpp"

sycl/test-e2e/USM/memops2d/copy2d_shared_to_host.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16-
// UNSUPPORTED: (gpu-intel-dg2 || hip_amd) && linux
16+
// UNSUPPORTED: (gpu-intel-dg2 || hip) && linux
1717
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1818

1919
#include "copy2d_common.hpp"

sycl/test-e2e/USM/memops2d/memcpy2d_dhost_to_shared.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16-
// UNSUPPORTED: (gpu-intel-dg2 || hip_amd) && linux
16+
// UNSUPPORTED: (gpu-intel-dg2 || hip) && linux
1717
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1818

1919
#include "memcpy2d_common.hpp"

sycl/test-e2e/USM/memops2d/memcpy2d_host_to_shared.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16-
// UNSUPPORTED: (gpu-intel-dg2 || hip_amd) && linux
16+
// UNSUPPORTED: (gpu-intel-dg2 || hip) && linux
1717
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1818

1919
#include "memcpy2d_common.hpp"

sycl/test-e2e/USM/memops2d/memcpy2d_shared_to_dhost.cpp

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

13-
// UNSUPPORTED: (gpu-intel-dg2 || hip_amd) && linux
13+
// UNSUPPORTED: (gpu-intel-dg2 || hip) && linux
1414
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1515

1616
// Temporarily disabled until the failure is addressed.

sycl/test-e2e/USM/memops2d/memcpy2d_shared_to_host.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16-
// UNSUPPORTED: (gpu-intel-dg2 || hip_amd) && linux
16+
// UNSUPPORTED: (gpu-intel-dg2 || hip) && linux
1717
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1818

1919
#include "memcpy2d_common.hpp"

sycl/test-e2e/USM/memory_coherency_hip.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %{build} -o %t1.out
2-
// REQUIRES: hip_amd
2+
// REQUIRES: hip
33
// RUN: %{run} %t1.out
44

55
//==---- memory_coherency_hip.cpp -----------------------------------------==//

sycl/test-e2e/format.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@ def get_triple(test, backend):
1717
if backend == "cuda":
1818
return "nvptx64-nvidia-cuda"
1919
if backend == "hip":
20-
if test.config.hip_platform == "NVIDIA":
21-
return "nvptx64-nvidia-cuda"
22-
else:
23-
return "amdgcn-amd-amdhsa"
20+
return "amdgcn-amd-amdhsa"
2421
if backend == "native_cpu":
2522
return "native_cpu"
2623
return "spir64"

0 commit comments

Comments
 (0)