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

Q4_K implementation for Metal #1733

Merged
merged 4 commits into from
Jun 8, 2023
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
Fix after merge with master
  • Loading branch information
Kawrakow committed Jun 7, 2023
commit 75ad0c06149b9df073766e067df083045f7893d5
8 changes: 0 additions & 8 deletions ggml-metal.m
Original file line number Diff line number Diff line change
Expand Up @@ -530,14 +530,6 @@ void ggml_metal_graph_compute(
nth1 = 16;
[encoder setComputePipelineState:ctx->pipeline_mul_mat_q4_k_f32];
} break;
case GGML_TYPE_F16:
{
GGML_ASSERT(ne02 == ne12);

nth0 = 32;
nth1 = 1;
[encoder setComputePipelineState:ctx->pipeline_mul_mat_f16_f32];
} break;
default:
{
fprintf(stderr, "Asserting on type %d\n",(int)src0t);
Expand Down