Lines Matching refs:common_params
43 : cmd_parser(), common_opts(cmd_parser), common_params(), graph(0, "AlexNet") in GraphAlexnetExample()
53 common_params = consume_common_graph_parameters(common_opts); in do_setup()
56 if(common_params.help) in do_setup()
63 …ARM_COMPUTE_EXIT_ON_MSG(arm_compute::is_data_type_quantized_asymmetric(common_params.data_type), "… in do_setup()
66 std::cout << common_params << std::endl; in do_setup()
69 std::string data_path = common_params.data_path; in do_setup()
76 const auto operation_layout = common_params.data_layout; in do_setup()
77 …sorShape tensor_shape = permute_shape(TensorShape(227U, 227U, 3U, common_params.batches), Data… in do_setup()
78 …TensorDescriptor input_descriptor = TensorDescriptor(tensor_shape, common_params.data_type).set_l… in do_setup()
83 graph << common_params.target in do_setup()
84 << common_params.fast_math_hint in do_setup()
85 … << InputLayer(input_descriptor, get_input_accessor(common_params, std::move(preprocessor))) in do_setup()
153 << OutputLayer(get_output_accessor(common_params, 5)); in do_setup()
158 config.num_threads = common_params.threads; in do_setup()
159 config.use_tuner = common_params.enable_tuner; in do_setup()
160 config.tuner_mode = common_params.tuner_mode; in do_setup()
161 config.tuner_file = common_params.tuner_file; in do_setup()
162 config.mlgo_file = common_params.mlgo_file; in do_setup()
166 if(common_params.enable_cl_cache) in do_setup()
173 graph.finalize(common_params.target, config); in do_setup()
194 CommonGraphParams common_params; member in GraphAlexnetExample