aboutsummaryrefslogtreecommitdiff
path: root/energy_model.h
blob: bb54a17b6deca8c3f9e50fe5118bf2bd54b5261e (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef ENERGY_MODEL_H
#define ENERGY_MODEL_H

struct program_options; /* Defined elsewhere */
struct cpu_topology;

int parse_energy_model(struct program_options *);
void calculate_energy_consumption(struct cpu_topology *cpu_topo, struct program_options *);

#endif