Commit c1d2a665 authored by Paul's avatar Paul
Browse files

Formatting

parent f0c57f28
......@@ -23,8 +23,7 @@ struct loader
ap(type, {"--onnx"}, ap.help("Load as onnx"), ap.set_value("onnx"));
ap(type, {"--tf"}, ap.help("Load as tensorflow"), ap.set_value("tf"));
ap(is_nhwc, {"--nhwc"}, ap.help("Treat tensorflow format as nhwc"), ap.set_value(true));
ap(
is_nhwc, {"--nchw"}, ap.help("Treat tensorflow format as nchw"), ap.set_value(false));
ap(is_nhwc, {"--nchw"}, ap.help("Treat tensorflow format as nchw"), ap.set_value(false));
ap(trim, {"--trim", "-t"}, ap.help("Trim instructions from the end"));
}
......@@ -78,8 +77,7 @@ struct verify : command<verify>
{"-i", "--per-instruction"},
ap.help("Verify each instruction"),
ap.set_value(true));
ap(
reduce, {"-r", "--reduce"}, ap.help("Reduce program and verify"), ap.set_value(true));
ap(reduce, {"-r", "--reduce"}, ap.help("Reduce program and verify"), ap.set_value(true));
}
void run()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment