Skip to content

Commit 9fef9ee

Browse files
committed
add tests
1 parent 3afd9a5 commit 9fef9ee

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/test-backend-ops.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6756,21 +6756,21 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_eval() {
67566756
test_cases.emplace_back(new test_cos (type));
67576757
test_cases.emplace_back(new test_clamp (type));
67586758
test_cases.emplace_back(new test_leaky_relu(type));
6759-
test_cases.emplace_back(new test_floor (type));
6760-
test_cases.emplace_back(new test_ceil (type));
6761-
test_cases.emplace_back(new test_round (type));
6762-
test_cases.emplace_back(new test_trunc (type));
6759+
test_cases.emplace_back(new test_floor (type));
6760+
test_cases.emplace_back(new test_ceil (type));
6761+
test_cases.emplace_back(new test_round (type));
6762+
test_cases.emplace_back(new test_trunc (type));
67636763
test_cases.emplace_back(new test_sqr (type, {7, 1, 5, 3}));
67646764
test_cases.emplace_back(new test_sqrt (type, {7, 1, 5, 3}));
67656765
test_cases.emplace_back(new test_log (type, {7, 1, 5, 3}));
67666766
test_cases.emplace_back(new test_sin (type, {7, 1, 5, 3}));
67676767
test_cases.emplace_back(new test_cos (type, {7, 1, 5, 3}));
67686768
test_cases.emplace_back(new test_clamp (type, {7, 1, 5, 3}));
67696769
test_cases.emplace_back(new test_leaky_relu(type, {7, 1, 5, 3}));
6770-
test_cases.emplace_back(new test_floor (type, {7, 1, 5, 3}));
6771-
test_cases.emplace_back(new test_ceil (type, {7, 1, 5, 3}));
6772-
test_cases.emplace_back(new test_round (type, {7, 1, 5, 3}));
6773-
test_cases.emplace_back(new test_trunc (type, {7, 1, 5, 3}));
6770+
test_cases.emplace_back(new test_floor (type, {7, 1, 5, 3}));
6771+
test_cases.emplace_back(new test_ceil (type, {7, 1, 5, 3}));
6772+
test_cases.emplace_back(new test_round (type, {7, 1, 5, 3}));
6773+
test_cases.emplace_back(new test_trunc (type, {7, 1, 5, 3}));
67746774

67756775
}
67766776

0 commit comments

Comments
 (0)