geopm  3.1.1.dev214+gba4f9f6d
GEOPM - Global Extensible Open Power Manager
ModelParse.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 - 2024 Intel Corporation
3  * SPDX-License-Identifier: BSD-3-Clause
4  */
5 
6 #ifndef MODELPARSE_HPP_INCLUDE
7 #define MODELPARSE_HPP_INCLUDE
8 
9 #include <string>
10 #include <vector>
11 #include <cstdint>
12 
13 #include "geopm_public.h"
14 
15 namespace geopm
16 {
17  void GEOPM_PUBLIC
18  model_parse_config(const std::string config_path, uint64_t &loop_count,
19  std::vector<std::string> &region_name, std::vector<double> &big_o);
20 
21 }
22 
23 #endif
Definition: Accumulator.cpp:12
void model_parse_config(const std::string config_path, uint64_t &loop_count, std::vector< std::string > &region_name, std::vector< double > &big_o)
Definition: ModelParse.cpp:23