From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39438) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dqk25-0008KX-S1 for guix-patches@gnu.org; Sat, 09 Sep 2017 13:59:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dqk23-0003eP-Ku for guix-patches@gnu.org; Sat, 09 Sep 2017 13:59:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49150) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dqk23-0003eK-HG for guix-patches@gnu.org; Sat, 09 Sep 2017 13:59:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dqk23-0003Qv-AE for guix-patches@gnu.org; Sat, 09 Sep 2017 13:59:03 -0400 Subject: [bug#27344] [PATCH v3 5/8] gnu: Add xyce-parallel. Resent-Message-ID: From: Theodoros Foradis Date: Sat, 9 Sep 2017 20:57:49 +0300 Message-Id: <20170909175752.8566-5-theodoros@foradis.org> In-Reply-To: <20170909175752.8566-1-theodoros@foradis.org> References: <87lglnery8.fsf@foradis.org> <20170909175752.8566-1-theodoros@foradis.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27344@debbugs.gnu.org * gnu/packages/engineering.scm (xyce-parallel): New variable. --- gnu/packages/engineering.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 6e275fd19..32d087279 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1367,3 +1367,40 @@ of large-scale, complex multi-physics engineering and scientific problems. capable of solving extremely large circuit problems by supporting large-scale parallel computing platforms. It also supports serial execution.") (license license:gpl3+))) + +(define trilinos-parallel-xyce + (package (inherit trilinos-serial-xyce) + (name "trilinos-parallel-xyce") + (arguments + `(,@(substitute-keyword-arguments (package-arguments trilinos-serial-xyce) + ((#:configure-flags flags) + `(append (list "-DTrilinos_ENABLE_ShyLU=ON" + "-DTrilinos_ENABLE_Zoltan=ON" + "-DTPL_ENABLE_MPI=ON") + ,flags))))) + (inputs + `(("mpi" ,openmpi) + ,@(package-inputs trilinos-serial-xyce))))) + +(define-public xyce-parallel + (package (inherit xyce-serial) + (name "xyce-parallel") + (arguments + `(,@(substitute-keyword-arguments (package-arguments xyce-serial) + ((#:configure-flags flags) + `(list "CXXFLAGS=-O3 -std=c++11" + "CXX=mpiCC" + "CC=mpicc" + "F77=mpif77" + "--enable-mpi" + "--enable-isorropia=no" + "--enable-zoltan=no" + (string-append + "ARCHDIR=" + (assoc-ref %build-inputs "trilinos"))))))) + (propagated-inputs + `(("mpi" ,openmpi))) + (inputs + `(("trilinos" ,trilinos-parallel-xyce) + ,@((@ (srfi srfi-1) alist-delete) "trilinos" + (package-inputs xyce-serial)))))) -- 2.13.4