We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28569aa commit 01e13bcCopy full SHA for 01e13bc
sycl/test-e2e/FreeFunctionKernels/template_specialization.cpp
@@ -173,7 +173,10 @@ int main() {
173
test_func_custom_type<A::B::C::TestClass>();
174
test_func<F<float>, float>();
175
test_func<F<uint32_t>, uint32_t>();
176
- test_func<variadic_templated<double>, double>();
+ // Variadic template functions do not work with free function kernels. See
177
+ // CMPLRLLVM-69528.
178
+ // TODO: Uncomment the following line once the tracker is resolved.
179
+ // test_func<variadic_templated<double>, double>();
180
test_func<sum1<3, float>, float>();
181
test_accessor();
182
test_shared();
0 commit comments