Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SYCL] Move fp64_relaxed E2E test #8829

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions sycl/test-e2e/OptionalKernelFeatures/fp64_relaxed.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -DOPTIMIZATIONS_DISABLED=0 %s -o %t_opt.out
// RUN: %CPU_RUN_PLACEHOLDER %t_opt.out
// RUN: %GPU_RUN_PLACEHOLDER %t_opt.out
// RUN: %ACC_RUN_PLACEHOLDER %t_opt.out
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -fno-sycl-early-optimizations -DOPTIMIZATIONS_DISABLED=1 %s -o %t_noopt.out
// RUN: %CPU_RUN_PLACEHOLDER %t_noopt.out
// RUN: %GPU_RUN_PLACEHOLDER %t_noopt.out
// RUN: %ACC_RUN_PLACEHOLDER %t_noopt.out

// Tests that aspect::fp64 requirements are affected by optimizations.

#include <sycl/sycl.hpp>

int main() {
sycl::queue Q;
try {
Q.single_task([=]() {
// Double will be optimized out as LoweredFloat can be set directly to a
// lowered value.
double Double = 3.14;
volatile float LoweredFloat = Double;
});
#if (OPTIMIZATIONS_DISABLED == 1)
assert(Q.get_device().has(sycl::aspect::fp64) &&
"Exception should have been thrown.");
#endif // OPTIMIZATIONS_DISABLED
} catch (sycl::exception &E) {
std::cout << "Caught exception: " << E.what() << std::endl;
assert(OPTIMIZATIONS_DISABLED &&
"Optimizations should have removed the fp64 requirement.");
assert(!Q.get_device().has(sycl::aspect::fp64) &&
"Exception thrown despite fp64 support.");
assert(E.code() == sycl::errc::kernel_not_supported &&
"Exception did not have the expected error code.");
} catch (...) {
std::cout << "Unexpected exception thrown!" << std::endl;
throw;
}

return 0;
}