Skip to content

Commit

Permalink
Make updates to type cast based on compiler instead of OS (#7851)
Browse files Browse the repository at this point in the history
  • Loading branch information
Srihari-mcw authored Jun 17, 2024
1 parent 7c26775 commit 5b6da18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))

#if defined(_WIN32)
#if defined(_MSC_VER)

#define m512bh(p) p
#define m512i(p) p
Expand Down

0 comments on commit 5b6da18

Please sign in to comment.