Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 0b6c213

Browse files
author
Pavel Samolysov
committed
[SYCL] Fix compilation error in vector-convolution-demo.cpp
1 parent 816ae07 commit 0b6c213

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SYCL/SpecConstants/2020/vector-convolution-demo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ void do_conv(buffer<float, 2> in, buffer<float, 2> out, CP coeff_provider) {
8282
cgh.set_specialization_constant<coeff_id>(get_coefficients());
8383
cgh.set_specialization_constant<coeff_struct_id>(get_coefficient_struct());
8484
cgh.set_specialization_constant<coeff_struct_aligned_id>(
85-
get_coefficient_aligned_struct());
85+
get_coefficient_struct_aligned());
8686
cgh.parallel_for<KernelName>(
8787
in.get_range(), [=](item<2> item_id, kernel_handler h) {
8888
auto coeff = coeff_provider(h);

0 commit comments

Comments
 (0)