ggml : fix typo in previous commit

This commit is contained in:
Georgi Gerganov 2022-12-06 22:12:57 +02:00
parent 9a4b7a916e
commit b6597539f9
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735

2
ggml.c
View File

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