diff --git a/example/19_binary_elementwise/elementwise_add_1d.cpp b/example/19_binary_elementwise/elementwise_add_1d.cpp index c9d0f77724..ea65ad7bb9 100644 --- a/example/19_binary_elementwise/elementwise_add_1d.cpp +++ b/example/19_binary_elementwise/elementwise_add_1d.cpp @@ -32,8 +32,7 @@ template + typename Functor> void host_elementwise1D( HostTensorC& C, const HostTensorA& A, const HostTensorB& B, int M, Functor functor) { @@ -108,8 +107,7 @@ int main() Tensor, Tensor, EltwiseComputeDataType, - Add, - 0>(host_c_m, a_m, b_m, M, Add{}); + Add>(host_c_m, a_m, b_m, M, Add{}); pass &= ck::utils::check_err( c_m.mData, host_c_m.mData, "Error: Incorrect results d1", 1e-3, 1e-3);