We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The PUMI cmake command fails when it can't find SimParititonedMesh-mpi as done here:
SimParititonedMesh-mpi
core/cmake/FindSimModSuite.cmake
Lines 101 to 104 in fc75be0
The base install of SimModSuite via Spack does not appear to include this lib. (to be confirmed)
base
The text was updated successfully, but these errors were encountered:
I would change: https://github.com/spack/spack/blob/develop/var/spack/repos/builtin/packages/pumi/package.py#L97-L98 to:
if self.spec.satisfies("simmodsuite=base"): args.append("-DENABLE_SIMMETRIX=ON") mpi_id = spec["mpi"].name + spec["mpi"].version.up_to(1).string args.append("-DSIM_MPI=" + mpi_id)
and change also https://github.com/spack/spack/blob/develop/var/spack/repos/builtin/packages/pumi/package.py#L104 to mpi_id = spec["mpi"].name + spec["mpi"].version.up_to(1).string
mpi_id = spec["mpi"].name + spec["mpi"].version.up_to(1).string
Because the precompiled libraries are: libSimPartitionWrapper-mpich3.a, libSimPartitionWrapper-openmpi4.a or libSimPartitionWrapper-openmpi3.a
libSimPartitionWrapper-mpich3.a, libSimPartitionWrapper-openmpi4.a or libSimPartitionWrapper-openmpi3.a
By the way, it would be nice it would be possible to fine-tune the install with simmodsuite, e.g. compiling
args.append("-DSIM_DISCRETE=ON")
but without:
args.append("-DSIM_ACIS=ON") args.append("-DSIM_PARASOLID=ON")
Sorry, something went wrong.
No branches or pull requests
The PUMI cmake command fails when it can't find
SimParititonedMesh-mpi
as done here:core/cmake/FindSimModSuite.cmake
Lines 101 to 104 in fc75be0
The
base
install of SimModSuite via Spack does not appear to include this lib. (to be confirmed)The text was updated successfully, but these errors were encountered: