MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / GraphVDSRExample

Method GraphVDSRExample

examples/graph_vgg_vdsr.cpp:40–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38{
39public:
40 GraphVDSRExample() : cmd_parser(), common_opts(cmd_parser), common_params(), graph(0, "VDSR")
41 {
42 model_input_width = cmd_parser.add_option<SimpleOption<unsigned int>>("image-width", 192);
43 model_input_height = cmd_parser.add_option<SimpleOption<unsigned int>>("image-height", 192);
44
45 // Add model id option
46 model_input_width->set_help("Input image width.");
47 model_input_height->set_help("Input image height.");
48 }
49 GraphVDSRExample(const GraphVDSRExample &) = delete;
50 GraphVDSRExample &operator=(const GraphVDSRExample &) = delete;
51 ~GraphVDSRExample() override = default;

Callers

nothing calls this directly

Calls 1

set_helpMethod · 0.80

Tested by

no test coverage detected