From 2a07e184f7b359d13aa6cacfdc6431f9b191ef0c Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Fri, 4 Aug 2017 18:20:27 +0100 Subject: COMPMID-363 Add Graph library support Change-Id: Ie841419bf65d0e06bdfe0bdd2d8d4e0bb3631e54 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/87931 Reviewed-by: Pablo Tello Tested-by: Kaizen --- tests/datasets/BatchNormalizationLayerDataset.h | 2 +- tests/datasets/BorderModeDataset.h | 7 +++++++ tests/datasets/ConvolutionLayerDataset.h | 2 +- tests/datasets/DepthwiseConvolutionDataset.h | 2 +- tests/datasets/DepthwiseSeparableConvolutionLayerDataset.h | 2 +- tests/datasets/DirectConvolutionLayerDataset.h | 2 +- tests/datasets/FullyConnectedLayerDataset.h | 2 +- tests/datasets/GEMMDataset.h | 2 +- tests/datasets/LargeConvolutionLayerDataset.h | 2 +- tests/datasets/LargeGEMMDataset.h | 2 +- tests/datasets/MatrixMultiplyGEMMDataset.h | 2 +- tests/datasets/MatrixPatternDataset.h | 7 +++++++ tests/datasets/MobileNetDepthwiseConvolutionDataset.h | 2 +- .../datasets/MobileNetDepthwiseSeparableConvolutionLayerDataset.h | 2 +- tests/datasets/PoolingLayerDataset.h | 2 +- tests/datasets/ROIPoolingLayerDataset.h | 2 +- tests/datasets/RandomBatchNormalizationLayerDataset.h | 2 +- tests/datasets/ReductionOperationDataset.h | 2 +- tests/datasets/ReshapeLayerDataset.h | 2 +- tests/datasets/SmallConvolutionLayerDataset.h | 2 +- tests/datasets/SmallGEMMDataset.h | 2 +- .../datasets/system_tests/alexnet/AlexNetActivationLayerDataset.h | 2 +- .../datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h | 2 +- .../system_tests/alexnet/AlexNetFullyConnectedLayerDataset.h | 2 +- .../system_tests/alexnet/AlexNetNormalizationLayerDataset.h | 2 +- tests/datasets/system_tests/alexnet/AlexNetPoolingLayerDataset.h | 2 +- .../inceptionv1/GoogLeNetInceptionV1ActivationLayerDataset.h | 2 +- .../inceptionv1/GoogLeNetInceptionV1ConvolutionLayerDataset.h | 2 +- .../inceptionv1/GoogLeNetInceptionV1FullyConnectedLayerDataset.h | 2 +- .../googlenet/inceptionv1/GoogLeNetInceptionV1GEMMDataset.h | 2 +- .../inceptionv1/GoogLeNetInceptionV1NormalizationLayerDataset.h | 2 +- .../inceptionv1/GoogLeNetInceptionV1PoolingLayerDataset.h | 2 +- .../inceptionv4/GoogLeNetInceptionV4ActivationLayerDataset.h | 2 +- .../GoogLeNetInceptionV4BatchNormalizationLayerDataset.h | 2 +- .../inceptionv4/GoogLeNetInceptionV4ConvolutionLayerDataset.h | 2 +- .../inceptionv4/GoogLeNetInceptionV4FullyConnectedLayerDataset.h | 2 +- .../inceptionv4/GoogLeNetInceptionV4PoolingLayerDataset.h | 2 +- tests/datasets/system_tests/lenet5/LeNet5ActivationLayerDataset.h | 2 +- tests/datasets/system_tests/lenet5/LeNet5ConvolutionLayerDataset.h | 2 +- .../system_tests/lenet5/LeNet5FullyConnectedLayerDataset.h | 2 +- tests/datasets/system_tests/lenet5/LeNet5PoolingLayerDataset.h | 2 +- .../system_tests/squeezenet/SqueezeNetActivationLayerDataset.h | 2 +- .../system_tests/squeezenet/SqueezeNetConvolutionLayerDataset.h | 2 +- .../system_tests/squeezenet/SqueezeNetPoolingLayerDataset.h | 2 +- .../datasets/system_tests/vgg/vgg16/VGG16ActivationLayerDataset.h | 2 +- .../datasets/system_tests/vgg/vgg16/VGG16ConvolutionLayerDataset.h | 2 +- .../system_tests/vgg/vgg16/VGG16FullyConnectedLayerDataset.h | 2 +- tests/datasets/system_tests/vgg/vgg16/VGG16PoolingLayerDataset.h | 2 +- tests/datasets/system_tests/yolo/v2/YOLOV2ActivationLayerDataset.h | 2 +- .../system_tests/yolo/v2/YOLOV2BatchNormalizationLayerDataset.h | 2 +- .../datasets/system_tests/yolo/v2/YOLOV2ConvolutionLayerDataset.h | 2 +- tests/datasets/system_tests/yolo/v2/YOLOV2PoolingLayerDataset.h | 2 +- 52 files changed, 64 insertions(+), 50 deletions(-) (limited to 'tests/datasets') diff --git a/tests/datasets/BatchNormalizationLayerDataset.h b/tests/datasets/BatchNormalizationLayerDataset.h index 25e65d931c..fceff1edc7 100644 --- a/tests/datasets/BatchNormalizationLayerDataset.h +++ b/tests/datasets/BatchNormalizationLayerDataset.h @@ -24,7 +24,7 @@ #ifndef ARM_COMPUTE_TEST_BATCHNORMALIZATION_LAYER_DATASET #define ARM_COMPUTE_TEST_BATCHNORMALIZATION_LAYER_DATASET -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/BorderModeDataset.h b/tests/datasets/BorderModeDataset.h index df024a7dbf..3b8a08ce61 100644 --- a/tests/datasets/BorderModeDataset.h +++ b/tests/datasets/BorderModeDataset.h @@ -27,6 +27,13 @@ #include "arm_compute/core/Types.h" #include "tests/framework/datasets/ContainerDataset.h" +#include "utils/TypePrinter.h" + +#include "arm_compute/core/TensorShape.h" +#include "arm_compute/core/Types.h" + +#include "arm_compute/core/TensorShape.h" +#include "arm_compute/core/Types.h" #include namespace arm_compute diff --git a/tests/datasets/ConvolutionLayerDataset.h b/tests/datasets/ConvolutionLayerDataset.h index ba11bd5d6d..6e2d2a142e 100644 --- a/tests/datasets/ConvolutionLayerDataset.h +++ b/tests/datasets/ConvolutionLayerDataset.h @@ -24,7 +24,7 @@ #ifndef ARM_COMPUTE_TEST_CONVOLUTION_LAYER_DATASET #define ARM_COMPUTE_TEST_CONVOLUTION_LAYER_DATASET -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/DepthwiseConvolutionDataset.h b/tests/datasets/DepthwiseConvolutionDataset.h index bdc949501e..6a7af63d05 100644 --- a/tests/datasets/DepthwiseConvolutionDataset.h +++ b/tests/datasets/DepthwiseConvolutionDataset.h @@ -24,7 +24,7 @@ #ifndef ARM_COMPUTE_TEST_DEPTHWISE_CONVOLUTION_DATASET #define ARM_COMPUTE_TEST_DEPTHWISE_CONVOLUTION_DATASET -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/DepthwiseSeparableConvolutionLayerDataset.h b/tests/datasets/DepthwiseSeparableConvolutionLayerDataset.h index 4391379833..6b39d3a5c8 100644 --- a/tests/datasets/DepthwiseSeparableConvolutionLayerDataset.h +++ b/tests/datasets/DepthwiseSeparableConvolutionLayerDataset.h @@ -24,7 +24,7 @@ #ifndef ARM_COMPUTE_TEST_DEPTHWISE_SEPARABLE_CONVOLUTION_LAYER_DATASET #define ARM_COMPUTE_TEST_DEPTHWISE_SEPARABLE_CONVOLUTION_LAYER_DATASET -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/DirectConvolutionLayerDataset.h b/tests/datasets/DirectConvolutionLayerDataset.h index dca38b5858..294f44fa42 100644 --- a/tests/datasets/DirectConvolutionLayerDataset.h +++ b/tests/datasets/DirectConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/ConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/FullyConnectedLayerDataset.h b/tests/datasets/FullyConnectedLayerDataset.h index 8401e39ece..5789954e85 100644 --- a/tests/datasets/FullyConnectedLayerDataset.h +++ b/tests/datasets/FullyConnectedLayerDataset.h @@ -24,7 +24,7 @@ #ifndef ARM_COMPUTE_TEST_FULLYCONNECTED_LAYER_DATASET #define ARM_COMPUTE_TEST_FULLYCONNECTED_LAYER_DATASET -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/GEMMDataset.h b/tests/datasets/GEMMDataset.h index bb8a328b0c..9491582641 100644 --- a/tests/datasets/GEMMDataset.h +++ b/tests/datasets/GEMMDataset.h @@ -24,7 +24,7 @@ #ifndef ARM_COMPUTE_TEST_GEMM_DATASET #define ARM_COMPUTE_TEST_GEMM_DATASET -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" diff --git a/tests/datasets/LargeConvolutionLayerDataset.h b/tests/datasets/LargeConvolutionLayerDataset.h index 721530ae19..086b2e3def 100644 --- a/tests/datasets/LargeConvolutionLayerDataset.h +++ b/tests/datasets/LargeConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/ConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/LargeGEMMDataset.h b/tests/datasets/LargeGEMMDataset.h index 37cdfaa99f..638eb904ad 100644 --- a/tests/datasets/LargeGEMMDataset.h +++ b/tests/datasets/LargeGEMMDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/GEMMDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/MatrixMultiplyGEMMDataset.h b/tests/datasets/MatrixMultiplyGEMMDataset.h index 771403ba96..718c32b466 100644 --- a/tests/datasets/MatrixMultiplyGEMMDataset.h +++ b/tests/datasets/MatrixMultiplyGEMMDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/GEMMDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" diff --git a/tests/datasets/MatrixPatternDataset.h b/tests/datasets/MatrixPatternDataset.h index 4c1414996d..423aeb8627 100644 --- a/tests/datasets/MatrixPatternDataset.h +++ b/tests/datasets/MatrixPatternDataset.h @@ -27,6 +27,13 @@ #include "arm_compute/core/Types.h" #include "tests/framework/datasets/ContainerDataset.h" +#include "utils/TypePrinter.h" + +#include "arm_compute/core/TensorShape.h" +#include "arm_compute/core/Types.h" + +#include "arm_compute/core/TensorShape.h" +#include "arm_compute/core/Types.h" #include namespace arm_compute diff --git a/tests/datasets/MobileNetDepthwiseConvolutionDataset.h b/tests/datasets/MobileNetDepthwiseConvolutionDataset.h index c417f18a51..c9d98d4185 100644 --- a/tests/datasets/MobileNetDepthwiseConvolutionDataset.h +++ b/tests/datasets/MobileNetDepthwiseConvolutionDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/DepthwiseConvolutionDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/MobileNetDepthwiseSeparableConvolutionLayerDataset.h b/tests/datasets/MobileNetDepthwiseSeparableConvolutionLayerDataset.h index c7784c399c..f6137ee74c 100644 --- a/tests/datasets/MobileNetDepthwiseSeparableConvolutionLayerDataset.h +++ b/tests/datasets/MobileNetDepthwiseSeparableConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/DepthwiseSeparableConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/PoolingLayerDataset.h b/tests/datasets/PoolingLayerDataset.h index e5e9cd70f0..56ec3b87d8 100644 --- a/tests/datasets/PoolingLayerDataset.h +++ b/tests/datasets/PoolingLayerDataset.h @@ -26,7 +26,7 @@ #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" namespace arm_compute { diff --git a/tests/datasets/ROIPoolingLayerDataset.h b/tests/datasets/ROIPoolingLayerDataset.h index 65d589eb97..a1879d3b54 100644 --- a/tests/datasets/ROIPoolingLayerDataset.h +++ b/tests/datasets/ROIPoolingLayerDataset.h @@ -24,7 +24,7 @@ #ifndef ARM_COMPUTE_TEST_ROI_POOLING_LAYER_DATASET #define ARM_COMPUTE_TEST_ROI_POOLING_LAYER_DATASET -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/RandomBatchNormalizationLayerDataset.h b/tests/datasets/RandomBatchNormalizationLayerDataset.h index f4c61e06d5..10908871b6 100644 --- a/tests/datasets/RandomBatchNormalizationLayerDataset.h +++ b/tests/datasets/RandomBatchNormalizationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/BatchNormalizationLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/ReductionOperationDataset.h b/tests/datasets/ReductionOperationDataset.h index ce1bcb8501..e710588921 100644 --- a/tests/datasets/ReductionOperationDataset.h +++ b/tests/datasets/ReductionOperationDataset.h @@ -25,8 +25,8 @@ #define __ARM_COMPUTE_TEST_REDUCTION_OPERATION_DATASET_H__ #include "arm_compute/core/Types.h" -#include "tests/TypePrinter.h" #include "tests/framework/datasets/ContainerDataset.h" +#include "utils/TypePrinter.h" #include diff --git a/tests/datasets/ReshapeLayerDataset.h b/tests/datasets/ReshapeLayerDataset.h index db7b0b3e57..fa938a63ed 100644 --- a/tests/datasets/ReshapeLayerDataset.h +++ b/tests/datasets/ReshapeLayerDataset.h @@ -24,7 +24,7 @@ #ifndef ARM_COMPUTE_TEST_RESHAPE_LAYER_DATASET #define ARM_COMPUTE_TEST_RESHAPE_LAYER_DATASET -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" diff --git a/tests/datasets/SmallConvolutionLayerDataset.h b/tests/datasets/SmallConvolutionLayerDataset.h index 1a26fa5917..8eda2e87fe 100644 --- a/tests/datasets/SmallConvolutionLayerDataset.h +++ b/tests/datasets/SmallConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/ConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/SmallGEMMDataset.h b/tests/datasets/SmallGEMMDataset.h index 0cc3c3aa8c..5d59c1d3b3 100644 --- a/tests/datasets/SmallGEMMDataset.h +++ b/tests/datasets/SmallGEMMDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/GEMMDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/alexnet/AlexNetActivationLayerDataset.h b/tests/datasets/system_tests/alexnet/AlexNetActivationLayerDataset.h index 4030e97436..74c5fda235 100644 --- a/tests/datasets/system_tests/alexnet/AlexNetActivationLayerDataset.h +++ b/tests/datasets/system_tests/alexnet/AlexNetActivationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/framework/datasets/Datasets.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h b/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h index d0b901a9a1..dcf96c7991 100644 --- a/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h +++ b/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/ConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/alexnet/AlexNetFullyConnectedLayerDataset.h b/tests/datasets/system_tests/alexnet/AlexNetFullyConnectedLayerDataset.h index 50b0f7d75d..3d43e6f7db 100644 --- a/tests/datasets/system_tests/alexnet/AlexNetFullyConnectedLayerDataset.h +++ b/tests/datasets/system_tests/alexnet/AlexNetFullyConnectedLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/FullyConnectedLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/alexnet/AlexNetNormalizationLayerDataset.h b/tests/datasets/system_tests/alexnet/AlexNetNormalizationLayerDataset.h index 33b7423442..6f68fd7722 100644 --- a/tests/datasets/system_tests/alexnet/AlexNetNormalizationLayerDataset.h +++ b/tests/datasets/system_tests/alexnet/AlexNetNormalizationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/framework/datasets/Datasets.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/alexnet/AlexNetPoolingLayerDataset.h b/tests/datasets/system_tests/alexnet/AlexNetPoolingLayerDataset.h index ab2749b36e..739d24ca18 100644 --- a/tests/datasets/system_tests/alexnet/AlexNetPoolingLayerDataset.h +++ b/tests/datasets/system_tests/alexnet/AlexNetPoolingLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/PoolingLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ActivationLayerDataset.h b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ActivationLayerDataset.h index dc4ffe4e4e..76087fa3d5 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ActivationLayerDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ActivationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/framework/datasets/Datasets.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ConvolutionLayerDataset.h b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ConvolutionLayerDataset.h index a4002d124d..1415ff1daa 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ConvolutionLayerDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/ConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1FullyConnectedLayerDataset.h b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1FullyConnectedLayerDataset.h index 80a3473bc7..cde9ae6179 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1FullyConnectedLayerDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1FullyConnectedLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/FullyConnectedLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1GEMMDataset.h b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1GEMMDataset.h index 806ca9378a..3b5c9acc8a 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1GEMMDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1GEMMDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/GEMMDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1NormalizationLayerDataset.h b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1NormalizationLayerDataset.h index d8fd061b66..eb6903faef 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1NormalizationLayerDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1NormalizationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/framework/datasets/Datasets.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1PoolingLayerDataset.h b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1PoolingLayerDataset.h index 6164bbacea..b775667ac8 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1PoolingLayerDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1PoolingLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/PoolingLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ActivationLayerDataset.h b/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ActivationLayerDataset.h index 2d586390ec..395b1f9866 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ActivationLayerDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ActivationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/framework/datasets/Datasets.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4BatchNormalizationLayerDataset.h b/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4BatchNormalizationLayerDataset.h index d96410f9eb..3a22c7807f 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4BatchNormalizationLayerDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4BatchNormalizationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/BatchNormalizationLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ConvolutionLayerDataset.h b/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ConvolutionLayerDataset.h index a050d3da74..3dd8a7c348 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ConvolutionLayerDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/ConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4FullyConnectedLayerDataset.h b/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4FullyConnectedLayerDataset.h index 8cf59e8207..5a0af2b6c5 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4FullyConnectedLayerDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4FullyConnectedLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/FullyConnectedLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4PoolingLayerDataset.h b/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4PoolingLayerDataset.h index 3b1ee8dcb4..a58fd797ec 100644 --- a/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4PoolingLayerDataset.h +++ b/tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4PoolingLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/PoolingLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/lenet5/LeNet5ActivationLayerDataset.h b/tests/datasets/system_tests/lenet5/LeNet5ActivationLayerDataset.h index 4c88cde58d..021bfee18b 100644 --- a/tests/datasets/system_tests/lenet5/LeNet5ActivationLayerDataset.h +++ b/tests/datasets/system_tests/lenet5/LeNet5ActivationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/framework/datasets/Datasets.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/lenet5/LeNet5ConvolutionLayerDataset.h b/tests/datasets/system_tests/lenet5/LeNet5ConvolutionLayerDataset.h index e1d3ead65b..3f28627b08 100644 --- a/tests/datasets/system_tests/lenet5/LeNet5ConvolutionLayerDataset.h +++ b/tests/datasets/system_tests/lenet5/LeNet5ConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/ConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/lenet5/LeNet5FullyConnectedLayerDataset.h b/tests/datasets/system_tests/lenet5/LeNet5FullyConnectedLayerDataset.h index 343ecc0190..74e8d2ce7b 100644 --- a/tests/datasets/system_tests/lenet5/LeNet5FullyConnectedLayerDataset.h +++ b/tests/datasets/system_tests/lenet5/LeNet5FullyConnectedLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/FullyConnectedLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/lenet5/LeNet5PoolingLayerDataset.h b/tests/datasets/system_tests/lenet5/LeNet5PoolingLayerDataset.h index bc2de7b235..bcd11dc5b9 100644 --- a/tests/datasets/system_tests/lenet5/LeNet5PoolingLayerDataset.h +++ b/tests/datasets/system_tests/lenet5/LeNet5PoolingLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/PoolingLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/squeezenet/SqueezeNetActivationLayerDataset.h b/tests/datasets/system_tests/squeezenet/SqueezeNetActivationLayerDataset.h index 7644387384..7f4bf4d549 100644 --- a/tests/datasets/system_tests/squeezenet/SqueezeNetActivationLayerDataset.h +++ b/tests/datasets/system_tests/squeezenet/SqueezeNetActivationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/framework/datasets/Datasets.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/squeezenet/SqueezeNetConvolutionLayerDataset.h b/tests/datasets/system_tests/squeezenet/SqueezeNetConvolutionLayerDataset.h index 2d447b0156..2bb9db7240 100644 --- a/tests/datasets/system_tests/squeezenet/SqueezeNetConvolutionLayerDataset.h +++ b/tests/datasets/system_tests/squeezenet/SqueezeNetConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/ConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/squeezenet/SqueezeNetPoolingLayerDataset.h b/tests/datasets/system_tests/squeezenet/SqueezeNetPoolingLayerDataset.h index 69d04db7e1..cb2edbc5ec 100644 --- a/tests/datasets/system_tests/squeezenet/SqueezeNetPoolingLayerDataset.h +++ b/tests/datasets/system_tests/squeezenet/SqueezeNetPoolingLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/PoolingLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/vgg/vgg16/VGG16ActivationLayerDataset.h b/tests/datasets/system_tests/vgg/vgg16/VGG16ActivationLayerDataset.h index 66301ddf08..93de996b6c 100644 --- a/tests/datasets/system_tests/vgg/vgg16/VGG16ActivationLayerDataset.h +++ b/tests/datasets/system_tests/vgg/vgg16/VGG16ActivationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/framework/datasets/Datasets.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/vgg/vgg16/VGG16ConvolutionLayerDataset.h b/tests/datasets/system_tests/vgg/vgg16/VGG16ConvolutionLayerDataset.h index 36cb5d93aa..fe31da287c 100644 --- a/tests/datasets/system_tests/vgg/vgg16/VGG16ConvolutionLayerDataset.h +++ b/tests/datasets/system_tests/vgg/vgg16/VGG16ConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/ConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/vgg/vgg16/VGG16FullyConnectedLayerDataset.h b/tests/datasets/system_tests/vgg/vgg16/VGG16FullyConnectedLayerDataset.h index d34dc3f87e..3b40b34653 100644 --- a/tests/datasets/system_tests/vgg/vgg16/VGG16FullyConnectedLayerDataset.h +++ b/tests/datasets/system_tests/vgg/vgg16/VGG16FullyConnectedLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/FullyConnectedLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/vgg/vgg16/VGG16PoolingLayerDataset.h b/tests/datasets/system_tests/vgg/vgg16/VGG16PoolingLayerDataset.h index 4db20870f2..affbcc5022 100644 --- a/tests/datasets/system_tests/vgg/vgg16/VGG16PoolingLayerDataset.h +++ b/tests/datasets/system_tests/vgg/vgg16/VGG16PoolingLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/PoolingLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/yolo/v2/YOLOV2ActivationLayerDataset.h b/tests/datasets/system_tests/yolo/v2/YOLOV2ActivationLayerDataset.h index 8a2cd1665e..f30069e55d 100644 --- a/tests/datasets/system_tests/yolo/v2/YOLOV2ActivationLayerDataset.h +++ b/tests/datasets/system_tests/yolo/v2/YOLOV2ActivationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/framework/datasets/Datasets.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/yolo/v2/YOLOV2BatchNormalizationLayerDataset.h b/tests/datasets/system_tests/yolo/v2/YOLOV2BatchNormalizationLayerDataset.h index cc6a6dcccc..4d2cba8b4b 100644 --- a/tests/datasets/system_tests/yolo/v2/YOLOV2BatchNormalizationLayerDataset.h +++ b/tests/datasets/system_tests/yolo/v2/YOLOV2BatchNormalizationLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/BatchNormalizationLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/yolo/v2/YOLOV2ConvolutionLayerDataset.h b/tests/datasets/system_tests/yolo/v2/YOLOV2ConvolutionLayerDataset.h index 41f48b0958..b4cb3577e8 100644 --- a/tests/datasets/system_tests/yolo/v2/YOLOV2ConvolutionLayerDataset.h +++ b/tests/datasets/system_tests/yolo/v2/YOLOV2ConvolutionLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/ConvolutionLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" diff --git a/tests/datasets/system_tests/yolo/v2/YOLOV2PoolingLayerDataset.h b/tests/datasets/system_tests/yolo/v2/YOLOV2PoolingLayerDataset.h index 3763d63588..62222f3a88 100644 --- a/tests/datasets/system_tests/yolo/v2/YOLOV2PoolingLayerDataset.h +++ b/tests/datasets/system_tests/yolo/v2/YOLOV2PoolingLayerDataset.h @@ -26,7 +26,7 @@ #include "tests/datasets/PoolingLayerDataset.h" -#include "tests/TypePrinter.h" +#include "utils/TypePrinter.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" -- cgit v1.2.1