summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-12-04 18:07:54 +0100
committerLudovic Courtès <ludo@gnu.org>2021-12-16 18:15:30 +0100
commit86aee9330ad9979431bf174276388c72b6b06803 (patch)
tree9cce237a4806c33d40ceafd9d9afaa98770a1520
parente86a9d84e283c99b23ec8fceb019d67107543d70 (diff)
gnu: libfive: Mark as tunable.
* gnu/packages/engineering.scm (libfive)[properties]: New field.
-rw-r--r--gnu/packages/engineering.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index edc0f51d8d..709b6d2864 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -829,7 +829,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")