Skip to content

Commit

Permalink
Update active_rotated_filter_cuda_kernel.cuh
Browse files Browse the repository at this point in the history
  • Loading branch information
dflhw committed Jun 24, 2024
1 parent 8f23a0b commit d609aa8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ __global__ void active_rotated_filter_forward_cuda_kernel(
int j = (index / nEntry) % num_input_planes;
int i = index / nEntry / num_input_planes;
int k;
int flag = 1;
scalar_t val = *(weight_data + index);
for (k = 0; k < num_rotations; k++) {
int idx = (int)(*(indices_data + l * num_rotations + k)) - 1;
Expand Down

0 comments on commit d609aa8

Please sign in to comment.