diff options
Diffstat (limited to 'pocs')
-rw-r--r-- | pocs/vdot/vdot.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pocs/vdot/vdot.cpp b/pocs/vdot/vdot.cpp index 26bf50c..7b18090 100644 --- a/pocs/vdot/vdot.cpp +++ b/pocs/vdot/vdot.cpp @@ -10,6 +10,10 @@ #include <ggml.h> +#if defined(_MSC_VER) +#pragma warning(disable: 4244 4267) // possible loss of data +#endif + constexpr int kVecSize = 1 << 18; float drawFromGaussianPdf(std::mt19937& rndm) { |