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.

test_options.cpp 362 B

123456789101112
  1. #include "test_options.h"
  2. using namespace lar;
  3. void lar::run_NormalStrategy(std::string model_path) {
  4. auto origin_level = mgb::get_log_level();
  5. mgb::set_log_level(mgb::LogLevel::WARN);
  6. NormalStrategy strategy(model_path);
  7. strategy.run();
  8. mgb::set_log_level(origin_level);
  9. }
  10. // vim: syntax=cpp.doxygen foldmethod=marker foldmarker=f{{{,f}}}