Package manager for HPC systems
Spack is a configurable Python-based HPC package manager, automating the installation and fine-tuning of simulations and libraries. It operates on a wide variety of HPC platforms and enables users to build many code configurations. Software installed by Spack runs correctly regardless of environment, and file management is streamlined. Spack can install many variants of the same build using different compilers, options, and MPI implementations.
- Links to network:cluster / spack
- Has a link diff
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout home:mslacken:sp/spack && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
Adapt-shell-scripts-that-set-up-the-environment-fo |
0000004933 4.82 KB | |
Add-support-for-container-building-using-a-SLE-bas |
0000001105 1.08 KB | |
Fix-Spinx-configuration-to-avoid-throwing-errors.p |
0000001118 1.09 KB | |
Fix-error-during-documentation-build-due-to-recurs |
0000000931 931 Bytes | |
Make-spack-paths-compliant-to-distro-installation. |
0000001633 1.59 KB | |
README-oo-wiki | 0000005329 5.2 KB | |
README.SUSE | 0000000877 877 Bytes | |
Set-modules-default-to-lmod.patch | 0000000801 801 Bytes | |
_constraints | 0000000205 205 Bytes | |
_link | 0000000123 123 Bytes | |
_multibuild | 0000000052 52 Bytes | |
added-target-and-os-calls-to-output-of-spack-spec- |
0000002980 2.91 KB | |
objects.inv | 0000112726 110 KB | |
run-find-external.sh.in | 0000002589 2.53 KB | |
spack-0.20.0.tar.gz | 0009685007 9.24 MB | |
spack-rpmlintrc | 0000000886 886 Bytes | |
spack.changes | 0000028351 27.7 KB | |
spack.spec | 0000019783 19.3 KB | |
spack_get_libs.sh | 0000002709 2.65 KB |
Revision 66 (latest revision is 74)
Christian Goll (mslacken)
committed
(revision 66)
- Update to version 0.20.0 with the following features: * Exact versions: Spack did not previously have a way to distinguish a version if it was a prefix of some other version. For example, @3.2 would match 3.2, 3.2.1, 3.2.2, etc. You can now match exactly 3.2 with @=3.2. This is useful, for example, if you need to patch only the 3.2 version of a package * More stable concretization: Now, spack concretize will only concretize the new portions of the environment and will not change existing parts of an environment unless you specify --force. This has always been true for unify:false, but not for unify:true and unify:when_possible environments. * The concretizer has a new --reuse-deps argument that only reuses dependencies. That is, it will always treat the roots of your environment as it would with --fresh. This allows you to upgrade just the roots of your environment while keeping everything else stable * Specs in buildcaches can be referenced by hash: Previously, you could run spack buildcache list and see the hashes in buildcaches, but referring to them by hash would fail. You can now run commands like spack spec and spack install and refer to buildcache hashes directly, e.g. spack install /abc123 * New package and buildcache index websites Our public websites for searching packages have been completely revamped and updated. You can check them out here: Package Index: https://packages.spack.io Buildcache Index: https://cache.spack.io Both are searchable and more interactive than before. Currently major releases are shown; UI for browsing develop snapshots is coming soon. * Default CMake and Meson build types are now Release: Spack has historically defaulted to building with optimization and debugging, but packages like llvm can be enormous with debug turned on. Our default build type for all Spack packages is now Release. This has a number of benefits:
Comments 0