Skip to content

Commit

Permalink
Fix typo in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
raugarcr committed Jul 16, 2024
1 parent fa99e51 commit 5aba133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/descriptors/descriptor_convT2D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ void ConvolDescriptorT2D::build(Tensor *A) {
in,iz,ir,ic);
cudnnCreateFilterDescriptor(&wDesc);
//CONVT we need to swap input channels with output so all other swappings (forward and backward functions) matches
cudnnSetFilter4dDescriptor(wDesc, data_type, tensor_format, kz, nz, kr, kc);
cudnnSetFilter4dDescriptor(wDesc, data_type, tensor_format, kz, nk, kr, kc);

cudnnCreateTensorDescriptor(&yDesc);
cudnnSetTensor4dDescriptor(yDesc, tensor_format, data_type, in, z,r,c);
Expand Down

0 comments on commit 5aba133

Please sign in to comment.