diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-03 23:29:04 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-01-01 15:23:53 +0100 |
commit | 24667081ad49f327932308f9cc06d93a9be0c80a (patch) | |
tree | aa063b02ef37cd9e30859cba4740bb6deb795014 /gnu/packages | |
parent | 182b97dac00d57f917e87d7f03e22f56bc7927d0 (diff) | |
download | guix-24667081ad49f327932308f9cc06d93a9be0c80a.tar.gz guix-24667081ad49f327932308f9cc06d93a9be0c80a.zip |
gnu: ceres-solver: Mark as tunable.
* gnu/packages/maths.scm (ceres)[properties]: New field.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/maths.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 3ed766c502..ba9b6cb415 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2475,7 +2475,10 @@ can solve two kinds of problems: @item non-linear least squares problems with bounds constraints; @item general unconstrained optimization problems. @end enumerate\n") - (license license:bsd-3))) + (license license:bsd-3) + + ;; Mark as tunable to take advantage of SIMD code in Eigen. + (properties `((tunable? . #t))))) ;; For a fully featured Octave, users are strongly recommended also to install ;; the following packages: less, ghostscript, gnuplot. |