Skip to content

Commit 95e1e11

Browse files
committed
tests : fix silu test to use type arg (#0)
ggml-ci
1 parent 5e079c1 commit 95e1e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test-backend-ops.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3982,7 +3982,7 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_eval() {
39823982
test_cases.emplace_back(new test_scale());
39833983

39843984
for (ggml_type type : {GGML_TYPE_F16, GGML_TYPE_F32}) {
3985-
test_cases.emplace_back(new test_silu_back());
3985+
test_cases.emplace_back(new test_silu_back(type));
39863986
}
39873987

39883988
for (float eps : {0.0f, 1e-6f, 1e-4f, 1e-1f}) {

0 commit comments

Comments
 (0)