diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2023-07-24 14:46:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-24 14:46:21 +0300 |
commit | 5b2b2dc6ae8086bff7c9b3c17fb435cf319b7185 (patch) | |
tree | db5cf0288472b4fc0ef88217bfcbddf4d18c2a03 /tests/test-opt.c | |
parent | 42f70cb2f6a8089e0a0560a459e4ba317bac4d49 (diff) |
ggml : sync (unary ops refactor, static-correctness) (#2370)
* ggml : sync (unary ops, tests)
ggml-ci
* tests : remove unnecessary funcs
Diffstat (limited to 'tests/test-opt.c')
-rw-r--r-- | tests/test-opt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-opt.c b/tests/test-opt.c index 5531814c..4eef62bc 100644 --- a/tests/test-opt.c +++ b/tests/test-opt.c @@ -125,9 +125,9 @@ int main(void) { }; struct ggml_context * ctx = ggml_init(params); - int64_t ne1[4] = {4, 1024, 1, 1}; - int64_t ne2[4] = {4, 2048, 1, 1};; - int64_t ne3[4] = {1024, 2048, 1, 1}; + int64_t ne1[4] = {4, 128, 1, 1}; + int64_t ne2[4] = {4, 256, 1, 1};; + int64_t ne3[4] = {128, 256, 1, 1}; struct ggml_tensor * a = get_random_tensor(ctx, 2, ne1, -1, +1); struct ggml_tensor * b = get_random_tensor(ctx, 2, ne2, -1, +1); |