Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit fd346f0

Browse files
committed
Enable tests for generic atomics
1 parent 613ede6 commit fd346f0

32 files changed

+64
-64
lines changed

SYCL/AtomicRef/add_generic.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
66

7-
// CUDA and HIP backends have had no support for the generic address space yet
8-
// XFAIL: cuda || hip
7+
// HIP backend has no support for the generic address space yet
8+
// XFAIL: hip
99

1010
#include "add.h"
1111

SYCL/AtomicRef/add_generic_local.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
66

7-
// CUDA and HIP backends have had no support for the generic address space yet.
7+
// HIP backend has no support for the generic address space yet.
88
// Host does not support barrier.
9-
// XFAIL: cuda || hip || host
9+
// XFAIL: hip || host
1010

1111
#define TEST_GENERIC_IN_LOCAL 1
1212

SYCL/AtomicRef/add_generic_local_native_fp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
66

7-
// CUDA and HIP backends have had no support for the generic address space yet.
7+
// HIP backend has no support for the generic address space yet.
88
// Host does not support barrier. HIP does not support native floating point
99
// atomics
10-
// XFAIL: cuda, hip, host
10+
// XFAIL: hip, host
1111

1212
#define SYCL_USE_NATIVE_FP_ATOMICS
1313
#define FP_TESTS_ONLY

SYCL/AtomicRef/add_generic_native_fp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
66

7-
// CUDA and HIP backends have had no support for the generic address space yet.
7+
// HIP backend has had no support for the generic address space yet.
88
// HIP does not support native floating point atomics
9-
// XFAIL: cuda, hip
9+
// XFAIL: hip
1010

1111
#define SYCL_USE_NATIVE_FP_ATOMICS
1212
#define FP_TESTS_ONLY

SYCL/AtomicRef/and_generic.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
66

7-
// CUDA and HIP backends have had no support for the generic address space yet
8-
// XFAIL: cuda || hip
7+
// HIP backend has had no support for the generic address space yet
8+
// XFAIL: hip
99

1010
#include "and.h"
1111

SYCL/AtomicRef/and_generic_local.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
66

7-
// CUDA and HIP backends have had no support for the generic address space yet.
7+
// HIP backend has no support for the generic address space yet.
88
// Host does not support barrier.
9-
// XFAIL: cuda || hip || host
9+
// XFAIL: hip || host
1010

1111
#define TEST_GENERIC_IN_LOCAL 1
1212

SYCL/AtomicRef/assignment_atomic64_generic.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// RUN: %GPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
66

7-
// CUDA backend has had no support for the generic address space yet
8-
// XFAIL: cuda || hip
7+
// HIP backend has no support for the generic address space yet
8+
// XFAIL: hip
99

1010
#include "assignment.h"
1111
#include <iostream>

SYCL/AtomicRef/assignment_generic.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// RUN: %GPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
66

7-
// CUDA backend has had no support for the generic address space yet
8-
// XFAIL: cuda || hip
7+
// HIP backend has no support for the generic address space yet
8+
// XFAIL: hip
99

1010
#include "assignment.h"
1111
#include <iostream>

SYCL/AtomicRef/compare_exchange_generic.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
66

7-
// CUDA and HIP backends have had no support for the generic address space yet
8-
// XFAIL: cuda || hip
7+
// HIP backend has no support for the generic address space yet
8+
// XFAIL: hip
99

1010
#include "compare_exchange.h"
1111

SYCL/AtomicRef/compare_exchange_generic_local.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
66

7-
// CUDA and HIP backends have had no support for the generic address space yet.
7+
// HIP backend has no support for the generic address space yet.
88
// Host does not support barrier.
9-
// XFAIL: cuda || hip || host
9+
// XFAIL: hip || host
1010

1111
#define TEST_GENERIC_IN_LOCAL 1
1212

0 commit comments

Comments
 (0)