diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2016-07-19 04:45:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-07-19 23:03:30 +0200 |
commit | d97c429a34b432bfae4be4bb5c8b727def8eb117 (patch) | |
tree | e0d9bb683441a7d3929a31b33ea6b2044d4b229e /gnu | |
parent | 58d6a1f227a09da0d17c0252978a583ff8e8b38e (diff) | |
download | guix-d97c429a34b432bfae4be4bb5c8b727def8eb117.tar guix-d97c429a34b432bfae4be4bb5c8b727def8eb117.tar.gz |
gnu: atlas: Use cpupower in description.
* gnu/packages/maths.scm (atlas)[description]: Replace 'cpufreq-selector'
with its replacement 'cpupower --governor'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/maths.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 643bce5156..776963e567 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2120,14 +2120,11 @@ Optimization occurs at build time. For this reason, the library is built on the machine where it is installed, without resorting to pre-built substitutes. Before building the library, CPU throttling should be disabled. This can be -done in the BIOS, or, on GNU/Linux, with the following commands: +done in the BIOS, or, on GNU/Linux, with the following command: -cpufreq-selector -g performance -c 0 -... -cpufreq-selector -g performance -c N-1 +# cpupower --governor performance -where N is the number of cores of your CPU. Failure to do so will result in a -library with poor performance.") +Failure to do so will result in a library with poor performance.") (license license:bsd-3))) (define-public glm |