fix: typos in documentation files (#11791)

* Update ggml.c

* Update arg.cpp

* Update speculative.h
This commit is contained in:
Maxim Evtush 2025-02-10 23:21:31 +01:00 committed by GitHub
parent 81732619fd
commit 7b891bdc86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -1379,7 +1379,7 @@ bool ggml_are_same_stride(const struct ggml_tensor * t0, const struct ggml_tenso
(t0->nb[3] == t1->nb[3]);
}
// check if t1 can be represented as a repeatition of t0
// check if t1 can be represented as a repetition of t0
bool ggml_can_repeat(const struct ggml_tensor * t0, const struct ggml_tensor * t1) {
static_assert(GGML_MAX_DIMS == 4, "GGML_MAX_DIMS is not 4 - update this function");