Skip to content

Commit

Permalink
Remove extension in dilation
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-y committed Oct 7, 2024
1 parent 068e1c3 commit 8d2b626
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ static std::shared_ptr<dnnl::deconvolution_forward::primitive_desc> get_deconvol
int64_t insert_count = static_cast<int64_t>(output_md.get_dims().size()) - 2 - stride.size();
if (insert_count > 0) {
stride.insert(stride.end(), insert_count, 1);
dilation.insert(dilation.end(), insert_count, 0);
pad_l.insert(pad_l.end(), insert_count, 0);
pad_r.insert(pad_r.end(), insert_count, 0);
}
Expand Down

0 comments on commit 8d2b626

Please sign in to comment.