From ef0d5e3ec9f99003af3ff326384816c02850ea3f Mon Sep 17 00:00:00 2001 From: Borislav Stanimirov Date: Thu, 25 Apr 2024 17:24:07 +0300 Subject: build: fix and ignore msvc warnings (ggml/805) --- ggml-quants.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ggml-quants.c') diff --git a/ggml-quants.c b/ggml-quants.c index 9883b6f8..00334c5f 100644 --- a/ggml-quants.c +++ b/ggml-quants.c @@ -14,6 +14,12 @@ #include // for qsort #include // for GGML_ASSERT +#if defined(_MSC_VER) +// disable "possible loss of data" to avoid warnings for hundreds of casts +// we should just be careful :) +#pragma warning(disable: 4244 4267) +#endif + #define UNUSED GGML_UNUSED // some compilers don't provide _mm256_set_m128i, e.g. gcc 7 -- cgit v1.2.3