Skip to content

[SYCL][E2E] minor test change to ease release #17325

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

Merged
merged 1 commit into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion sycl/test-e2e/KernelCompiler/kernel_compiler_sycl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ void test_build_and_run() {

// Compilation with props and devices
std::string log;
std::vector<std::string> flags{"-g", "-fno-fast-math"};
std::vector<std::string> flags{"-fno-fast-math"};
std::vector<sycl::device> devs = kbSrc.get_devices();
exe_kb kbExe2 = syclex::build(
kbSrc, devs,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ int test_build_and_run() {

// Compilation with props and devices
std::string log;
std::vector<std::string> flags{"-g", "-fno-fast-math",
std::vector<std::string> flags{"-fno-fast-math",
"-fsycl-instrument-device-code"};
std::vector<sycl::device> devs = kbSrc.get_devices();
exe_kb kbExe2 = syclex::build(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ int test_persistent_cache() {
// Different build_options means no cache hit.
// CHECK: [kernel_compiler Persistent Cache]: cache miss: [[KEY2:.*]]
// CHECK: [kernel_compiler Persistent Cache]: storing device code IR: {{.*}}/[[KEY2]]
std::vector<std::string> flags{"-g", "-fno-fast-math"};
std::vector<std::string> flags{"-O0", "-fno-fast-math"};
exe_kb kbExe1c =
syclex::build(kbSrc1, syclex::properties{syclex::build_options{flags}});

Expand Down
Loading