diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-04-09 15:58:00 +0200 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-04-12 08:39:15 +0200 |
commit | 4dd5bcb3ef31ab99f7011c4add9e8dbd19404f64 (patch) | |
tree | 5a5a821ad9ec5cedb789ad6f41df66455ba7c7a3 /var | |
parent | dc44642bfb46610b5fd5a5120ada71705d59f553 (diff) | |
download | spack-4dd5bcb3ef31ab99f7011c4add9e8dbd19404f64.tar.gz spack-4dd5bcb3ef31ab99f7011c4add9e8dbd19404f64.tar.bz2 spack-4dd5bcb3ef31ab99f7011c4add9e8dbd19404f64.tar.xz spack-4dd5bcb3ef31ab99f7011c4add9e8dbd19404f64.zip |
npb: remove custom phases
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/npb/package.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/npb/package.py b/var/spack/repos/builtin/packages/npb/package.py index 6040e3b2f3..473d59dcb2 100644 --- a/var/spack/repos/builtin/packages/npb/package.py +++ b/var/spack/repos/builtin/packages/npb/package.py @@ -2,7 +2,6 @@ # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: (Apache-2.0 OR MIT) - import numbers from spack import * @@ -19,6 +18,7 @@ def is_integral(x): class Npb(MakefilePackage): """The NAS Parallel Benchmarks (NPB) are a small set of programs designed to help evaluate the performance of parallel supercomputers. + The benchmarks are derived from computational fluid dynamics (CFD) applications and consist of five kernels and three pseudo-applications in the original "pencil-and-paper" specification (NPB 1). The benchmark @@ -26,7 +26,8 @@ class Npb(MakefilePackage): adaptive mesh, parallel I/O, multi-zone applications, and computational grids. Problem sizes in NPB are predefined and indicated as different classes. Reference implementations of NPB are available in commonly-used - programming models like MPI and OpenMP (NPB 2 and NPB 3).""" + programming models like MPI and OpenMP (NPB 2 and NPB 3). + """ homepage = "https://www.nas.nasa.gov/publications/npb.html" url = "https://www.nas.nasa.gov/assets/npb/NPB3.3.1.tar.gz" @@ -92,8 +93,6 @@ class Npb(MakefilePackage): depends_on('mpi@2:', when='implementation=mpi') - phases = ['edit', 'install'] - # Cannot be built in parallel parallel = False |