We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8999db commit 624875fCopy full SHA for 624875f
src/gpu/generic/sycl/ref_convolution.cpp
@@ -136,7 +136,7 @@ status_t ref_convolution_bwd_data_t::init(impl::engine_t *engine) {
136
}
137
138
status_t ref_convolution_bwd_data_t::execute(const exec_ctx_t &ctx) const {
139
- if (memory_desc_wrapper(pd()->dst_md()).size() == 0) return status::success;
+ if (memory_desc_wrapper(pd()->diff_src_md()).size() == 0) return status::success;
140
141
parallel_for(ctx, kernel_, [&](::sycl::handler &cgh) {
142
convolution_kernel_bwd_data_t convolution_kernel(pd()->conf_, cgh, ctx);
0 commit comments