Spaces:
Running
Running
ggml : fix __MSC_VER -> _MSC_VER (llama/6977)
Browse files- ggml-impl.h +1 -1
ggml-impl.h
CHANGED
|
@@ -320,7 +320,7 @@ inline static int32x4_t ggml_vdotq_s32(int32x4_t acc, int8x16_t a, int8x16_t b)
|
|
| 320 |
|
| 321 |
#endif // defined(__ARM_NEON)
|
| 322 |
|
| 323 |
-
#if defined(__ARM_NEON) && !defined(
|
| 324 |
|
| 325 |
#define GGML_COMPUTE_FP16_TO_FP32(x) ggml_compute_fp16_to_fp32(x)
|
| 326 |
#define GGML_COMPUTE_FP32_TO_FP16(x) ggml_compute_fp32_to_fp16(x)
|
|
|
|
| 320 |
|
| 321 |
#endif // defined(__ARM_NEON)
|
| 322 |
|
| 323 |
+
#if defined(__ARM_NEON) && !defined(_MSC_VER)
|
| 324 |
|
| 325 |
#define GGML_COMPUTE_FP16_TO_FP32(x) ggml_compute_fp16_to_fp32(x)
|
| 326 |
#define GGML_COMPUTE_FP32_TO_FP16(x) ggml_compute_fp32_to_fp16(x)
|