[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/12: gnu: vtk: Enable OpenMP, TBB, and Open MPI support.
From: |
guix-commits |
Subject: |
03/12: gnu: vtk: Enable OpenMP, TBB, and Open MPI support. |
Date: |
Tue, 21 Mar 2023 14:15:24 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit eff652793f3e562ae528dbc3efee028ccb08f8d4
Author: Ludovic Courtès <ludovic.courtes@inria.fr>
AuthorDate: Tue Mar 14 09:52:09 2023 +0100
gnu: vtk: Enable OpenMP, TBB, and Open MPI support.
* gnu/packages/image-processing.scm (vtk)[arguments]: Pass options to
enable OpenMP, TBB, and MPI.
[inputs]: Add OPENMPI.
[propagated-inputs]: Add TBB.
---
gnu/packages/image-processing.scm | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/image-processing.scm
b/gnu/packages/image-processing.scm
index 0562376291..c8786d8edd 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 John Darrington <jmd@gnu.org>
;;; Copyright © 2017, 2019, 2022 Ricardo Wurmus <rekado@elephly.net>
-;;; Copyright © 2014, 2021-2022 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2014, 2021-2023 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
@@ -380,6 +380,10 @@ many popular formats.")
"-DVTK_MODULE_ENABLE_VTK_RenderingExternal=YES" ;
For F3D
"-DVTK_WRAP_PYTHON=ON"
"-DVTK_PYTHON_VERSION:STRING=3"
+
+ "-DVTK_SMP_ENABLE_OPENNMP=ON"
+ "-DVTK_SMP_ENABLE_TBB=ON"
+ "-DVTK_USE_MPI=ON"
)
#:tests? #f)) ;XXX: test data not included
(inputs
@@ -402,17 +406,20 @@ many popular formats.")
mesa
netcdf
libpng
+ libtiff
+ openmpi
proj-7
python
;("pugixml" ,pugixml)
sqlite
- libtiff
xorgproto
zlib))
(propagated-inputs
;; VTK's 'VTK-vtk-module-find-packages.cmake' calls
- ;; 'find_package(THEORA)', which in turns looks for libogg.
- (list libogg))
+ ;; 'find_package(THEORA)', which in turns looks for libogg. Likewise for
+ ;; TBB.
+ (list libogg
+ tbb))
(home-page "https://vtk.org/")
(synopsis "Libraries for 3D computer graphics")
(description
- branch master updated (4f63b4b86d -> 2120c768f2), guix-commits, 2023/03/21
- 01/12: services: static-networking: 'eval-when' for code used at expansion-time., guix-commits, 2023/03/21
- 04/12: gnu: vtk: Remove reference to GCC., guix-commits, 2023/03/21
- 03/12: gnu: vtk: Enable OpenMP, TBB, and Open MPI support.,
guix-commits <=
- 05/12: gnu: fennel: Update to 1.3.0., guix-commits, 2023/03/21
- 06/12: gnu: fnlfmt: Update to 0.3.0., guix-commits, 2023/03/21
- 07/12: gnu: Add dvisvgm., guix-commits, 2023/03/21
- 08/12: gnu: go-filippo-io-age: Update to 1.1.1., guix-commits, 2023/03/21
- 09/12: gnu: pass-age: Update to 1.7.4a1., guix-commits, 2023/03/21
- 10/12: gnu: ssh-to-age: Update to 1.1.2., guix-commits, 2023/03/21
- 12/12: gnu: python-pypandoc: Upgrade to 1.7.5., guix-commits, 2023/03/21
- 02/12: gnu: gnulib: Depend on git-minimal/pinned., guix-commits, 2023/03/21
- 11/12: gnu: pocl: Update to 3.1, guix-commits, 2023/03/21