You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include "test_options.h"
- using namespace lar;
-
- void lar::run_NormalStrategy(std::string model_path) {
- auto origin_level = mgb::get_log_level();
- mgb::set_log_level(mgb::LogLevel::WARN);
- NormalStrategy strategy(model_path);
- strategy.run();
- mgb::set_log_level(origin_level);
- }
-
- // vim: syntax=cpp.doxygen foldmethod=marker foldmarker=f{{{,f}}}
|