diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-04 18:08:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-16 18:15:30 +0100 |
commit | 93d4c566b50835fc96e92d378c2bc15d6dbc3e76 (patch) | |
tree | 1e04d449e88d0f9362b6f86711988a360b36b977 | |
parent | 86aee9330ad9979431bf174276388c72b6b06803 (diff) | |
download | guix-93d4c566b50835fc96e92d378c2bc15d6dbc3e76.tar.gz |
gnu: prusa-slicer: Mark as tunable. wip-cpu-tuning
* gnu/packages/engineering.scm (prusa-slicer)[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 709b6d2864..fa82448736 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -3121,4 +3121,7 @@ visualization, matrix manipulation.") (synopsis "G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.)") (description "PrusaSlicer takes 3D models (STL, OBJ, AMF) and converts them into G-code instructions for FFF printers or PNG layers for mSLA 3D printers.") - (license license:agpl3))) + (license license:agpl3) + + ;; Mark as tunable to take advantage of SIMD code in Eigen and in libigl. + (properties '((tunable? . #t))))) |