From 481f1746c0b4be973d64dc09deaaf0a1589ceb00 Mon Sep 17 00:00:00 2001 From: Julia Longtin Date: Wed, 3 Apr 2024 19:01:18 +0000 Subject: [PATCH] indent headers consistently. --- ggml-phi-knc-dot_q5_K_q8_K.h | 6 ++++-- ggml-phi-knc.h | 8 +++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ggml-phi-knc-dot_q5_K_q8_K.h b/ggml-phi-knc-dot_q5_K_q8_K.h index b416803e0..e1e15d400 100644 --- a/ggml-phi-knc-dot_q5_K_q8_K.h +++ b/ggml-phi-knc-dot_q5_K_q8_K.h @@ -1,13 +1,15 @@ +// Formatted with: indent -npcs -nlp -i4 -l300 #pragma once #include "ggml.h" #ifdef __cplusplus -extern "C" { +extern "C" +{ #endif /* A forward declaration, to keep GCC happy. */ -void ggml_vec_dot_q5_K_q8_K(int n, float * restrict s, size_t bs, const void * restrict vx, size_t bx, const void * restrict vy, size_t by, int nrc); + void ggml_vec_dot_q5_K_q8_K(int n, float *restrict s, size_t bs, const void *restrict vx, size_t bx, const void *restrict vy, size_t by, int nrc); #ifdef __cplusplus } diff --git a/ggml-phi-knc.h b/ggml-phi-knc.h index d2fd11428..94d444627 100644 --- a/ggml-phi-knc.h +++ b/ggml-phi-knc.h @@ -1,13 +1,15 @@ +// Formatted with: indent -npcs -nlp -i4 -l300 #pragma once #include "ggml.h" #ifdef __cplusplus -extern "C" { +extern "C" +{ #endif - /* A forward declaration, to keep GCC happy. */ - void ggml_vec_dot_f32(int n, float * restrict s, size_t bs, const float * restrict x, size_t bx, const float * restrict y, size_t by, int nrc); + /* A forward declaration, to keep GCC happy. */ + void ggml_vec_dot_f32(int n, float *restrict s, size_t bs, const float *restrict x, size_t bx, const float *restrict y, size_t by, int nrc); #ifdef __cplusplus }