From 0cff93277fda6f62910d3d8c17828b976d0f8da2 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Thu, 22 Feb 2024 18:53:40 +0200 Subject: [PATCH] ggml : cont ggml-ci --- ggml-impl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ggml-impl.h b/ggml-impl.h index 10070d7ae..c5637e4d4 100644 --- a/ggml-impl.h +++ b/ggml-impl.h @@ -56,6 +56,8 @@ extern "C" { #define GGML_COMPUTE_FP16_TO_FP32(x) ggml_compute_fp16_to_fp32(x) #define GGML_COMPUTE_FP32_TO_FP16(x) ggml_compute_fp32_to_fp16(x) +#define GGML_FP16_TO_FP32(x) ggml_compute_fp16_to_fp32(x) + static inline float ggml_compute_fp16_to_fp32(ggml_fp16_t h) { __fp16 tmp; memcpy(&tmp, &h, sizeof(ggml_fp16_t));