We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f7bc6 commit 9718192Copy full SHA for 9718192
sycl/test-e2e/Regression/commandlist/Inputs/FindPrimesSYCL.cpp
@@ -51,7 +51,7 @@ float find_prime_s(work *w) {
51
if (number < N) {
52
for (size_t i = 0; i < niter; ++i) {
53
bool is_prime = !(number % 2 == 0);
54
- const int upper_bound = sycl::sqrt(1.0 * number) + 1;
+ const int upper_bound = sycl::sqrt(1.0f * number) + 1;
55
int k = 3;
56
while (k < upper_bound && is_prime) {
57
is_prime = !(number % k == 0);
sycl/test-e2e/Regression/commandlist/gpu.cpp
@@ -1,6 +1,3 @@
1
-// https://github.com/intel/llvm/issues/10369
2
-// UNSUPPORTED: gpu
3
-//
4
// REQUIRES: gpu, linux
5
6
// UNSUPPORTED: ze_debug
0 commit comments