blob: 9c2b41b4efb2c3bb575677f8da9597b2a88ae8f0 [file] [log] [blame]
Pablo Tello7fad9b12018-03-14 17:55:27 +00001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
25#include "arm_compute/core/CPP/CPPTypes.h"
26
27#include "arm_compute/core/Error.h"
28
29#ifndef BARE_METAL
30#include <sched.h>
31#endif /* defined(BARE_METAL) */
32
33using namespace arm_compute;
34
35void CPUInfo::set_fp16(const bool fp16)
36{
37 _fp16 = fp16;
38}
39
40void CPUInfo::set_dotprod(const bool dotprod)
41{
42 _dotprod = dotprod;
43}
44
45void CPUInfo::set_cpu_model(unsigned int cpuid, CPUModel model)
46{
47 ARM_COMPUTE_ERROR_ON(cpuid >= _percpu.size());
48 if(_percpu.size() > cpuid)
49 {
50 _percpu[cpuid] = model;
51 }
52}
53
54bool CPUInfo::has_fp16() const
55{
56 return _fp16;
57}
58
59bool CPUInfo::has_dotprod() const
60{
61 return _dotprod;
62}
63
64CPUModel CPUInfo::get_cpu_model(unsigned int cpuid) const
65{
Pablo Tello7fad9b12018-03-14 17:55:27 +000066 if(cpuid < _percpu.size())
67 {
68 return _percpu[cpuid];
69 }
70 return CPUModel::GENERIC;
71}
72
73unsigned int CPUInfo::get_L1_cache_size() const
74{
75 return _L1_cache_size;
76}
77
78void CPUInfo::set_L1_cache_size(unsigned int size)
79{
80 _L1_cache_size = size;
81}
82
83unsigned int CPUInfo::get_L2_cache_size() const
84{
85 return _L2_cache_size;
86}
87
88void CPUInfo::set_L2_cache_size(unsigned int size)
89{
90 _L2_cache_size = size;
91}
92
93void CPUInfo::set_cpu_num(unsigned int cpu_count)
94{
95 _percpu.resize(cpu_count);
96}
97
98CPUInfo::CPUInfo()
99 : _percpu(1)
100{
101 // The core library knows nothing about the CPUs so we set only 1 CPU to be generic.
102 // The runtime NESCheduler will initialise this vector with the correct CPU models.
103 // See void detect_cpus_configuration(CPUInfo &cpuinfo) in CPPUtils.h
104 _percpu[0] = CPUModel::GENERIC;
105}
106
107CPUModel CPUInfo::get_cpu_model() const
108{
109#if defined(BARE_METAL) || (!defined(__arm__) && !defined(__aarch64__))
110 return get_cpu_model(0);
111#else /* defined(BARE_METAL) || (!defined(__arm__) && !defined(__aarch64__)) */
112 return get_cpu_model(sched_getcpu());
113#endif /* defined(BARE_METAL) || (!defined(__arm__) && !defined(__aarch64__)) */
114}