File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
sycl/test-e2e/FreeFunctionKernels Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff 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-
10896template <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 ();
You can’t perform that action at this time.
0 commit comments