Skip to content

Commit 5b6da18

Browse files
authored
Make updates to type cast based on compiler instead of OS (#7851)
1 parent 7c26775 commit 5b6da18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml-impl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#define MIN(a, b) ((a) < (b) ? (a) : (b))
1818
#define MAX(a, b) ((a) > (b) ? (a) : (b))
1919

20-
#if defined(_WIN32)
20+
#if defined(_MSC_VER)
2121

2222
#define m512bh(p) p
2323
#define m512i(p) p

0 commit comments

Comments
 (0)