fixed styling errors detected by pylint

work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3878]
This commit is contained in:
Guillaume Raffy 2024-06-20 11:51:53 +02:00
parent f87e564528
commit dc897e9225
1 changed files with 5 additions and 5 deletions

View File

@ -75,7 +75,7 @@ class StopWhenConverged(IStarBencherStopCondition):
return do_stop
class StarBencher():
class StarBencher(): # pylint: disable=function-redefined (false positive)
'''
the 'star' term comes from hpl's stadgemm benchmark, where we launch `n` independent programs on `n cores`
'''
@ -208,10 +208,10 @@ def test_starbencher():
mean_duration = bench.run()
print(mean_duration)
if False:
bench = StarBencher(run_command=['ls', '/tmp'], num_cores_per_run=1, num_parallel_runs=2, max_num_cores=2, max_error=0.0001)
mean_duration = bench.run()
print(mean_duration)
# if False:
# bench = StarBencher(run_command=['ls', '/tmp'], num_cores_per_run=1, num_parallel_runs=2, max_num_cores=2, max_error=0.0001)
# mean_duration = bench.run()
# print(mean_duration)
# end of starbencher