From 0ec6a1e49791334064c1a5945c41d6d318e707f6 Mon Sep 17 00:00:00 2001 From: Adriano Garcia Date: Wed, 18 Oct 2023 18:11:44 -0300 Subject: [PATCH] Revert "Update CLI.rst" This reverts commit 813e180996cd4a63fb244e953ad7e98d2e2788cb --- docs/source/CLI.rst | 126 ++++++++++++++++++++++---------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/docs/source/CLI.rst b/docs/source/CLI.rst index 26ed7c3..8d19fd2 100644 --- a/docs/source/CLI.rst +++ b/docs/source/CLI.rst @@ -216,76 +216,76 @@ Exec - ``-nthreads `` Number of threads. It can be used inside the benchmarks as a global variable. You can insert a single number or a range using the ':' character (e.g. ``-nthreads 1:10``). You can also define iteration step of the range (e.g. ``-nthreads 4:4:16`` would run the benchmarks with 4, 8, 12, and 16 threads). Default value: 1. -- ``-batch `` - It can be used to change the batch size (default: 1). - -- ``-batch-interval `` - It can be used to change the batch time interval. Default = 0 (disabled). - -- ``-frequency `` - A limited number of items will be available for the source per second. - By default, no limit is aplied, which is equivalent to maximum frequency. - The maximum frequency is defined by your system's memory or disk access speed. - -- ``-freq-pattern `` - (pattern,period,max,min). - This argument overwrites the -frequency command and sets a varying frequency for the input stream. - For this argument users need to supply a tuple string: , where pattern can be "wave", "spike", "binary", "increasing" or "decreasing". - Period is the duration in seconds of one cycle of the pattern. - And min is the minimum frequency and max the maximum frequency, defined in items per second. - For the spike pattern users can also set the duration of the spikes as percentage of the period (0-100) (e.g. ). - The default spike duration is 10 percent of the period. - Usage example: ``-freq-pattern wave,10,5,80`` - -- ``-in-memory`` - It runs the application in in-memory mode. - -- ``-latency`` - Print average latency results at the end of the execution. - -- ``-throughput`` - Print the average throughput at the end of the execution. - -- ``-resource-usage`` - It prints the global memory and CPU usage at the end of the execution. - To use it is required to run the benchmark as root or adjust paranoid value. - -- ``-monitor `` (millisecond) - Use this option to monitor latency, throughput, CPU and memory usage. - You must indicate a monitoring time interval in milliseconds (e.g. 250). - -- ``-monitor-thread `` (millisecond) - Use this option to monitor latency, throughput, CPU and memory usage. - It works the same as the ``-monitor`` command above, but it runs the monitoring computations in an individual thread. - It may be used for decreased performance overhead in the application when monitoring with low time intervals. - -- ``-latency-monitor`` - It monitors latency per stage and per item and generates a log file. + - ``-batch `` + It can be used to change the batch size (default: 1). + + - ``-batch-interval `` + It can be used to change the batch time interval. Default = 0 (disabled). + + - ``-frequency `` + A limited number of items will be available for the source per second. + By default, no limit is aplied, which is equivalent to maximum frequency. + The maximum frequency is defined by your system's memory or disk access speed. + + - ``-freq-pattern `` + (pattern,period,max,min). + This argument overwrites the -frequency command and sets a varying frequency for the input stream. + For this argument users need to supply a tuple string: , where pattern can be "wave", "spike", "binary", "increasing" or "decreasing". + Period is the duration in seconds of one cycle of the pattern. + And min is the minimum frequency and max the maximum frequency, defined in items per second. + For the spike pattern users can also set the duration of the spikes as percentage of the period (0-100) (e.g. ). + The default spike duration is 10 percent of the period. + Usage example: ``-freq-pattern wave,10,5,80`` + + - ``-in-memory`` + It runs the application in in-memory mode. + + - ``-latency`` + Print average latency results at the end of the execution. + + - ``-throughput`` + Print the average throughput at the end of the execution. + + - ``-resource-usage`` + It prints the global memory and CPU usage at the end of the execution. + To use it is required to run the benchmark as root or adjust paranoid value. + + - ``-monitor `` (millisecond) + Use this option to monitor latency, throughput, CPU and memory usage. + You must indicate a monitoring time interval in milliseconds (e.g. 250). + + - ``-monitor-thread `` (millisecond) + Use this option to monitor latency, throughput, CPU and memory usage. + It works the same as the ``-monitor`` command above, but it runs the monitoring computations in an individual thread. + It may be used for decreased performance overhead in the application when monitoring with low time intervals. + + - ``-latency-monitor`` + It monitors latency per stage and per item and generates a log file. -- ``-user-arg `` - User custom argument. Allow users to pass one or more arguments to use inside the benchmarks. - Single argument: [-user-arg single_argument] or [-user-arg "single argument"]. - Multiple arguments: [-user-arg two arguments] or [-user-arg two -user-args arguments]. + - ``-user-arg `` + User custom argument. Allow users to pass one or more arguments to use inside the benchmarks. + Single argument: [-user-arg single_argument] or [-user-arg "single argument"]. + Multiple arguments: [-user-arg two arguments] or [-user-arg two -user-args arguments]. -- ``-test-result`` - This option will run a correctness test on the output (when available) after the benchmark execution. + - ``-test-result`` + This option will run a correctness test on the output (when available) after the benchmark execution. -- ``-repeat `` - Use this argument to repeat this execution n times. It will compute and show a summary of the selected metrics at the end. + - ``-repeat `` + Use this argument to repeat this execution n times. It will compute and show a summary of the selected metrics at the end. -- ``-print`` - When this parameter is added, the exec command will only print on the screen the execution command it would use to run the benchmark. - You may use it to manually change some specific aspect of the execution that is not supported by SPBench. + - ``-print`` + When this parameter is added, the exec command will only print on the screen the execution command it would use to run the benchmark. + You may use it to manually change some specific aspect of the execution that is not supported by SPBench. -- ``-quiet`` - Run it in quiet mode. If any metrics are selected, it shows the results in a short format. + - ``-quiet`` + Run it in quiet mode. If any metrics are selected, it shows the results in a short format. -- ``executor `` - You can use this argument to change the way the benchmarks are executed. - Usage example: ``./spbench exec -executor "-my_executor my_executor_parameters" -bench ...`` + - ``executor `` + You can use this argument to change the way the benchmarks are executed. + Usage example: ``./spbench exec -executor "-my_executor my_executor_parameters" -bench ...`` -- ``-d`` (Bzip2 only) - Enables decompress mode for Bzip2 benchmarks. + - ``-d`` (Bzip2 only) + Enables decompress mode for Bzip2 benchmarks. **Usage example:** -- GitLab