test-backend-ops : increase max_nmse_err so Llama passes

This commit is contained in:
Jared Van Bortel 2024-01-24 17:31:34 -05:00
parent ebb5f7e968
commit ec68a9657f

View file

@ -1504,6 +1504,10 @@ struct test_llama : public test_case {
return VARS_TO_STR1(n_tokens);
}
double max_nmse_err() override {
return 2e-3;
}
test_llama(int n_tokens = 1)
: n_tokens(n_tokens) {
}