Skip to content

Commit 142d9f5

Browse files
[SYCL] Remove experimental from bfloat16 in Windows test (#7569)
bfloat16 was recently moved out of the experimental namespace but windows_build_test.cpp did not reflect this. This commit removes the use of the experimental namespace. Signed-off-by: Larsen, Steffen <steffen.larsen@intel.com>
1 parent 483984a commit 142d9f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/test/esimd/regression/windows_build_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ int main() {
3131
using namespace sycl::ext::intel::experimental::esimd;
3232

3333
simd<int, 32> blk;
34-
simd<sycl::ext::oneapi::experimental::bfloat16, 16> A;
35-
simd<sycl::ext::oneapi::experimental::bfloat16, 256> B;
34+
simd<sycl::ext::oneapi::bfloat16, 16> A;
35+
simd<sycl::ext::oneapi::bfloat16, 256> B;
3636
simd<float, 16> C;
3737
lzd<uint>(blk);
3838
lzd<uint>(35);

0 commit comments

Comments
 (0)