提交 43ef9748 编写于 作者: M Megvii Engine Team

feat(mgb): load_and_run can set both fastrun and reproducible

GitOrigin-RevId: 14e1de9952de6056ade8279a9c34d22e4985565c
上级 c3f8cf04
......@@ -710,6 +710,9 @@ void run_test_st(Args &env) {
}
} else if (env.use_fast_run) {
strategy = S::PROFILE | S::OPTIMIZED;
if (env.reproducible){
strategy = strategy | S::REPRODUCIBLE;
}
} else if (env.reproducible) {
strategy = S::HEURISTIC | S::REPRODUCIBLE;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册