Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

[SYCL] Add test for relaxed fp64 aspect requirements #1668

Open
wants to merge 4 commits into
base: intel
Choose a base branch
from
Open
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/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;
}