Skip to content

Commit

Permalink
ggml : fix typo in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Dec 6, 2022
1 parent 9a4b7a9 commit b659753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -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__

Expand Down

0 comments on commit b659753

Please sign in to comment.