aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/Utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/Utils.cpp')
-rw-r--r--src/runtime/Utils.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/runtime/Utils.cpp b/src/runtime/Utils.cpp
index 2204ec11d7..a7f7b5f3cb 100644
--- a/src/runtime/Utils.cpp
+++ b/src/runtime/Utils.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019 ARM Limited.
+ * Copyright (c) 2017-2020 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -21,7 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
-#include "arm_compute/runtime/Utils.h"
+#include "src/runtime/Utils.h"
#include "arm_compute/runtime/NEON/NEScheduler.h"
@@ -31,6 +31,8 @@
namespace arm_compute
{
+namespace utils
+{
#ifndef DOXYGEN_SKIP_THIS
static const std::string information =
#include "arm_compute_version.embed"
@@ -39,20 +41,17 @@ static const std::string information =
const std::string &string_from_scheduler_type(Scheduler::Type t)
{
- static std::map<Scheduler::Type, const std::string> scheduler_type_map =
- {
- { Scheduler::Type::ST, "Single Thread" },
- { Scheduler::Type::CPP, "C++11 Threads" },
- { Scheduler::Type::OMP, "OpenMP Threads" },
- { Scheduler::Type::CUSTOM, "Custom" }
- };
+ static std::map<Scheduler::Type, const std::string> scheduler_type_map = {{Scheduler::Type::ST, "Single Thread"},
+ {Scheduler::Type::CPP, "C++11 Threads"},
+ {Scheduler::Type::OMP, "OpenMP Threads"},
+ {Scheduler::Type::CUSTOM, "Custom"}};
return scheduler_type_map[t];
}
void schedule_kernel_on_ctx(IRuntimeContext *ctx, ICPPKernel *kernel, const IScheduler::Hints &hints)
{
- if(ctx)
+ if (ctx)
{
ARM_COMPUTE_ERROR_ON(ctx->scheduler() == nullptr);
ctx->scheduler()->schedule(kernel, hints);
@@ -66,7 +65,7 @@ void schedule_kernel_on_ctx(IRuntimeContext *ctx, ICPPKernel *kernel, const ISch
unsigned int calculate_number_of_stages_only_x_axis(size_t input_x_dimension, unsigned int axis)
{
// We need only 1 stage for all axis except x-axis
- if(axis != 0)
+ if (axis != 0)
{
return 1;
}
@@ -78,4 +77,5 @@ unsigned int calculate_number_of_stages_only_x_axis(size_t input_x_dimension, un
const unsigned int num_of_stages = num_of_wg / 128 + 2;
return num_of_stages;
}
+} // namespace utils
} // namespace arm_compute