diff options
-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 |