aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/ITransformWeights.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/ITransformWeights.h')
-rw-r--r--arm_compute/runtime/ITransformWeights.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/arm_compute/runtime/ITransformWeights.h b/arm_compute/runtime/ITransformWeights.h
index 4981c5fdec..08671bbe3c 100644
--- a/arm_compute/runtime/ITransformWeights.h
+++ b/arm_compute/runtime/ITransformWeights.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019 ARM Limited.
+ * Copyright (c) 2019-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -25,6 +25,7 @@
#define ARM_COMPUTE_ITRANSFORMWEIGHTS_H
#include <atomic>
+#include <utility>
namespace arm_compute
{
@@ -36,9 +37,8 @@ class ITensor;
* to generate a unique id. We use the following conversion using an unsigned 32bit value:
*
* Lower two bits store the target:
- * 00 -> NEON
+ * 00 -> Neon
* 01 -> CL
- * 10 -> GLES
* 11 -> Unused
*
* Five bits store the id of the reshape function:
@@ -72,7 +72,7 @@ public:
/** Allow instances of this class to be moved */
ITransformWeights &operator=(ITransformWeights &&other)
{
- if(this != &other)
+ if (this != &other)
{
_num_refcount = other._num_refcount.load();
_reshape_run = other._reshape_run;
@@ -119,9 +119,9 @@ public:
}
protected:
- std::atomic<int32_t> _num_refcount{ 0 };
- bool _reshape_run{ false };
+ std::atomic<int32_t> _num_refcount{0};
+ bool _reshape_run{false};
};
-} // arm_compute
+} // namespace arm_compute
-#endif /*ARM_COMPUTE_ITRANSFORMWEIGHTS_H */ \ No newline at end of file
+#endif /*ARM_COMPUTE_ITRANSFORMWEIGHTS_H */