From 2534c587a91fcb36b48487b1a6977bcf720fec74 Mon Sep 17 00:00:00 2001 From: Cebtenzzre Date: Thu, 21 Sep 2023 14:48:06 -0400 Subject: [PATCH] remove semicolon Co-authored-by: slaren --- ggml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.h b/ggml.h index d0e85f8e0..eee75aa88 100644 --- a/ggml.h +++ b/ggml.h @@ -467,7 +467,7 @@ extern "C" { int n_dims; int64_t ne[GGML_MAX_DIMS]; // number of elements size_t nb[GGML_MAX_DIMS]; // stride in bytes: - // nb[0] = ggml_type_size(type); + // nb[0] = ggml_type_size(type) // nb[1] = nb[0] * (ne[0]/ggml_blck_size(type)) + padding // nb[i] = nb[i-1] * ne[i-1]