ggml-cpu : use template for argsort (#17222)

This commit is contained in:
Diego Devesa 2025-11-13 00:59:05 -08:00 committed by GitHub
parent 97d5117217
commit 879dec341a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 24 additions and 8 deletions

View file

@ -7631,6 +7631,8 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_perf() {
test_cases.emplace_back(new test_sum(GGML_TYPE_F32, it));
}
test_cases.emplace_back(new test_argsort(GGML_TYPE_F32, {65000, 16, 1, 1}));
return test_cases;
}