From afd38f0c617d6f89b2b4532c6c44f116617e2b6f Mon Sep 17 00:00:00 2001 From: Felix Thomasmathibalan Date: Wed, 27 Sep 2023 17:46:17 +0100 Subject: Apply clang-format on repository Code is formatted as per a revised clang format configuration file(not part of this delivery). Version 14.0.6 is used. Exclusion List: - files with .cl extension - files that are not strictly C/C++ (e.g. Android.bp, Sconscript ...) And the following directories - compute_kernel_writer/validation/ - tests/ - include/ - src/core/NEON/kernels/convolution/ - src/core/NEON/kernels/arm_gemm/ - src/core/NEON/kernels/arm_conv/ - data/ There will be a follow up for formatting of .cl files and the files under tests/ and compute_kernel_writer/validation/. Signed-off-by: Felix Thomasmathibalan Change-Id: Ib7eb1fcf4e7537b9feaefcfc15098a804a3fde0a Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10391 Benchmark: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Gunes Bayir --- arm_compute/graph/frontend/Types.h | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) (limited to 'arm_compute/graph/frontend/Types.h') diff --git a/arm_compute/graph/frontend/Types.h b/arm_compute/graph/frontend/Types.h index bc4fe7ae0d..42b28b3cd2 100644 --- a/arm_compute/graph/frontend/Types.h +++ b/arm_compute/graph/frontend/Types.h @@ -33,39 +33,40 @@ namespace graph namespace frontend { // Import types for graph -using graph::DataType; using graph::DataLayout; using graph::DataLayoutDimension; -using graph::TensorShape; +using graph::DataType; using graph::PermutationVector; +using graph::TensorShape; using graph::ActivationLayerInfo; +using graph::ConvolutionMethod; +using graph::DepthwiseConvolutionMethod; +using graph::DimensionRoundingType; using graph::EltwiseOperation; +using graph::FastMathHint; using graph::FullyConnectedLayerInfo; +using graph::GraphConfig; +using graph::InterpolationPolicy; using graph::NormalizationLayerInfo; using graph::NormType; using graph::PadStrideInfo; using graph::PoolingLayerInfo; using graph::PoolingType; +using graph::Size2D; using graph::Target; -using graph::ConvolutionMethod; -using graph::FastMathHint; -using graph::DepthwiseConvolutionMethod; using graph::TensorDescriptor; -using graph::DimensionRoundingType; -using graph::GraphConfig; -using graph::InterpolationPolicy; -using graph::Size2D; /** Hints that can be passed to the stream to expose parameterization */ struct StreamHints { - Target target_hint = { Target::UNSPECIFIED }; /**< Target execution hint */ - ConvolutionMethod convolution_method_hint = { ConvolutionMethod::Default }; /**< Convolution method hint */ - DepthwiseConvolutionMethod depthwise_convolution_method_hint = { DepthwiseConvolutionMethod::Default }; /**< Depthwise Convolution method hint */ - FastMathHint fast_math_hint = { FastMathHint::Disabled }; /**< Fast math hint */ + Target target_hint = {Target::UNSPECIFIED}; /**< Target execution hint */ + ConvolutionMethod convolution_method_hint = {ConvolutionMethod::Default}; /**< Convolution method hint */ + DepthwiseConvolutionMethod depthwise_convolution_method_hint = { + DepthwiseConvolutionMethod::Default}; /**< Depthwise Convolution method hint */ + FastMathHint fast_math_hint = {FastMathHint::Disabled}; /**< Fast math hint */ }; } // namespace frontend } // namespace graph } // namespace arm_compute -#endif /* ARM_COMPUTE_GRAPH_STREAM_TYPES_H */ \ No newline at end of file +#endif /* ARM_COMPUTE_GRAPH_STREAM_TYPES_H */ -- cgit v1.2.1