We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7131c1b commit 866312eCopy full SHA for 866312e
src/gpu/generic/sycl/ref_matmul.cpp
@@ -118,7 +118,7 @@ status_t ref_matmul_t::pd_t::init_conf() {
118
119
conf_.use_dropout = !attr()->dropout_.has_default_values();
120
121
- conf_.post_ops = sycl_post_ops_t(attr());
+ conf_.post_ops = sycl_post_ops_t(attr(), dst_md()->data_type);
122
123
for (auto i = 0; i < conf_.post_ops.get_post_op(); ++i) {
124
const auto &e = attr()->post_ops_.entry_[i];
src/gpu/generic/sycl/ref_resampling.cpp
@@ -50,7 +50,7 @@ status_t ref_resampling_fwd_t::pd_t::init_conf() {
50
}
51
conf_.po_len = attr_po.len();
52
53
54
return status::success;
55
56
0 commit comments