diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-04 18:07:54 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-01-01 15:23:54 +0100 |
commit | 65542947541cd59548bbecc6782f118b9cde83ab (patch) | |
tree | 40885b4ea4c5005c8c01224fbf37a35813362d04 | |
parent | 6b704123709d29cdd7e2892b630edc3c7afc1566 (diff) | |
download | guix-65542947541cd59548bbecc6782f118b9cde83ab.tar guix-65542947541cd59548bbecc6782f118b9cde83ab.tar.gz |
gnu: libfive: Mark as tunable.
* gnu/packages/engineering.scm (libfive)[properties]: New field.
-rw-r--r-- | gnu/packages/engineering.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 36ae757175..e930dde40c 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -868,7 +868,10 @@ function calls into the geometry kernel: everything is visible to the user. Even fundamental, primitive shapes are represented as code in the user-level language.") (license (list license:mpl2.0 ;library - license:gpl2+))))) ;Guile bindings and GUI + license:gpl2+)) ;Guile bindings and GUI + + ;; Mark as tunable to take advantage of SIMD code in Eigen. + (properties '((tunable? . #t)))))) (define-public inspekt3d (let ((commit "703f52ccbfedad2bf5240bf8183d1b573c9d54ef") |