From 4e58ca46df44ee5493ed625bb3553fa480f46a13 Mon Sep 17 00:00:00 2001 From: Francis Couture-Harpin Date: Tue, 8 Jul 2025 16:47:18 -0400 Subject: [PATCH] test-model-random : avoid testing too many sequences for now It makes the test longer for little benefit. --- tests/test-model-random.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test-model-random.cpp b/tests/test-model-random.cpp index 8c8f83fe58..f65444c552 100644 --- a/tests/test-model-random.cpp +++ b/tests/test-model-random.cpp @@ -818,6 +818,8 @@ struct model_variant { case LLM_ARCH_DOTS1: case LLM_ARCH_ARCEE: case LLM_ARCH_ERNIE4_5: + case LLM_ARCH_HUNYUAN_MOE: + case LLM_ARCH_SMOLLM3: case LLM_ARCH_UNKNOWN: break; } @@ -1093,7 +1095,7 @@ int main(int argc, char ** argv) { // const auto n_vocab = llama_vocab_n_tokens(llama_model_get_vocab(model)); // const auto n_embd = llama_model_n_embd(model); - for (int32_t n_seq_max : { 1, 2, 5, 13 } ) { + for (int32_t n_seq_max : { 1, 2, 5 }) { // TODO(later): context shift testing for (int32_t n_ctx : { n_seq_len * n_seq_max }) {