Package Details: pastix 6.3.2-4

Git Clone URL: https://aur.archlinux.org/pastix.git (read-only, click to copy)
Package Base: pastix
Description: High performance parallel solver for very large sparse linear systems based on direct methods
Upstream URL: https://gitlab.inria.fr/solverstack/pastix
Keywords: computing scientific
Licenses: LGPL-3.0-only
Provides: libpastix.so, libpastix_kernels.so, libspm.so, libspmf.so
Submitter: myles
Maintainer: lahwaacz
Last Packager: lahwaacz
Votes: 1
Popularity: 0.000000
First Submitted: 2015-10-03 13:29 (UTC)
Last Updated: 2024-04-27 21:59 (UTC)

Latest Comments

« First ‹ Previous 1 2

ddemidov commented on 2015-10-30 10:22 (UTC)

There is inconsistency between scotch and pastix integer types. Scotch integer type is 32bit integers and pastix uses 64bit. This results in the following runtime errorr: ERROR: Inconsistent integer type The following change to pastix config.in solves the problem: diff --git a/config.in b/config.in.new index 5e2943a..4593f92 100644 --- a/config.in +++ b/config.in.new @@ -60,11 +60,11 @@ CFPROG := ${CFPROG} -fPIC #VERSIONINT = _long #CCTYPES = -DFORCE_LONG -DINTSIZELONG #--------------------------- -#VERSIONINT = _int32 -#CCTYPES = -DINTSIZE32 +VERSIONINT = _int32 +CCTYPES = -DINTSIZE32 #--------------------------- -VERSIONINT = _int64 -CCTYPES = -DINTSSIZE64 +#VERSIONINT = _int64 +#CCTYPES = -DINTSSIZE64 ################################################################### # FLOAT TYPE #