From: Georgi Gerganov Date: Thu, 6 Jul 2023 16:41:18 +0000 (+0300) Subject: ggml : minor indentation X-Git-Tag: upstream/0.0.1642~1344 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=543e88973a2c3f4750865048dd09a9b345e134fe;p=pkg%2Fggml%2Fsources%2Fggml ggml : minor indentation --- diff --git a/include/ggml/ggml.h b/include/ggml/ggml.h index 8264a3d9..d0710c55 100644 --- a/include/ggml/ggml.h +++ b/include/ggml/ggml.h @@ -1520,9 +1520,9 @@ extern "C" { #else #define GGML_RESTRICT restrict #endif - typedef void (*ggml_to_float_t)(const void * GGML_RESTRICT x, float * GGML_RESTRICT y, int k); - typedef void (*ggml_from_float_t)(const float * GGML_RESTRICT x, void * GGML_RESTRICT y, int k); - typedef void (*ggml_vec_dot_t)(const int n, float * GGML_RESTRICT s, const void * GGML_RESTRICT x, const void * GGML_RESTRICT y); + typedef void (*ggml_to_float_t) (const void * GGML_RESTRICT x, float * GGML_RESTRICT y, int k); + typedef void (*ggml_from_float_t)(const float * GGML_RESTRICT x, void * GGML_RESTRICT y, int k); + typedef void (*ggml_vec_dot_t) (const int n, float * GGML_RESTRICT s, const void * GGML_RESTRICT x, const void * GGML_RESTRICT y); typedef struct { ggml_to_float_t to_float;