Skip to content

Commit 7bd5922

Browse files
committed
Remove XFAILs for hip nvidia plaform
1 parent 0f2daf2 commit 7bd5922

25 files changed

+1
-88
lines changed

sycl/test-e2e/Basic/queue/queue.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
3-
//
4-
// XFAIL: hip_nvidia
5-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16197
63

74
//==--------------- queue.cpp - SYCL queue test ----------------------------==//
85
//

sycl/test-e2e/Basic/span.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
33
//
4-
// Fails to release USM pointer on HIP for NVIDIA
5-
// XFAIL: hip_nvidia
6-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/14432
74
// REQUIRES: aspect-usm_shared_allocations
85
#include <numeric>
96

sycl/test-e2e/Basic/stream/auto_flush.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out %if !gpu || linux %{ | FileCheck %s %}
3-
//
4-
// XFAIL: hip_nvidia
5-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16198
63

74
//==-------------- copy.cpp - SYCL stream obect auto flushing test ---------==//
85
//

sycl/test-e2e/DeprecatedFeatures/queue_old_interop.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
// RUN: %{build} -D__SYCL_INTERNAL_API -o %t.out
22
// RUN: %{run-unfiltered-devices} %t.out
3-
//
4-
// hip_nvidia has problems constructing queues due to `No device of requested
5-
// type available`.
6-
// XFAIL: hip_nvidia
7-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16199
83

94
//==-------- queue_old_interop.cpp - SYCL queue OpenCL interop test --------==//
105
//

sycl/test-e2e/DeviceCodeSplit/split-per-kernel.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// RUN: %{build} -Wno-error=unused-command-line-argument -fsycl-device-code-split=per_kernel -o %t.out \
22
// RUN: -fsycl-dead-args-optimization
33
// RUN: %{run} %t.out
4-
//
5-
// XFAIL: hip_nvidia
6-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16201
74

85
#include <sycl/detail/core.hpp>
96
#include <sycl/kernel_bundle.hpp>

sycl/test-e2e/DeviceCodeSplit/split-per-source-main.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// RUN: %{build} -Wno-error=unused-command-line-argument -fsycl-device-code-split=per_source -I %S/Inputs -o %t.out %S/Inputs/split-per-source-second-file.cpp \
22
// RUN: -fsycl-dead-args-optimization
33
// RUN: %{run} %t.out
4-
//
5-
// XFAIL: hip_nvidia
6-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16201
74

85
#include "Inputs/split-per-source.h"
96

sycl/test-e2e/GroupLocalMemory/group_local_memory.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
// RUN: %{build} -Wno-error=deprecated-declarations -o %t.out
22
// RUN: %{run} %t.out
3-
//
4-
// XFAIL: hip_nvidia
5-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16204
63

74
#include <sycl/detail/core.hpp>
85

sycl/test-e2e/GroupLocalMemory/no_early_opt.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
// RUN: %{build} -Wno-error=deprecated-declarations -fno-sycl-early-optimizations -o %t.out
22
// RUN: %{run} %t.out
3-
//
4-
// XFAIL: hip_nvidia
5-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16204
63

74
// The test checks that multiple calls to the same template instantiation of a
85
// group local memory function result in separate allocations, even with device

sycl/test-e2e/Reduction/reduction_nd_N_queue_shortcut.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
33

4-
// Group algorithms are not supported on NVidia.
5-
// XFAIL: hip_nvidia
6-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/14973
74

85
// This test only checks that the method queue::parallel_for() accepting
96
// reduction, can be properly translated into queue::submit + parallel_for().

sycl/test-e2e/Reduction/reduction_nd_conditional.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
33
//
4-
// Error message `The implementation handling
5-
// parallel_for with reduction requires work group size not bigger than 1` on
6-
// Nvidia.
7-
// XFAIL: hip_nvidia
8-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/14973
94
// Windows doesn't yet have full shutdown().
105
// UNSUPPORTED: ze_debug && windows
116

0 commit comments

Comments
 (0)