Skip to content

Commit

Permalink
metal : fix wrong number of tokens per sequence in SSM_SCAN
Browse files Browse the repository at this point in the history
  • Loading branch information
compilade committed Oct 3, 2024
1 parent 5b8ec2b commit 62b09b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml/src/ggml-metal.m
Original file line number Diff line number Diff line change
Expand Up @@ -1690,7 +1690,7 @@ static void ggml_metal_encode_node(
const int64_t d_inner = ne01;
const int64_t n_head = ne02;
const int64_t n_group = ne41;
const int64_t n_seq_tokens = ne11;
const int64_t n_seq_tokens = ne12;
const int64_t n_seqs = ne13;

id<MTLComputePipelineState> pipeline = nil;
Expand Down

0 comments on commit 62b09b3

Please sign in to comment.