aboutsummaryrefslogtreecommitdiff
path: root/tests/networks/MobileNetNetwork.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/networks/MobileNetNetwork.h')
-rw-r--r--tests/networks/MobileNetNetwork.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/networks/MobileNetNetwork.h b/tests/networks/MobileNetNetwork.h
index 74dce0e348..1bc8ad9a0c 100644
--- a/tests/networks/MobileNetNetwork.h
+++ b/tests/networks/MobileNetNetwork.h
@@ -47,7 +47,7 @@ template <typename TensorType,
typename ActivationLayerFunction,
typename ConvolutionLayerFunction,
typename DirectConvolutionLayerFunction,
- typename DepthwiseConvolutionFunction,
+ typename DepthwiseConvolutionLayerFunction,
typename ReshapeFunction,
typename PoolingLayerFunction>
class MobileNetNetwork
@@ -279,9 +279,9 @@ private:
ConvolutionLayerFunction conv3x3{};
ActivationLayerFunction conv3x3_act{};
- std::array<ActivationLayerFunction, 26> act{ {} };
- std::array<DirectConvolutionLayerFunction, 14> conv1x1{ {} };
- std::array<DepthwiseConvolutionFunction, 13> dwc3x3{ {} };
+ std::array<ActivationLayerFunction, 26> act{ {} };
+ std::array<DirectConvolutionLayerFunction, 14> conv1x1{ {} };
+ std::array<DepthwiseConvolutionLayerFunction, 13> dwc3x3{ {} };
PoolingLayerFunction pool{};
ActivationLayerFunction logistic{};
ReshapeFunction reshape{};