Skip to content

Commit

Permalink
Tune description
Browse files Browse the repository at this point in the history
  • Loading branch information
george0st committed Nov 10, 2024
1 parent 7988805 commit aa03f66
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions qgate_perf/parallel_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ def run_bulk_executor(self,
:param executor_list: list of executors for execution in format [[processes, threads, 'label'], ...]
:param run_setup: setup of execution
:param sleep_between_bulks: sleep between bulks
:param performance_detail: add to the return also performance details (default is False)
:return: return performance results with key information about the 'state'. The state
True - all executions was without exceptions, False - some exceptions.
:param performance_detail: add to the return also performance details or only state info (default is False - only state info)
:return: return performance results (see the param 'performance_detail') with key information about the 'state'.
The state True - all executions was without exceptions/errors, False - some exceptions.
"""
performance = PerfResults()
count = 0
Expand Down Expand Up @@ -173,9 +173,9 @@ def run_executor(self, executor_list = [[2, 1, '1x thread'], [2, 2, '2x thread']
:param executor_list: list of executors for execution in format [[processes, threads, 'label'], ...]
:param run_setup: setup of execution
:param performance_detail: add to the return also performance details (default is False)
:return: return performance results with key information about the 'state'. The state
True - all executions was without exceptions, False - some exceptions.
:param performance_detail: add to the return also performance details or only state info (default is False - only state info)
:return: return performance results (see the param 'performance_detail') with key information about the 'state'.
The state True - all executions was without exceptions/errors, False - some exceptions.
"""
performance = PerfResults()
output = None
Expand Down Expand Up @@ -232,9 +232,9 @@ def run(self, processes = 2, threads = 2, run_setup: RunSetup = None, performanc
:param processes: how much processes will be used
:param threads: how much threads will be used
:param run_setup: setup of execution
:param performance_detail: add to the return also performance details (default is False)
:return: return performance results with key information about the 'state'. The state
True - all executions was without exceptions, False - some exceptions.
:param performance_detail: add to the return also performance details or only state info (default is False - only state info)
:return: return performance results (see the param 'performance_detail') with key information about the 'state'.
The state True - all executions was without exceptions/errors, False - some exceptions.
"""
performance = PerfResults()
output = None
Expand Down Expand Up @@ -285,9 +285,9 @@ def one_run(self, run_setup: RunSetup = None, performance_detail = False) -> Per
""" Run test, only one call, execution in new process, with standard write outputs
:param run_setup: setting for run
:param performance_detail: add to the return also performance details (default is False)
:return: return performance results with key information about the 'state'. The state
True - all executions was without exceptions, False - some exceptions.
:param performance_detail: add to the return also performance details or only state info (default is False - only state info)
:return: return performance results (see the param 'performance_detail') with key information about the 'state'.
The state True - all executions was without exceptions/errors, False - some exceptions.
"""

# setup minimalistic values
Expand Down

0 comments on commit aa03f66

Please sign in to comment.