remove semicolon

Co-authored-by: slaren <slarengh@gmail.com>
This commit is contained in:
Cebtenzzre 2023-09-21 14:48:06 -04:00 committed by GitHub
parent 191f11c010
commit 2534c587a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
ggml.h
View file

@ -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]