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

Commit 032f4a1

Browse files
authored
[SYCL][CUDA] Revert experimental/builtins.hpp includes (#1076)
Reverts experimental/builtins.hpp includes added in #1072 and #1075. Requires: intel/llvm#6400
1 parent b67c7db commit 032f4a1

File tree

12 files changed

+0
-12
lines changed

12 files changed

+0
-12
lines changed

SYCL/BFloat16/bfloat16_builtins.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
//
77
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out -Xsycl-target-backend --cuda-gpu-arch=sm_80
88
// RUN: %t.out
9-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
109
#include <sycl/sycl.hpp>
1110

1211
#include <cmath>

SYCL/DeviceLib/built-ins/ext_native_math.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// test is compiled with the -fsycl-device-code-split flag
99

1010
#include <cassert>
11-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
1211
#include <sycl/sycl.hpp>
1312

1413
template <typename T> void assert_out_of_bound(T val, T lower, T upper) {

SYCL/DeviceLib/built-ins/printf.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// RUN: %GPU_RUN_PLACEHOLDER %t.out %GPU_CHECK_PLACEHOLDER
88
// RUN: %ACC_RUN_PLACEHOLDER %t.out %ACC_CHECK_PLACEHOLDER
99

10-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
1110
#include <sycl/sycl.hpp>
1211

1312
#include <cstdint>

SYCL/ESIMD/printf.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#include "esimd_test_utils.hpp"
2222

2323
#include <sycl/ext/intel/esimd.hpp>
24-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
2524
#include <sycl/sycl.hpp>
2625

2726
#include <cstdint>

SYCL/Matrix/element_wise_wi_marray.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -Xsycl-target-backend --cuda-gpu-arch=sm_80 -DSYCL_EXT_ONEAPI_MATRIX=3 %s -o %t.out
1111
// RUN: %t.out
1212

13-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
1413
#include <sycl/sycl.hpp>
1514

1615
using namespace sycl;

SYCL/Printf/char.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
// CHECK: literal strings: s=Hello World!
2626
// CHECK_DISABLED: non-literal strings: s=Hello, World! ls=
2727

28-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
2928
#include <sycl/sycl.hpp>
3029

3130
#include <cstring>

SYCL/Printf/double.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
#include <iostream>
3030

31-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
3231
#include <sycl/sycl.hpp>
3332

3433
#include "helper.hpp"

SYCL/Printf/float.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131

3232
#include <iostream>
3333

34-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
3534
#include <sycl/sycl.hpp>
3635

3736
#include "helper.hpp"

SYCL/Printf/int.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
// RUN: %GPU_RUN_PLACEHOLDER %t.constant.out %GPU_CHECK_PLACEHOLDER
2121
// RUN: %ACC_RUN_PLACEHOLDER %t.constant.out %ACC_CHECK_PLACEHOLDER
2222

23-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
2423
#include <sycl/sycl.hpp>
2524

2625
#include "helper.hpp"

SYCL/Printf/long.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
// RUN: %GPU_RUN_PLACEHOLDER %t.constant.out %GPU_CHECK_PLACEHOLDER
2121
// RUN: %ACC_RUN_PLACEHOLDER %t.constant.out %ACC_CHECK_PLACEHOLDER
2222

23-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
2423
#include <sycl/sycl.hpp>
2524

2625
#include "helper.hpp"

SYCL/Printf/mixed-address-space.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// CHECK: Constant addrspace literal
1313
// CHECK: Generic addrspace literal
1414

15-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
1615
#include <sycl/sycl.hpp>
1716

1817
#include "helper.hpp"

SYCL/Printf/percent-symbol.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
// CHECK: %c %s %d %i %o %x %X %u
2424
// CHECK-NEXT: %f %F %e %E %a %A %g %G %n %p
2525

26-
#include <sycl/ext/oneapi/experimental/builtins.hpp>
2726
#include <sycl/sycl.hpp>
2827

2928
#include <cstring>

0 commit comments

Comments
 (0)