Browse Source

Fix no gcc pragma on Windows (#7751)

jojorne 1 năm trước cách đây
mục cha
commit
84f6de17f6
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      sgemm.cpp

+ 2 - 0
sgemm.cpp

@@ -43,8 +43,10 @@
 // [1] J. Tunney, ‘LLaMA Now Goes Faster on CPUs’, Mar. 2024. [Online].
 //     Available: https://justine.lol/matmul/. [Accessed: 29-Mar-2024].
 
+#if defined(__GNUC__)
 #pragma GCC diagnostic ignored "-Wpedantic"
 #pragma GCC diagnostic ignored "-Wignored-attributes"
+#endif
 
 #include "sgemm.h"
 #include "ggml-impl.h"