diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2023-07-18 13:29:36 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-07-18 14:06:50 +0200 |
commit | 377dc49f2443644866b180b3b162d7d4aab88531 (patch) | |
tree | d1a1235d72f68660d724b20cc7ae2aa228f14a12 /gnu | |
parent | 437687b7151f722bb76b2e9550910e0611572d10 (diff) | |
download | guix-377dc49f2443644866b180b3b162d7d4aab88531.tar.gz |
gnu: insight-toolkit: Mark as tunable.
* gnu/packages/image-processing.scm (insight-toolkit)[properties]: New field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/image-processing.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm index 6a72209f96..965eca82b7 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -1313,6 +1313,12 @@ libraries designed for computer vision research and implementation.") zlib)) (native-inputs (list googletest pkg-config)) + + ;; The 'CMake/ITKSetStandardCompilerFlags.cmake' file normally sets + ;; '-mtune=native -march=corei7', suggesting there's something to be + ;; gained from CPU-specific optimizations. + (properties '((tunable? . #t))) + (home-page "https://github.com/InsightSoftwareConsortium/ITK/") (synopsis "Scientific image processing, segmentation and registration") (description "The Insight Toolkit (ITK) is a toolkit for N-dimensional |