Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrist1 committed Aug 27, 2023
1 parent 7f2d823 commit cf0109a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tensor_ops/conv1d/cuda_kernel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ where
// RHS (B, G, C/G*K, OL)
// OUT (B, G, O/G, OL)
let m = op.chan_out / op.groups;
let k = (op.chan_in / op.groups) * op.kernel;
let k = op.chan_in * op.kernel;
let n = op.l_out;
if op.groups == 1 {
// optimizing here for common case
Expand Down

0 comments on commit cf0109a

Please sign in to comment.