Skip to content

Commit 4af7a98

Browse files
authored
[SYCL][E2E] Don't use fp64 aspect in the test that doesn't need it (#13290)
Test is failing on devices without fp64 aspect. Test doesn't actually need to use double type.
1 parent d86a500 commit 4af7a98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/test-e2e/Regression/nop_event_profiling.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ int main() {
2121
sycl::nd_range<3>(sycl::range<3>(1, 1, 16) * sycl::range<3>(1, 1, 16),
2222
sycl::range<3>(1, 1, 16)),
2323
[=](sycl::nd_item<3> item_ct1) {
24-
double d = 123;
24+
int d = 123;
2525
for (int i = 0; i < 10000; i++) {
2626
d = d * i;
2727
}

0 commit comments

Comments
 (0)