diff options
author | Manuel Bottini <manuel.bottini@arm.com> | 2019-11-05 16:55:57 +0000 |
---|---|---|
committer | Georgios Pinitas <georgios.pinitas@arm.com> | 2019-11-06 11:25:05 +0000 |
commit | 325279580fdadc36f82eb0aff2a2f3d72d5b71aa (patch) | |
tree | 81d690f9891d998ac22f71f61d704267b167bcbb /examples | |
parent | 0fc2d7ad56b297852375b34322d0920193a21b8b (diff) | |
download | armcl-325279580fdadc36f82eb0aff2a2f3d72d5b71aa.tar.gz armcl-325279580fdadc36f82eb0aff2a2f3d72d5b71aa.tar.bz2 armcl-325279580fdadc36f82eb0aff2a2f3d72d5b71aa.zip |
COMPMID-2106: Extend get_input_accessor() to run input images through QASYMM8 networks
Change-Id: I5c44bcc95990c343d7829d885b93e8ff16691c50
Signed-off-by: Manuel Bottini <manuel.bottini@arm.com>
Reviewed-on: https://review.mlplatform.org/c/2226
Tested-by: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/graph_mobilenet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/graph_mobilenet.cpp b/examples/graph_mobilenet.cpp index 7533084d1..5a39dc0ff 100644 --- a/examples/graph_mobilenet.cpp +++ b/examples/graph_mobilenet.cpp @@ -235,7 +235,7 @@ private: }; graph << InputLayer(input_descriptor.set_quantization_info(in_quant_info), - get_weights_accessor(data_path, common_params.image)) + get_input_accessor(common_params, nullptr, false)) << ConvolutionLayer( 3U, 3U, 32U, get_weights_accessor(data_path, "Conv2d_0_weights.npy"), |