aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/src/types/ConstantData.cpp
blob: 67b1103860fcb923f996b2fb1d105b9cdf6844c6 (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
119
/*
 * Copyright (c) 2023 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 "ckw/types/ConstantData.h"

#include <limits>

namespace ckw
{
namespace
{
template <typename T>
inline typename std::enable_if<std::is_same<T, float>::value, std::string>::type to_str(T value)
{
    std::stringstream ss;
    ss << std::scientific << std::setprecision(std::numeric_limits<T>::max_digits10) << value;
    return ss.str();
}

template <typename T>
inline typename std::enable_if<!std::is_same<T, float>::value && !std::is_same<T, bool>::value, std::string>::type
to_str(T value)
{
    return std::to_string(value);
}

template <typename T>
inline typename std::enable_if<std::is_same<T, bool>::value, std::string>::type to_str(T value)
{
    return std::to_string((int)value);
}
} // namespace

template <typename T>
ConstantData::ConstantData(std::initializer_list<std::initializer_list<T>> values, DataType data_type)
    : _data_type(data_type)
{
    CKW_ASSERT(validate<T>(data_type));
    CKW_ASSERT(values.size() > 0);

    for (auto value_arr : values)
    {
        // Each row must have the same number of elements
        CKW_ASSERT(value_arr.size() == (*values.begin()).size());

        StringVector vec;
        std::transform(value_arr.begin(), value_arr.end(), std::back_inserter(vec), [](T val) { return to_str(val); });

        _values.push_back(std::move(vec));
    }
}

template <typename T>
bool ConstantData::validate(DataType data_type)
{
    switch (data_type)
    {
        case DataType::Fp32:
        case DataType::Fp16:
            return std::is_same<T, float>::value;
        case DataType::Bool:
            return std::is_same<T, bool>::value;
        case DataType::Int32:
        case DataType::Int16:
        case DataType::Int8:
            return std::is_same<T, int32_t>::value;
        case DataType::Uint32:
        case DataType::Uint16:
        case DataType::Uint8:
            return std::is_same<T, uint32_t>::value;
        default:
            CKW_THROW_MSG("Unknown data type!");
            break;
    }
}

// Necessary instantiations for compiler to recognize
template ConstantData::ConstantData(std::initializer_list<std::initializer_list<int32_t>>, DataType);
template ConstantData::ConstantData(std::initializer_list<std::initializer_list<uint32_t>>, DataType);
template ConstantData::ConstantData(std::initializer_list<std::initializer_list<bool>>, DataType);
template ConstantData::ConstantData(std::initializer_list<std::initializer_list<float>>, DataType);

template bool ConstantData::validate<int32_t>(DataType);
template bool ConstantData::validate<uint32_t>(DataType);
template bool ConstantData::validate<bool>(DataType);
template bool ConstantData::validate<float>(DataType);

const std::vector<std::vector<std::string>> &ConstantData::values() const
{
    return _values;
}

DataType ConstantData::data_type() const
{
    return _data_type;
}

} // namespace ckw