Skip to content

Commit dac5d20

Browse files
committed
Documentation updated, doxygen file headers added.
Updated documentation to match the library version
1 parent 8171141 commit dac5d20

File tree

6 files changed

+115
-28
lines changed

6 files changed

+115
-28
lines changed

INSTALL

+14-9
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,24 @@ You can now proceed as with a source package:
2323

2424
Build configuration
2525
-------------------
26-
By default, the library will be built with support for all devices. If necessary
26+
By default, the library will be built with support for all devices,
27+
except for those accessed through a network connection. If necessary
2728
header files for a specific device type are not found on the build machine,
2829
support will be automatically disabled for that type.
2930

30-
It is also possible to manually disable support for a specific device through
31+
It is also possible to manually enable/disable support for a specific device through
3132
`configure` flags:
3233

33-
--without-mic Disable Intel Many Integrated Core support (default:
34-
enabled if present)
34+
--with-dummy Enable Dummy testing support (default: disabled)
35+
--without-mic Disable Intel Many Integrated Core support
36+
(default: enabled if miclib.h is available)
3537
--without-rapl Disable Intel Running Average Power Limit support
36-
(default: enabled)
37-
--without-nvml Disable NVIDIA Management Library support (default:
38-
enabled if present)
39-
40-
Check the output of `configure --help` for a full list of configuration
38+
(default: enabled)
39+
--without-nvml Disable NVIDIA Management Library support
40+
(default: enabled if nvml.h is available)
41+
--with-sb-pdu Enable Schleifenbauer PDU support (default: disabled)
42+
--without-odroid Disable Odroid support (default: enabled)
43+
--with-labee Enable Labee support (default: disabled)
44+
45+
Check the output of `./configure --help` for a full list of configuration
4146
parameters.

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@ kinds of hardware.
77

88
The following devices are currently supported:
99

10-
* Dummy devices for testing purposes
10+
* Dummy devices for testing purposes
1111

12-
* Intel CPUs starting from Sandy Bridge
13-
(through the Running Average Power Limit interface)
12+
* Intel CPUs starting from Sandy Bridge
13+
(through the Running Average Power Limit interface)
1414

15-
* Recent Nvidia Tesla and Quadro GPUs
16-
(through NVIDIA Management Library)
15+
* Recent Nvidia Tesla and Quadro GPUs
16+
(through NVIDIA Management Library)
1717

18-
* Intel Xeon Phi MICs
19-
(through the Intel Manycore Platform Software Stack (3.x+), from the host device)
18+
* Intel Xeon Phi MICs
19+
(through the Intel Manycore Platform Software Stack (3.x+), from the host device)
2020

21-
* Schleifenbauer PDUs
22-
(through the Schleifenbauer socket API)
21+
* Schleifenbauer PDUs
22+
(through the Schleifenbauer socket API)
2323

24-
* Odroid-XU3 integrated sensors
25-
(through linux sysfs)
24+
* Odroid-XU3 integrated sensors
25+
(through linux sysfs)
2626

27-
* Poznań Supercomputing and Networking Center Labee XML Interface
28-
(through its REST API)
27+
* Poznań Supercomputing and Networking Center Labee XML Interface
28+
(through its REST API)
2929

3030
EML automatically discovers necessary libraries and available devices at runtime.
3131

doc/configuration.md

