build : fix and ignore MSVC warnings (#1889)

This commit is contained in:
Borislav Stanimirov
2023-06-16 21:23:53 +03:00
committed by GitHub
parent 3d01122610
commit 9cbf50c041
16 changed files with 88 additions and 37 deletions

View File

@ -40,6 +40,10 @@
#include <sstream>
#include <numeric>
#if defined(_MSC_VER)
#pragma warning(disable: 4244 4267) // possible loss of data
#endif
#define LLAMA_USE_SCRATCH
#define LLAMA_MAX_SCRATCH_BUFFERS 16