vulkan: fix topk_moe_sigmoid_norm_bias failures in GLM-4.6 (#18582)

This commit is contained in:
Jeff Bolz
2026-01-05 04:51:39 -06:00
committed by GitHub
parent 2da64a2f8a
commit f1768d8f03
2 changed files with 13 additions and 7 deletions
+1
View File
@@ -8184,6 +8184,7 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_eval() {
test_cases.emplace_back(new test_topk_moe({71, 22, 1, 1}, 8, with_norm, bias_probs, gate, scale_w));
test_cases.emplace_back(new test_topk_moe({128, 1, 1, 1}, 128, with_norm, bias_probs, gate, scale_w));
test_cases.emplace_back(new test_topk_moe({129, 1, 1, 1}, 128, with_norm, bias_probs, gate, scale_w));
test_cases.emplace_back(new test_topk_moe({160, 4, 1, 1}, 160, with_norm, bias_probs, gate, scale_w));
}
}
}