Skip to content

Commit

Permalink
cuda : suppress compiler warning of unused variables (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
li-plus authored Sep 8, 2023
1 parent 3ae3a2b commit 968d132
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ggml-cuda.cu
Original file line number Diff line number Diff line change
Expand Up @@ -5745,6 +5745,7 @@ inline void ggml_cuda_op_rope(
(void) dst;
(void) src0_ddq_i;
(void) src1_ddf_i;
(void) i02;
(void) i1;
}

Expand Down Expand Up @@ -5780,6 +5781,7 @@ inline void ggml_cuda_op_alibi(
(void) src1;
(void) src0_ddq_i;
(void) src1_ddf_i;
(void) i02;
(void) i1;
}

Expand Down

0 comments on commit 968d132

Please sign in to comment.