cuda/vulkan: specify fp32-only support for some operations in supports_op (ggml/1129)

ggml-ci
This commit is contained in:
cmdr2 2025-02-28 12:36:46 +02:00 committed by Georgi Gerganov
parent 8371d44595
commit 0cbee131ad
3 changed files with 8 additions and 10 deletions

View file

@ -3998,10 +3998,7 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_eval() {
test_cases.emplace_back(new test_add1());
test_cases.emplace_back(new test_scale());
for (ggml_type type : {GGML_TYPE_F16, GGML_TYPE_F32}) {
test_cases.emplace_back(new test_silu_back());
}
test_cases.emplace_back(new test_silu_back());
for (float eps : {0.0f, 1e-6f, 1e-4f, 1e-1f}) {
for (bool v : {false, true}) {