Skip to content

[SYCL][ESIMD][E2E] Revert "Fix scale tests on hardware that doesn't support fp64 (#9552)" #9826

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
Jun 13, 2023
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

This file was deleted.

4 changes: 1 addition & 3 deletions sycl/test-e2e/InvokeSimd/Feature/scale.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ int main(void) {
const bool SupportsDouble = dev.has(aspect::fp64);

bool passed = true;
#ifndef TEST_DOUBLE_TYPE
passed &= test<unsigned char>(q);
passed &= test<char>(q);
passed &= test<unsigned short>(q);
Expand All @@ -158,10 +157,9 @@ int main(void) {
passed &= test<long>(q);

passed &= test<float>(q);
#else
if (SupportsDouble)
passed &= test<double>(q);
#endif

std::cout << (passed ? "Passed\n" : "FAILED\n");
return passed ? 0 : 1;
}
27 changes: 0 additions & 27 deletions sycl/test-e2e/InvokeSimd/Feature/scale_double.cpp

This file was deleted.