28 arser.add_argument(
"circle").help(
"Circle file path to verify");
32 arser.parse(argc, argv);
34 catch (
const std::runtime_error &err)
36 std::cout << err.what() << std::endl;
41 auto verifier = std::make_unique<VerifyFlatbuffers>();
43 std::string model_file =
arser.get<std::string>(
"circle");
45 std::cout <<
"[ RUN ] Check " << model_file << std::endl;
47 auto result = verifier->run(model_file);
51 std::cout <<
"[ PASS ] Check " << model_file << std::endl;
55 std::cout <<
"[ FAIL ] Check " << model_file << std::endl;