Skip to content

Commit

Permalink
ggml: fix typo in comment in src/acc.c
Browse files Browse the repository at this point in the history
  • Loading branch information
danbev committed Oct 5, 2024
1 parent eac84ae commit f374817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fundamentals/ggml/src/acc.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ int main(int argc, char **argv) {
printf("a[%d]: %f\n", i, ggml_get_f32_1d(a, i));
}

// The source tensor which will have its vales added to the destination
// The source tensor which will have its values added to the destination
// tensor dimensions specified later in the ggml_acc call.
struct ggml_tensor* b = ggml_new_tensor_1d(ctx, GGML_TYPE_F32, 5);
ggml_set_name(b, "b");
Expand Down

0 comments on commit f374817

Please sign in to comment.