From: Georgi Gerganov Date: Tue, 6 Dec 2022 20:12:57 +0000 (+0200) Subject: ggml : fix typo in previous commit X-Git-Tag: upstream/1.7.4~1753 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=b6597539f9dca74b5477184588d971df9cc99b9c;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp ggml : fix typo in previous commit --- diff --git a/ggml.c b/ggml.c index 8cd80707..f38b367d 100644 --- a/ggml.c +++ b/ggml.c @@ -213,7 +213,7 @@ ggml_fp16_t ggml_fp32_to_fp16(float f) { } #define GGML_FP16_TO_FP32(x) ggml_fp16_to_fp32(x) -#define GGML_FP32_TO_TP16(x) ggml_fp32_to_fp16(x) +#define GGML_FP32_TO_FP16(x) ggml_fp32_to_fp16(x) #endif // __F16C__