Skip to content

Commit 8723efe

Browse files
committed
Fix E2E failures
1 parent dc92d56 commit 8723efe

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

sycl/test-e2e/FreeFunctionKernels/template_specialization.cpp

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -93,18 +93,6 @@ void F<float>(int X) {
9393
volatile float Y = static_cast<float>(X);
9494
}
9595

96-
template <typename... Args>
97-
SYCL_EXT_ONEAPI_FUNCTION_PROPERTY(
98-
(ext::oneapi::experimental::single_task_kernel))
99-
void variadic_templated(Args... args) {}
100-
101-
template <>
102-
SYCL_EXT_ONEAPI_FUNCTION_PROPERTY(
103-
(ext::oneapi::experimental::single_task_kernel))
104-
void variadic_templated<double>(double b) {
105-
b = 20.0f;
106-
}
107-
10896
template <auto *Func, typename T> void test_func() {
10997
queue Q;
11098
kernel_bundle bundle =
@@ -173,7 +161,6 @@ int main() {
173161
test_func_custom_type<A::B::C::TestClass>();
174162
test_func<F<float>, float>();
175163
test_func<F<uint32_t>, uint32_t>();
176-
test_func<variadic_templated<double>, double>();
177164
test_func<sum1<3, float>, float>();
178165
test_accessor();
179166
test_shared();

0 commit comments

Comments
 (0)