From 8116836c7d263f9cf1f726e9d79b1ce8580c4d5c Mon Sep 17 00:00:00 2001 From: Georges Da Costa <dacosta@irit.fr> Date: Mon, 20 Dec 2021 18:44:22 +0100 Subject: [PATCH] Uses the last link for downloading NPB --- expetator/benchmarks/npbbench.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/expetator/benchmarks/npbbench.py b/expetator/benchmarks/npbbench.py index 12c294e..e312b5c 100644 --- a/expetator/benchmarks/npbbench.py +++ b/expetator/benchmarks/npbbench.py @@ -65,7 +65,7 @@ class NpbBench: target_file = os.path.expanduser('~/.local/tmp/NPB3.4-MPI.tar.gz') if not os.path.isfile(target_file): os.makedirs(os.path.expanduser('~/.local/tmp/'), exist_ok=True) - executor.local('wget https://www.nas.nasa.gov/assets/npb/NPB3.4.tar.gz -O %s' % target_file) + executor.local('wget https://www.nas.nasa.gov/assets/nas/npb/NPB3.4.tar.gz -O %s' % target_file) executor.local('tar xfC %s /tmp/' % target_file, shell=False) executor.local('cp /tmp/NPB3.4/NPB3.4-MPI/config/make.def.template /tmp/NPB3.4/NPB3.4-MPI/config/make.def') executor.local("sed -i 's/mpif90/mpif90 -fallow-argument-mismatch -fallow-invalid-boz/' /tmp/NPB3.4/NPB3.4-MPI/config/make.def") diff --git a/setup.py b/setup.py index a3f0b18..4582e3a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="expetator", - version="0.3.7", + version="0.3.8", author="Georges Da Costa", author_email="georges.da-costa@irit.fr", description="A framework for monitoring HPC applications using DVFS", -- GitLab