summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2024-02-13 11:20:24 +0200
committerGitHub <noreply@github.com>2024-02-13 11:20:24 +0200
commit99b8b43d7b185a6483f28cf798a2d968b2e16ca7 (patch)
treef2c237306f3082444eacb9e52a84736e9ff3570d
parent895407f31b358e3d9335e847d13f033491ec8a5b (diff)
tests : disable moe test (#5473)
-rw-r--r--tests/test-backend-ops.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test-backend-ops.cpp b/tests/test-backend-ops.cpp
index eb06123d..9af8517d 100644
--- a/tests/test-backend-ops.cpp
+++ b/tests/test-backend-ops.cpp
@@ -2129,14 +2129,13 @@ static bool test_backend(ggml_backend_t backend, test_mode mode, const char * op
test_cases.emplace_back(new test_pad());
test_cases.emplace_back(new test_leaky_relu());
+ // these tests are disabled to save execution time, but they can be handy for debugging
+#if 0
#if !defined(__SANITIZE_THREAD__)
// FIXME: these tests use too much memory with thread sanitizer
test_cases.emplace_back(new test_moe(8, 2, 1, 4096, 8*1024));
//test_cases.emplace_back(new test_moe(8, 2, 8, 4096, 14336));
#endif
-
- // these tests are disabled to save execution time, but they can be handy for debugging
-#if 0
test_cases.emplace_back(new test_llama(1));
test_cases.emplace_back(new test_llama(2));
test_cases.emplace_back(new test_falcon(1));