fhe_stats.h
1 /* Copyright (C) 2019-2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 
13 #ifndef HELIB_STATS_H
14 #define HELIB_STATS_H
15 
16 #include <vector>
17 #include <iostream>
18 
19 namespace helib {
20 
22 {
23  const char* name;
24  long count;
25  double sum;
26  double max;
27 
28  std::vector<double> saved_values;
29  // save all values --- only used if explicitly requested
30 
31  static std::vector<fhe_stats_record*> map;
32 
33  fhe_stats_record(const char* _name);
34  void update(double val);
35  void save(double val);
36 };
37 
38 #define HELIB_STATS_UPDATE(name, val) \
39  do { \
40  if (fhe_stats) { \
41  static fhe_stats_record _local_stats_record(name); \
42  _local_stats_record.update(val); \
43  } \
44  } while (0)
45 
46 #define HELIB_STATS_SAVE(name, val) \
47  do { \
48  if (fhe_stats) { \
49  static fhe_stats_record _local_stats_record(name); \
50  _local_stats_record.save(val); \
51  } \
52  } while (0)
53 
54 void print_stats(std::ostream& s);
55 
56 const std::vector<double>* fetch_saved_values(const char*);
57 
58 extern bool fhe_stats;
59 
60 } // namespace helib
61 
62 #endif
std::vector< double > saved_values
Definition: fhe_stats.h:28
double sum
Definition: fhe_stats.h:25
static std::vector< fhe_stats_record * > map
Definition: fhe_stats.h:31
void update(double val)
Definition: fhe_stats.cpp:34
bool fhe_stats
Definition: fhe_stats.cpp:21
long count
Definition: fhe_stats.h:24
const char * name
Definition: fhe_stats.h:23
Definition: fhe_stats.h:22
void print_stats(std::ostream &s)
Definition: fhe_stats.cpp:54
const std::vector< double > * fetch_saved_values(const char *)
Definition: fhe_stats.cpp:70
void save(double val)
Definition: fhe_stats.cpp:43
Definition: apiAttributes.h:21
fhe_stats_record(const char *_name)
Definition: fhe_stats.cpp:26
double max
Definition: fhe_stats.h:26