Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / libs / benchmark / include / benchmark / Phase.h
1 /*
2  * Copyright (c) 2019 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 __NNFW_BENCHMARK_PHASE_H__
18 #define __NNFW_BENCHMARK_PHASE_H__
19
20 #include "Types.h"
21
22 #include <cstdint>
23 #include <string>
24 #include <vector>
25
26 namespace benchmark
27 {
28
29 struct Phase
30 {
31   Phase(const std::string &t, uint32_t c) : tag(t), count(c) { time.reserve(count); }
32
33   const std::string tag;
34   uint32_t count;
35   std::vector<uint64_t> time;                                // us
36   std::vector<uint32_t> memory[MemoryType::END_OF_MEM_TYPE]; // kB
37 };
38
39 struct PhaseOption
40 {
41   bool memory = false;
42   bool memory_gpu = false; // very specific...
43   int run_delay = -1;      // ms
44   int memory_interval = 5; // ms
45 };
46
47 } // namespace benchmark
48
49 namespace std
50 {
51
52 template <> struct hash<benchmark::PhaseEnum>
53 {
54   size_t operator()(benchmark::PhaseEnum value) const noexcept
55   {
56     using type = typename std::underlying_type<benchmark::PhaseEnum>::type;
57     return hash<type>()(static_cast<type>(value));
58   }
59 };
60
61 } // namespace std
62
63 #endif // __NNFW_BENCHMARK_PHASE_H__