diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2023-07-11 22:53:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 22:53:34 +0300 |
commit | 20d7740a9b45f6e5b247fa3738fdda35e18c2e8a (patch) | |
tree | c64588319bc093347062551e2871100d853e3861 /tests/test-grad0.c | |
parent | 5bf2a2771886ee86137e01dbc7492f78fb392066 (diff) |
ggml : sync (abort callback, mul / add broadcast, fix alibi) (#2183)
Diffstat (limited to 'tests/test-grad0.c')
-rw-r--r-- | tests/test-grad0.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test-grad0.c b/tests/test-grad0.c index da4001ce..01467bc1 100644 --- a/tests/test-grad0.c +++ b/tests/test-grad0.c @@ -10,7 +10,9 @@ #pragma warning(disable: 4244 4267) // possible loss of data #endif +#if defined(__GNUC__) #pragma GCC diagnostic ignored "-Wdouble-promotion" +#endif #define MAX_NARGS 3 |