]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
fix: typos in documentation files (llama/11791)
authorMaxim Evtush <redacted>
Mon, 10 Feb 2025 22:21:31 +0000 (23:21 +0100)
committerGeorgi Gerganov <redacted>
Thu, 27 Feb 2025 06:55:36 +0000 (08:55 +0200)
* Update ggml.c

* Update arg.cpp

* Update speculative.h

ggml/src/ggml.c

index 3b48615421187ed6068bb948ffe58748b310621d..e9f3420c294b84d6a3ff15253283d4de895870b7 100644 (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");