Skip to content

Commit 757b81c

Browse files
committed
Fix test print
1 parent 90cba7f commit 757b81c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/test-backend-ops.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2561,7 +2561,7 @@ struct test_rms_norm : public test_case {
25612561
const float eps;
25622562

25632563
std::string vars() override {
2564-
return VARS_TO_STR5(type, ne, v, eps, v);
2564+
return VARS_TO_STR4(type, ne, v, eps);
25652565
}
25662566

25672567
test_rms_norm(ggml_type type = GGML_TYPE_F32,
@@ -2651,7 +2651,7 @@ struct test_rms_norm_mul_add : public test_case {
26512651
bool run_whole_graph() override { return true; }
26522652

26532653
std::string vars() override {
2654-
return VARS_TO_STR3(type, ne, eps);
2654+
return VARS_TO_STR4(type, ne, eps, broadcast);
26552655
}
26562656

26572657
test_rms_norm_mul_add(ggml_type type = GGML_TYPE_F32,
@@ -2666,8 +2666,6 @@ struct test_rms_norm_mul_add : public test_case {
26662666
ggml_tensor * b = ggml_new_tensor(ctx, type, 4, ne.data());
26672667
ggml_tensor * c = ggml_new_tensor(ctx, type, 4, ne.data());
26682668

2669-
2670-
26712669
ggml_set_param(a);
26722670
ggml_set_name(a, "a");
26732671
ggml_set_param(b);

0 commit comments

Comments
 (0)