Skip to content

Commit

Permalink
[SYCL][E2E] Don't use fp64 aspect in the test that doesn't need it (#…
Browse files Browse the repository at this point in the history
…13290)

Test is failing on devices without fp64 aspect.
Test doesn't actually need to use double type.
  • Loading branch information
againull committed Apr 5, 2024
1 parent d86a500 commit 4af7a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sycl/test-e2e/Regression/nop_event_profiling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ int main() {
sycl::nd_range<3>(sycl::range<3>(1, 1, 16) * sycl::range<3>(1, 1, 16),
sycl::range<3>(1, 1, 16)),
[=](sycl::nd_item<3> item_ct1) {
double d = 123;
int d = 123;
for (int i = 0; i < 10000; i++) {
d = d * i;
}
Expand Down

0 comments on commit 4af7a98

Please sign in to comment.