Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ggml : group all experts in a single ggml_mul_mat_id #6505

Merged
merged 22 commits into from
Apr 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cuda : fix warnings
  • Loading branch information
slaren committed Apr 17, 2024
commit 0e6963da8f062e70264857fb76226879d37e5a1b
8 changes: 4 additions & 4 deletions ggml-cuda/binbcast.cu
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@ struct bin_bcast_cuda {
int64_t ne2 = cne[2];
int64_t ne3 = cne[3];

int64_t ne00 = cne0[0];
int64_t ne01 = cne0[1];
int64_t ne02 = cne0[2];
int64_t ne03 = cne0[3];
int64_t ne00 = cne0[0]; GGML_UNUSED(ne00);
int64_t ne01 = cne0[1]; GGML_UNUSED(ne01);
int64_t ne02 = cne0[2]; GGML_UNUSED(ne02);
int64_t ne03 = cne0[3]; GGML_UNUSED(ne03);

int64_t ne10 = cne1[0];
int64_t ne11 = cne1[1];
Expand Down
Loading