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

Corrects output from nodeepsleep leverage

parent 9fc23e3e
Branches
No related tags found
No related merge requests found
...@@ -56,12 +56,12 @@ class Nodeepsleep: ...@@ -56,12 +56,12 @@ class Nodeepsleep:
def get_state(self): def get_state(self):
'Returns the current state' 'Returns the current state'
return (self.curr_mode) return self.curr_mode
def state_to_str(self): def state_to_str(self):
'Returns the current min and max frequencies as a string' 'Returns the current state as a string'
return '%s' % self.curr_mode return '%s' % self.curr_mode
def get_labels(self): def get_labels(self):
'Returns the label for frequenciess' 'Returns the label for the C0 state'
return 'C0only' return ('C0only', )
...@@ -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.2.6", version="0.2.7",
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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment