Lines Matching refs:common_params
39 …cmd_parser), model_input_width(nullptr), model_input_height(nullptr), common_params(), graph(0, "R… in GraphResNet12Example()
58 common_params = consume_common_graph_parameters(common_opts); in do_setup()
61 if(common_params.help) in do_setup()
72 …ARM_COMPUTE_EXIT_ON_MSG(arm_compute::is_data_type_quantized_asymmetric(common_params.data_type), "… in do_setup()
75 std::cout << common_params << std::endl; in do_setup()
80 const std::string data_path = common_params.data_path; in do_setup()
87 …shape(TensorShape(image_width, image_height, 3U, common_params.batches), DataLayout::NCHW, common_… in do_setup()
88 … input_descriptor = TensorDescriptor(tensor_shape, common_params.data_type).set_layout(common_par… in do_setup()
93 graph << common_params.target in do_setup()
94 << common_params.fast_math_hint in do_setup()
95 …<< InputLayer(input_descriptor, get_input_accessor(common_params, std::move(preprocessor), false /… in do_setup()
135 config.num_threads = common_params.threads; in do_setup()
136 config.use_tuner = common_params.enable_tuner; in do_setup()
137 config.tuner_mode = common_params.tuner_mode; in do_setup()
138 config.tuner_file = common_params.tuner_file; in do_setup()
139 config.mlgo_file = common_params.mlgo_file; in do_setup()
141 graph.finalize(common_params.target, config); in do_setup()
157 CommonGraphParams common_params; member in GraphResNet12Example