+74-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,82 @@ nvml {
3939
rapl {
4040
disabled = true
4141
}
42-
~~~
43-
For available values, please check the driver code for now.
4442
43+
# Nested configurations are configured as follows
44+
sb-pdu {
45+
46+
}
47+
~~~
4548
Default values will be used for any missing entries, except for values made
4649
necessary for existing entries (such as the hostname field for a network device
4750
that is declared by the configuration). In particular, loading an empty config
4851
file has no effect.
52+
53+
Available Configuration Values
54+
------------------------------
55+
The driver configuration section is the .name value defined in its specified driver struct.
56+
57+
- Common Values
58+
- **disabled**. Determines wether to use the module or not.<br/>
59+
Values: true, false.<br/>
60+
Default: false, except for the dummy module.
61+
- **sampling_interval**. Determines the sampling interval for the driver. Check each module for its default value.
62+
Values: numerical value of nanoseconds. 100000000 = 100ms, 100000 = 100μs
63+
64+
- dummy (Dummy testing driver)
65+
- **disabled**. This module is disabled by default.<br/>
66+
Default: true
67+
- **sampling_interval**.<br/>
68+
Default: 100000000, i.e. 100ms.
69+
70+
- rapl (Intel RAPL)
71+
- **sampling_interval**.<br/>
72+
Default: 1000000, i.e. ~1ms.
73+
74+
- nvml (Nvidia Management Library)
75+
- **sampling_interval**.<br/>
76+
Default: 16000000, i.e. ~16ms. Adjusted for Fermi power readings.
77+
78+
- mic (Intel MIC)
79+
- **sampling_interval**.<br/>
80+
Default: 50000000, i.e. ~50ms.
81+
82+
- sb-pdu (Schleifenbauer PDUs)
83+
- **sampling_interval**.<br/>
84+
Default: 1000000000, i.e. ~1s.
85+
- **device**. SBPDU device specification.
86+
- **host**. Host IPv4.<br/>
87+
Default: 192.168.1.200
88+
- **port**.<br/>
89+
Default: 7783
90+
- **rc4key**. RC4 encryption key.<br/>
91+
Default: 000000000000
92+
93+
- odroid (Odroid-XU3)
94+
- **sampling_interval**.<br/>
95+
Default: 263808000, i.e. ~263808μs as defined by /sys/bus/i2c/drivers/INA231/*/update_period.
96+
97+
- labee (Poznań Supercomputing and Networking Center Labee XML Interface). Currently only one device per node is supported.
98+
- **sampling_interval**.<br/>
99+
Default: 150000000, i.e. ~150ms.
100+
- **hostname**. Name of the host to measure.<br/>
101+
Default: ""
102+
- **nodelist_file**. Path to the file with the hardware labels mapped to hostnames as comma separated values.<br/>
103+
Example file:<br/>
104+
~~~
105+
hw-id1,hostname1
106+
hw-id2,hostname2
107+
hw-id3,hostname3
108+
hw-id4,hostname4
109+
~~~
110+
Default: ./nodelist
111+
- **api_url**. Rest API full url.<br/>
112+
Default: http://10.11.12.242/REST/node
113+
- **user**. API username.<br/>
114+
Default: user
115+
- **password**. API password.<br/>
116+
Default: password
117+
- **power_attribute**. Key in the XML response that contains the measurement we want to query.<br/>
118+
Default: actualPowerUsage
119+
120+

src/driver-dummy.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
/*
1+
/*!
22
* Copyright (c) 2017 Universidad de La Laguna <cap@pcg.ull.es>
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms of the GNU General Public License as published by the Free
66
* Software Foundation; either version 2 of the License, or (at your option)
77
* any later version.
8+
*
9+
* \author Alberto Cabrera Perez <Alberto.Cabrera@ull.edu.es>
10+
* \date jun-2018
11+
* \brief Driver implementation for the dummy module
812
*/
913

1014
//feature test macro for pread() in unistd.h

src/driver-labee.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
1+
/*!
22
* Copyright (c) 2018 Universidad de La Laguna <cap@pcg.ull.es>
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms of the GNU General Public License as published by the Free
66
* Software Foundation; either version 2 of the License, or (at your option)
77
* any later version.
88
*
9-
* @author: Alberto Cabrera Perez <Alberto.Cabrera@ull.edu.es>
9+
* \author Alberto Cabrera Perez <Alberto.Cabrera@ull.edu.es>
10+
* \date jun-2018
11+
* \brief Driver implementation for the Labee module using curl and xml
1012
*/
1113

1214
#define _XOPEN_SOURCE 500

src/driver-odroid.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
/*
1+
/*!
22
* Copyright (c) 2017 Universidad de La Laguna <cap@pcg.ull.es>
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms of the GNU General Public License as published by the Free
66
* Software Foundation; either version 2 of the License, or (at your option)
77
* any later version.
8+
*
9+
* \author Alberto Cabrera <Alberto.Cabrera@ull.edu.es>
10+
* \date jun-2017
11+
* \brief Driver implementation for the odroid module using sysfs
812
*/
913

1014
//feature test macro for pread() in unistd.h

0 commit comments

Comments
 (0)