Skip to content
Snippets Groups Projects
Commit 06d0543d authored by Georges Da Costa's avatar Georges Da Costa
Browse files

Corrects the lperf monitoring command

parent 89d28fcd
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ class Lperf: ...@@ -30,7 +30,7 @@ class Lperf:
self.executor = executor self.executor = executor
self.cmdline = '/tmp/bin/lperf stat -x " " -I %s -a -A -e %s' % (self.interval, ' '.join(self.names)) self.cmdline = '/tmp/bin/lperf stat -x " " -I %s -a -A -e %s' % (self.interval, ','.join(self.names))
self.cmdline += ' -o /dev/shm/lperf_monitoring &' self.cmdline += ' -o /dev/shm/lperf_monitoring &'
def start(self): def start(self):
......
...@@ -5,7 +5,7 @@ with open("README.md", "r") as fh: ...@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup( setuptools.setup(
name="expetator", name="expetator",
version="0.1.7", version="0.2.1",
author="Georges Da Costa", author="Georges Da Costa",
author_email="georges.da-costa@irit.fr", author_email="georges.da-costa@irit.fr",
description="A framework for monitoring HPC applications using DVFS", description="A framework for monitoring HPC applications using DVFS",
...@@ -19,6 +19,8 @@ setuptools.setup( ...@@ -19,6 +19,8 @@ setuptools.setup(
"Operating System :: OS Independent", "Operating System :: OS Independent",
], ],
python_requires='>=3.6', python_requires='>=3.6',
package_data={'': ['benchmarks/genericbench/*', 'benchmarks/*tpr', 'benchmarks/*.c', 'benchmarks/*.tgz', 'benchmarks/*.cu', 'leverages/*.[ch]', 'leverages/*.sh', 'leverages/*_mak']}, package_data={'': ['benchmarks/genericbench/*', 'benchmarks/*tpr', 'benchmarks/*.c', 'benchmarks/*.tgz', 'benchmarks/*.cu',
'monitors/*.bz2', 'monitors/*.diff',
'leverages/*.[ch]', 'leverages/*.sh', 'leverages/*_mak']},
include_package_data=True, include_package_data=True,
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment