aboutsummaryrefslogtreecommitdiff
path: root/pocs/vdot/vdot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pocs/vdot/vdot.cpp')
-rw-r--r--pocs/vdot/vdot.cpp4
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) {