Skip to content

Commit

Permalink
Remove some unused variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentMazare committed Feb 12, 2024
1 parent 8882774 commit b64d397
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions candle-kernels/src/conv.cu
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ __device__ void im2col1d(
}
const size_t *src_dims = info;
const size_t *src_s = info + 3;
const size_t b_in = src_dims[0];
const size_t c_in = src_dims[1];
const size_t l_in = src_dims[2];

Expand Down Expand Up @@ -120,7 +119,6 @@ __device__ void im2col(
}
const size_t *src_dims = info;
const size_t *src_s = info + 4;
const size_t b_in = src_dims[0];
const size_t c_in = src_dims[1];
const size_t h_in = src_dims[2];
const size_t w_in = src_dims[3];
Expand Down

0 comments on commit b64d397

Please sign in to comment.