sampling : enable all backend sampler tests

This commit enables all exisiting backend sampler tests in the
test-backend-sampler. Previously, some tests were disabled because
there were missing ggml operation implementations.
This commit is contained in:
Daniel Bevenius 2025-11-18 07:31:54 +01:00
parent 67d3b8e84d
commit 71574f9273
1 changed files with 4 additions and 4 deletions

View File

@ -639,10 +639,10 @@ static const backend_test_case BACKEND_TESTS[] = {
{ "greedy", test_backend_greedy_sampling, true },
{ "logit_bias", test_backend_logit_bias_sampling, true },
{ "temp", test_backend_temp_sampling, true },
{ "top_k", test_backend_top_k_sampling, false },
{ "multi_sequence", test_backend_multi_sequence_sampling, false },
{ "dist", test_backend_dist_sampling, false },
{ "dist_and_cpu", test_backend_dist_sampling_and_cpu, false },
{ "top_k", test_backend_top_k_sampling, true },
{ "multi_sequence", test_backend_multi_sequence_sampling, true },
{ "dist", test_backend_dist_sampling, true },
{ "dist_and_cpu", test_backend_dist_sampling_and_cpu, true },
{ "set_sampler", test_backend_set_sampler, true },
};