aboutsummaryrefslogtreecommitdiff
path: root/src/core/CPP/CPPTypes.cpp
blob: 55119d80a85631f3a4f63e2070490b33f93fedae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * Copyright (c) 2018 Arm Limited.
 *
 * SPDX-License-Identifier: MIT
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to
 * deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 * sell copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#include "arm_compute/core/CPP/CPPTypes.h"

#include "arm_compute/core/Error.h"

#ifndef BARE_METAL
#include <sched.h>
#endif /* defined(BARE_METAL) */

using namespace arm_compute;

void CPUInfo::set_fp16(const bool fp16)
{
    _fp16 = fp16;
}

void CPUInfo::set_dotprod(const bool dotprod)
{
    _dotprod = dotprod;
}

void CPUInfo::set_cpu_model(unsigned int cpuid, CPUModel model)
{
    ARM_COMPUTE_ERROR_ON(cpuid >= _percpu.size());
    if(_percpu.size() > cpuid)
    {
        _percpu[cpuid] = model;
    }
}

unsigned int CPUInfo::get_cpu_num() const
{
    return _percpu.size();
}
bool CPUInfo::has_fp16() const
{
    return _fp16;
}

bool CPUInfo::has_dotprod() const
{
    return _dotprod;
}

CPUModel CPUInfo::get_cpu_model(unsigned int cpuid) const
{
    if(cpuid < _percpu.size())
    {
        return _percpu[cpuid];
    }
    return CPUModel::GENERIC;
}

unsigned int CPUInfo::get_L1_cache_size() const
{
    return _L1_cache_size;
}

void CPUInfo::set_L1_cache_size(unsigned int size)
{
    _L1_cache_size = size;
}

unsigned int CPUInfo::get_L2_cache_size() const
{
    return _L2_cache_size;
}

void CPUInfo::set_L2_cache_size(unsigned int size)
{
    _L2_cache_size = size;
}

void CPUInfo::set_cpu_num(unsigned int cpu_count)
{
    _percpu.resize(cpu_count);
}

CPUInfo::CPUInfo()
    : _percpu(1)
{
    // The core library knows nothing about the CPUs so we set only 1 CPU to be generic.
    // The runtime NESCheduler will initialise this vector with the correct CPU models.
    // See void detect_cpus_configuration(CPUInfo &cpuinfo) in CPPUtils.h
    _percpu[0] = CPUModel::GENERIC;
}

CPUModel CPUInfo::get_cpu_model() const
{
#if defined(BARE_METAL) || (!defined(__arm__) && !defined(__aarch64__))
    return get_cpu_model(0);
#else  /* defined(BARE_METAL) || (!defined(__arm__) && !defined(__aarch64__)) */
    return get_cpu_model(sched_getcpu());
#endif /* defined(BARE_METAL) || (!defined(__arm__) && !defined(__aarch64__)) */
}