10
10
#include < limits>
11
11
#include < utility>
12
12
13
- using namespace sycl ::INTEL::gpu ;
13
+ using namespace sycl ::ext::intel::experimental::esimd ;
14
14
using namespace cl ::sycl;
15
15
16
16
// --- Postive tests.
@@ -42,13 +42,13 @@ kernel3(accessor<int, 1, access::mode::read_write, access::target::local> &buf)
42
42
simd<int , 32 > v1 (0 , 1 );
43
43
simd<int , 32 > v0;
44
44
// expected-error@+3 {{no matching member function for call to 'copy_from'}}
45
- // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:514 {{}}
46
- // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:509 {{}}
45
+ // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:499 {{}}
46
+ // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:511 {{}}
47
47
v0.copy_from (buf, 0 );
48
48
v0 = v0 + v1;
49
49
// expected-error@+3 {{no matching member function for call to 'copy_to'}}
50
- // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:497 {{}}
51
- // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:525 {{}}
50
+ // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:516 {{}}
51
+ // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:527 {{}}
52
52
v0.copy_to (buf, 0 );
53
53
}
54
54
@@ -58,8 +58,8 @@ SYCL_EXTERNAL void kernel4(
58
58
SYCL_ESIMD_FUNCTION {
59
59
simd<int , 32 > v;
60
60
// expected-error@+3 {{no matching member function for call to 'copy_from'}}
61
- // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:514 {{}}
62
- // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:509 {{}}
61
+ // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:499 {{}}
62
+ // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:511 {{}}
63
63
v.copy_from (buf, 0 );
64
64
}
65
65
@@ -69,7 +69,7 @@ SYCL_EXTERNAL void kernel5(
69
69
SYCL_ESIMD_FUNCTION {
70
70
simd<int , 32 > v (0 , 1 );
71
71
// expected-error@+3 {{no matching member function for call to 'copy_to'}}
72
- // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:497 {{}}
73
- // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:525 {{}}
72
+ // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:516 {{}}
73
+ // expected-note@CL/sycl/INTEL/esimd/esimd.hpp:527 {{}}
74
74
v.copy_to (buf, 0 );
75
75
}
0 commit comments