From 6260e194b34842ac6d932dd5c96842c0d1214d70 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Thu, 6 Jun 2019 13:47:38 +0100 Subject: COMPMID-2394: (Nightly) Clang-tidy errors Change-Id: Ie7ccf4e62cccca6057c0bc4521496267a05e4459 Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/1304 Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins Reviewed-by: Giuseppe Rossini --- examples/graph_mobilenet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/graph_mobilenet.cpp b/examples/graph_mobilenet.cpp index dda88ee0da..9c014e747b 100644 --- a/examples/graph_mobilenet.cpp +++ b/examples/graph_mobilenet.cpp @@ -328,14 +328,14 @@ private: 3U, 3U, get_weights_accessor(data_path, total_path + "depthwise_weights.npy"), get_weights_accessor(data_path, total_path + "depthwise_bias.npy"), - dwc_pad_stride_info, 1, depth_weights_quant_info) + dwc_pad_stride_info, 1, std::move(depth_weights_quant_info)) .set_name(total_path + "depthwise/depthwise") << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 6.f)).set_name(total_path + "depthwise/Relu6") << ConvolutionLayer( 1U, 1U, conv_filt, get_weights_accessor(data_path, total_path + "pointwise_weights.npy"), get_weights_accessor(data_path, total_path + "pointwise_bias.npy"), - conv_pad_stride_info, 1, point_weights_quant_info) + conv_pad_stride_info, 1, std::move(point_weights_quant_info)) .set_name(total_path + "pointwise/Conv2D") << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 6.f)).set_name(total_path + "pointwise/Relu6"); -- cgit v1.2.1