-
Notifications
You must be signed in to change notification settings - Fork 2
/
INSTALL
46 lines (36 loc) · 1.49 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Installation
============
Installation from source package
--------------------------------
From the extracted directory, run:
./configure
make
make install
Installation from git
---------------------
Generate GNU Build System files first with:
autoreconf -i
You can now proceed as with a source package:
./configure
make
make install
Build configuration
-------------------
By default, the library will be built with support for all devices,
except for those accessed through a network connection. If necessary
header files for a specific device type are not found on the build machine,
support will be automatically disabled for that type.
It is also possible to manually enable/disable support for a specific device through
`configure` flags:
--with-dummy Enable Dummy testing support (default: disabled)
--without-mic Disable Intel Many Integrated Core support
(default: enabled if miclib.h is available)
--without-rapl Disable Intel Running Average Power Limit support
(default: enabled)
--without-nvml Disable NVIDIA Management Library support
(default: enabled if nvml.h is available)
--with-sb-pdu Enable Schleifenbauer PDU support (default: disabled)
--without-odroid Disable Odroid support (default: enabled)
--with-labee Enable Labee support (default: disabled)
Check the output of `./configure --help` for a full list of configuration
parameters.