aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/CPP
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2017-09-22 11:32:21 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit356f6434671369e1bcf34e71cb0974e2f72342a0 (patch)
treecf1e17fd921fb9ab81bf039e7b8d44d5aecf31ce /arm_compute/core/CPP
parentf89a49f7bdd8d03400060488596c8757745e19cf (diff)
downloadComputeLibrary-356f6434671369e1bcf34e71cb0974e2f72342a0.tar.gz
COMPMID-417 - Added arm_compute comment at the end of NEON header files
Change-Id: I288f409c8f51fac7ceb7b3f301105a74ffc737fd Reviewed-on: http://mpd-gerrit.cambridge.arm.com/88785 Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'arm_compute/core/CPP')
-rw-r--r--arm_compute/core/CPP/CPPTypes.h2
-rw-r--r--arm_compute/core/CPP/ICPPKernel.h2
-rw-r--r--arm_compute/core/CPP/ICPPSimpleKernel.h2
-rw-r--r--arm_compute/core/CPP/kernels/CPPDetectionWindowNonMaximaSuppressionKernel.h3
-rw-r--r--arm_compute/core/CPP/kernels/CPPSortEuclideanDistanceKernel.h1
5 files changed, 4 insertions, 6 deletions
diff --git a/arm_compute/core/CPP/CPPTypes.h b/arm_compute/core/CPP/CPPTypes.h
index 19036525d5..adad00f8c4 100644
--- a/arm_compute/core/CPP/CPPTypes.h
+++ b/arm_compute/core/CPP/CPPTypes.h
@@ -54,5 +54,5 @@ struct ThreadInfo
int num_threads{ 1 };
CPUTarget cpu{ CPUTarget::INTRINSICS };
};
-}
+} // namespace arm_compute
#endif /* __ARM_COMPUTE_CPP_TYPES_H__ */
diff --git a/arm_compute/core/CPP/ICPPKernel.h b/arm_compute/core/CPP/ICPPKernel.h
index 2e5600f5ff..54717caf80 100644
--- a/arm_compute/core/CPP/ICPPKernel.h
+++ b/arm_compute/core/CPP/ICPPKernel.h
@@ -51,5 +51,5 @@ public:
*/
virtual void run(const Window &window, const ThreadInfo &info) = 0;
};
-}
+} // namespace arm_compute
#endif /*__ARM_COMPUTE_ICPPKERNEL_H__ */
diff --git a/arm_compute/core/CPP/ICPPSimpleKernel.h b/arm_compute/core/CPP/ICPPSimpleKernel.h
index 105de397a2..0580b19ba1 100644
--- a/arm_compute/core/CPP/ICPPSimpleKernel.h
+++ b/arm_compute/core/CPP/ICPPSimpleKernel.h
@@ -62,5 +62,5 @@ protected:
const ITensor *_input;
ITensor *_output;
};
-}
+} // namespace arm_compute
#endif /*__ARM_COMPUTE_ICPPSIMPLEKERNEL_H__ */
diff --git a/arm_compute/core/CPP/kernels/CPPDetectionWindowNonMaximaSuppressionKernel.h b/arm_compute/core/CPP/kernels/CPPDetectionWindowNonMaximaSuppressionKernel.h
index 2a9c0473bb..9ca7c64a13 100644
--- a/arm_compute/core/CPP/kernels/CPPDetectionWindowNonMaximaSuppressionKernel.h
+++ b/arm_compute/core/CPP/kernels/CPPDetectionWindowNonMaximaSuppressionKernel.h
@@ -67,6 +67,5 @@ private:
IDetectionWindowArray *_input_output;
float _min_distance;
};
-}
-
+} // namespace arm_compute
#endif /* __ARM_COMPUTE_CPPDETECTIONWINDOWNONMAXIMASUPPRESSIONKERNEL_H__ */
diff --git a/arm_compute/core/CPP/kernels/CPPSortEuclideanDistanceKernel.h b/arm_compute/core/CPP/kernels/CPPSortEuclideanDistanceKernel.h
index c6b47a512a..fddd4254bf 100644
--- a/arm_compute/core/CPP/kernels/CPPSortEuclideanDistanceKernel.h
+++ b/arm_compute/core/CPP/kernels/CPPSortEuclideanDistanceKernel.h
@@ -65,6 +65,5 @@ private:
InternalKeypoint *_in_out; /**< Source array of InternalKeypoint */
IKeyPointArray *_output; /**< Destination array of IKeyPointArray */
};
-
} // namespace arm_compute
#endif /* __ARM_COMPUTE_CPPSORTEUCLIDEANDISTANCEKERNEL_H__ */