46a12e42489b0f73c6830138a4c6fea5f68198c5
[platform/core/ml/nnfw.git] / compiler / souschef / include / souschef / Dataset.h
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *    http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __SOUSCHEF_DATASET_H__
18 #define __SOUSCHEF_DATASET_H__
19
20 #include <vector>
21
22 namespace souschef
23 {
24
25 template <typename T> class Dataset
26 {
27 public:
28   Dataset(const std::vector<T> &vec) : _vec{vec}
29   {
30     // DO NOTHING
31   }
32
33 public:
34   Dataset(std::vector<T> &&vec) : _vec{std::move(vec)}
35   {
36     // DO NOTHING
37   }
38
39 public:
40   template <typename Func> auto map(Func f) const -> Dataset<decltype(f(std::declval<T>()))>
41   {
42     using U = decltype(f(std::declval<T>()));
43     std::vector<U> res;
44
45     for (const auto &elem : _vec)
46     {
47       res.emplace_back(f(elem));
48     }
49
50     return Dataset<U>(std::move(res));
51   }
52
53 public:
54   const std::vector<T> &vectorize(void) const { return _vec; }
55
56 private:
57   std::vector<T> _vec;
58 };
59
60 } // namespace souschef
61
62 #endif // __SOUSCHEF_DATASET_H__