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
Branches
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ class Lperf:
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 &'
def start(self):
......
......@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="expetator",
version="0.1.7",
version="0.2.1",
author="Georges Da Costa",
author_email="georges.da-costa@irit.fr",
description="A framework for monitoring HPC applications using DVFS",
......@@ -19,6 +19,8 @@ setuptools.setup(
"Operating System :: OS Independent",
],
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,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment