Skip to content

Commit

Permalink
fixed incorrect number of params
Browse files Browse the repository at this point in the history
  • Loading branch information
LostRuins committed Dec 13, 2024
1 parent 8f1ee54 commit 5138872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml/src/ggml-cuda/concat.cu
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static __global__ void __launch_bounds__(CUDA_CONCAT_BLOCK_SIZE)
uint64_t nb1,
uint64_t nb2,
uint64_t nb3){
static_assert(dim >= 0 && dim <= 3);
static_assert(dim >= 0 && dim <= 3, "dim must be between 0 and 3 inclusive");

const int64_t i3 = blockIdx.z;
const int64_t i2 = blockIdx.y;
Expand Down

0 comments on commit 5138872

Please sign in to comment.