Skip to content

Commit 7eb9468

Browse files
committed
Update test vars printing for rope,rms_norm
1 parent 672544e commit 7eb9468

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test-backend-ops.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2871,7 +2871,7 @@ struct test_rms_norm : public test_case {
28712871
const bool inplace; // whether to do the operation inplace
28722872

28732873
std::string vars() override {
2874-
return VARS_TO_STR4(type, ne, v, eps);
2874+
return VARS_TO_STR5(type, ne, v, eps, inplace);
28752875
}
28762876

28772877
test_rms_norm(ggml_type type = GGML_TYPE_F32,
@@ -3805,7 +3805,7 @@ struct test_rope : public test_case {
38053805

38063806
std::string vars() override {
38073807
// forward can be inferred from the op, does not need to be printed
3808-
return VARS_TO_STR10(type, ne_a, n_dims, mode, n_ctx, fs, ef, af, ff, v);
3808+
return VARS_TO_STR11(type, ne_a, n_dims, mode, n_ctx, fs, ef, af, ff, v, inplace);
38093809
}
38103810

38113811
test_rope(ggml_type type = GGML_TYPE_F32,

0 commit comments

Comments
 (0)