diff --git a/docs/img/spbench_copying.png b/docs/img/spbench_copying.png new file mode 100644 index 0000000000000000000000000000000000000000..95b54f76f52fb0ac98ac148b50e97dca0eaabe83 Binary files /dev/null and b/docs/img/spbench_copying.png differ diff --git a/docs/img/spbench_framework.png b/docs/img/spbench_framework.png new file mode 100644 index 0000000000000000000000000000000000000000..8d7c5b0ac63fa3ecb5e04e5dc34515ce8674a708 Binary files /dev/null and b/docs/img/spbench_framework.png differ diff --git a/docs/img/spbench_logo.png b/docs/img/spbench_logo.png new file mode 100755 index 0000000000000000000000000000000000000000..cd55e17ffbc871a916677b4fbf293886218143e0 Binary files /dev/null and b/docs/img/spbench_logo.png differ diff --git a/docs/source/about.rst b/docs/source/about.rst new file mode 100644 index 0000000000000000000000000000000000000000..37aa0564ff1c0c7ff8926c27c18b272bf0df4a9f --- /dev/null +++ b/docs/source/about.rst @@ -0,0 +1,9 @@ +About +===== + +To use Lumache, first install it using pip: + +.. code-block:: console + + (.venv) $ pip install lumache + diff --git a/docs/source/api.rst b/docs/source/api.rst deleted file mode 100644 index ec94338a61a3bf715507487f36a80264764c3df9..0000000000000000000000000000000000000000 --- a/docs/source/api.rst +++ /dev/null @@ -1,7 +0,0 @@ -API -=== - -.. autosummary:: - :toctree: generated - - lumache diff --git a/docs/source/conf.py b/docs/source/conf.py index 6e9e8c0871dd94314a699c22fb2c66d84dca029d..d612b8e8cbefa882e9294daa2ddc7a04d7ff2ff3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -2,12 +2,12 @@ # -- Project information -project = 'Lumache' -copyright = '2021, Graziella' -author = 'Graziella' +project = 'SPBench' +copyright = '2021, Adriano M. Garcia' +author = 'Adriano M.Garcia' -release = '0.1' -version = '0.1.0' +release = '0.2-Alpha' +version = '0.2.Alpha' # -- General configuration diff --git a/docs/source/copying.rst b/docs/source/copying.rst new file mode 100644 index 0000000000000000000000000000000000000000..233a79b9c403dbcdd94590479b3c970652b657e3 --- /dev/null +++ b/docs/source/copying.rst @@ -0,0 +1,8 @@ +Copying +======= + +.. _copying: + +.. figure:: /img/spbench_copying.png + :align: center + diff --git a/docs/source/download_links.rst b/docs/source/download_links.rst new file mode 100644 index 0000000000000000000000000000000000000000..ee1da7d0ce2d754276fc537cd60f25116fb6e7d0 --- /dev/null +++ b/docs/source/download_links.rst @@ -0,0 +1,5 @@ +Download Links +============== + + - GitHub: https://github.com/GMAP/SPBench + - SPBench Website: https://gmap.pucrs.br/gmap/en/software/ diff --git a/docs/source/how_to_run.rst b/docs/source/how_to_run.rst new file mode 100644 index 0000000000000000000000000000000000000000..81838e782e2c274f8e6d1709cb1cacdee44cb8e0 --- /dev/null +++ b/docs/source/how_to_run.rst @@ -0,0 +1,259 @@ +How to run SPBench +================== + +This page contains how-to-use instructions. + +.. _CLI: + +Command-Line Interface +---------------------- + +The SPBench framework works with a command-line interface (CLI). + +The CLI offers some commands. You can check them running: + +.. code-block:: bash + + ./spbench --help + +For each command there is also a "help" guide. You can access it using: + +.. code-block:: bash + + ./spbench [command] -h + +Basic concepts +-------------- + +- Benchmark: In this context, it means any application version registered in SPBench. Benchmarks can be the sequential applications, the parallel versions pre-available within SPBench, or any new custom implementations registered latter by users. + +- PPI: It stands for Parallel Programming Interface, which means any library, framework, language, etc. that leverages parallelism. + +Version Control Support Matrix +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + ++------------+------------+-----------+------------+-----------+ +| | git | hg | bzr | svn | ++============+============+===========+============+===========+ +| Tags | Yes | Yes | Yes | No | ++------------+------------+-----------+------------+-----------+ +| Branches | Yes | Yes | Yes | No | +| | | No | | No | ++------------+------------+-----------+------------+-----------+ +| Default | master | default | | trunk | ++------------+------------+-----------+------------+-----------+ +| Default | mister | default | | trunk | ++------------+------------+-----------+------------+-----------+ + +The table bellow shows all commands that can be used through the CLI. + +Framework commands +~~~~~~~~~~~~~~~~~~ ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| Command | Description | Subcommands | ++================+==================================================================================================+=========================================================+ +| **install** | It install the dependencies for the SPBench benchmarks. | ``-app `` | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| **register** | It automatically sets the paths and generates new makefiles for all benchmarks. | None | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| **new** | It allows for creating a new benchmark based on a SPBench application. | ``-name `` (any name) | +| | | | +| | This command will create a fresh copy of the selected application. | ``-app `` | +| | | | | +| | | ``-ppi `` (any name) | +| | | | | +| | | ``-replicate `` (Optional) | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| **edit** | It opens a choosen benchmark for code editing. | ``-bench `` | +| | | | | +| | | ``-editor `` (Optional)(Default: nano) | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| **configure** | It allows users to add compiling dependencies for a benchmark. | ``-bench `` | +| | | | | +| | It opens a JSON configuration file for you to write the required dependencies. | ``-editor `` (Optional)(Default: nano) | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| **compile** | Use this command to compile a selected benchmark. | ``-bench `` | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| **exec** | Use this command to run an application benchmark. |``-bench `` | +| | | | | +| | |``-input `` | +| | | | +| | |``-batch `` (optional) | +| | | | +| | |``-frequency `` (microsecond)(optional) | +| | | | +| | |``-nthreads `` (optional) | +| | | | +| | |``-in_memory`` (optional) | +| | | | +| | |``-latency`` (optional) | +| | | | +| | |``-throughput`` (optional) | +| | | | +| | |``-resource_usage`` (optional) | +| | | | +| | |``-monitor `` (millisecond)(optional) | +| | | | +| | |``-latency_monitor`` (optional) | +| | | | +| | |``-user_arg `` (optional) | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| **list** | This command lists all SPBench benchmarks. | None | +| | Users' new benchmark versions are added to this list. | | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| **delete** | It completely deletes the given benchmark. | ``-bench `` | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| **new-input** | It allows for adding an alias for a custom input. | ``-id `` | +| | | | +| | | ``-app `` | +| | | | +| | | ``-input ""`` | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ +| **list_input** | It lists all inputs registered for a given application and their respective alias. | ``-app `` (optional) | +| | (Attention: You can only use pre-registered alias after downloading the respective inputs. | | +| | See the section about inputs below). | | ++----------------+--------------------------------------------------------------------------------------------------+---------------------------------------------------------+ + + +How to use +---------- + +In this framework you can simply run the benchmarks that are already provided or implement your own specific benchmark. + +To run a given benchmark version, you can run these commands: + +.. code-block:: bash + + ./spbench install + +(you can use -app to install only a specific application) + +.. code-block:: bash + + ./spbench register + +.. code-block:: bash + + ./spbench list (this shows the list of available benchmarks) + +.. code-block:: bash + + ./spbench compile -bench + +.. code-block:: bash + + ./spbench exec -bench -input ... [optional_commands] + +To implement your own benchmark version, you must run new -> edit -> configure + +Inputs +------ + +In the exec step you must choose a given input for the benchmark. + +These inputs can be found and downloaded in the inputs/ directory. + +You can run the 'get_inputs.sh' script to automatically download them. + +.. code-block:: bash + + cd inputs/ && bash get_inputs.sh + +You can use your own input or choose a given one. + +You can also use an alias as short option. + +These alias are linked to the inputs provided by SPBench and you can see them running: + +.. code-block:: bash + + ./spbench list-inputs + +SPBench also allows you to create an alias for your custom inputs. + +.. code-block:: bash + + ./spbench new-input -id -app -input "" + +How to run example +------------------ + +.. code-block:: bash + + ./spbench exec -bench [benchmark_id] -input [small, medium, large] + +Performance metrics +------------------- + +With SPBench you can evaluate four performance metrics in different ways. + + - Latency + - Throughput + - CPU usage (%) + - Memory usage (KB) + +Here are four arguments you can use when running the 'exec' command: + +- ``-monitor `` + + It monitors latency, throughput, CPU and memory usage. Here you can indicate a monitoring time interval in milliseconds (e.g. 250.Optional). It will generate a log file inside a log folder (spbench/log/). This file will contain the results got for each metric at each time interval. + +- ``-latency`` + + It prints the average latency results for each application operator on the screen after the execution. + +- ``-throughput`` + + It prints the average throughput results after the execution. + +- ``-latency_monitor`` + + It monitors the latency per stage and per item and generates a log file inside the log folder. + +- ``-resource_usage`` + + It prints the global memory and CPU usage for the selected application. + +Other optional arguments +------------------------ + +All of these are also OPTIONAL arguments that you can use within the 'exec' command. + +- ``-in_memory`` + + It runs the application in-memory, which means that all the input is first loaded into the memory before start processing it. The opposite is true for the writing phase, where the result stays in memory and is only writen to the disk after all the input is proccessed. + +- ``-nthreads `` + + Here you can define a number of threads to run the parallel versions. To be more preciselly, the degree of parallelism of the parallel stages (Obs.: some PPIs can create more threads than parallel stages). It shows up as a global variable that can be used inside the parallel versions. + +- ``-batch `` + + Here you can change the size of the batches, so each item can carry more data. By default, the size of each batch is 1. + +- ``-d`` + + This a specific argument for bzip2. You can use it to run this application in decompress mode. Observe that for de decompression mode it is required a compressed file as input (e.g. my_compressed_file.tar.bz2). + +Global attributes +----------------- + +SPBench implements some global variables that can be used and modified by users in custom implementations. Some useful are: + + - nthreads + - frequency (forthcoming): change the frequency of itens generated by source operator. The maximum is the speed of the memory access in your system. You can modify this + + +Itens attributes +---------------- + +All itens implements some attributes that you can use to build customizations. +(forthcoming) + +.. Important:: + +- You can run ``source setup_vars.sh`` to load the libraries. + +- You must load the libraries before using SPBench every time you star a new session. + +- To make FastFlow/SPar properly recognize and map the cores of the processor you must run at SPBench root ``bash ./ppis/SPar/libraries/ff/mapping_string.sh`` and ``bash ./ppis/fastflow/ff/mapping_string.sh". Only required once. \ No newline at end of file diff --git a/docs/source/index.rst b/docs/source/index.rst index b8badc09b13d7ec4aee3316c3e4ea2c1bacd5bf2..a73185482d74631b8f4cc1729566ded351a73571 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,28 +1,42 @@ Welcome to SPBench's documentation! =================================== +.. figure:: img/spbench_logo.png + :align: center + + + SPBench (Stream Processing Benchmark) is a framework for benchmarking C++ stream processing applications. The main goal of SPBench is to enable users to easily create custom benchmarks from real-world stream processing applications and evaluate multiple PPIs. + The SPBench is intended for three main audiences: -Users who want to run performance tests with the SPBench benchmarks. It implements different real-world stream processing applications using different parallel programming interfaces (PPIs) and parallelism patterns, and makes available the main metrics used in this domain. The framework also enables users to create custom benchmarks with new PPIs. -Researchers and developers who want to test and evaluate new technologies and solutions. The SPBench benchmarks are also highly parameterizable and its API allows for easy and fast code reuse across all applications. -Students and teachers who want to learn/teach stream parallelism. The benchmarks implemented with the SPBench API abstract the low-level code and expose to users only the stream core of each application (in a few lines of code). Therefore, it allows users to easily identify each individual operator and data dependencies, to understand what the stream flow looks like. Then users can build parallelism on top of this highly simplified code. + Users who want to run performance tests with the SPBench benchmarks. It implements different real-world stream processing applications using different parallel programming interfaces (PPIs) and parallelism patterns, and makes available the main metrics used in this domain. The framework also enables users to create custom benchmarks with new PPIs. + + Researchers and developers who want to test and evaluate new technologies and solutions. The SPBench benchmarks are also highly parameterizable and its API allows for easy and fast code reuse across all applications. + + Students and teachers who want to learn/teach stream parallelism. The benchmarks implemented with the SPBench API abstract the low-level code and expose to users only the stream core of each application (in a few lines of code). Therefore, it allows users to easily identify each individual operator and data dependencies, to understand what the stream flow looks like. Then users can build parallelism on top of this highly simplified code. + + +.. figure:: img/logo.png + +.. figure:: /home/adriano/Documentos/spbench-doc/docs/img/logo.png + The SPBench suite comprises the following stream processing applications and will be more in the future: - Ferret (PARSEC) - Lane Detection - Bzip2 - Person Recognition (Temporarily removed due to license constraint) + - Ferret (PARSEC) + - Lane Detection + - Bzip2 + - Person Recognition (Temporarily removed due to license constraint) For each of them there are parallel versions implemented using the following parallel programming interfaces and will be more in the future: - Intel TBB - FastFlow - SPar - GrPPI (forthcoming) - Standard C++ Threads (forthcoming) + - Intel TBB + - FastFlow + - SPar + - GrPPI (forthcoming) + - Standard C++ Threads (forthcoming) **Lumache** (/lu'make/) is a Python library for cooks and food lovers that creates recipes mixing random ingredients. @@ -41,5 +55,9 @@ Contents .. toctree:: + install + how_to_run + copying usage - api + download_links + about diff --git a/docs/source/install.rst b/docs/source/install.rst new file mode 100644 index 0000000000000000000000000000000000000000..6b2c480ad8d6178813734fac3b458a2bf35c768e --- /dev/null +++ b/docs/source/install.rst @@ -0,0 +1,36 @@ +How to install +============== + +.. _installation: + +Installation +------------ + +The folowing packages are required to install SPBench: + + - build-essential + - cmake + - yasm + - python (tested on python3 and python2.7) + +You can run the command bellow to install theses packages or ask a system admin. + +.. code-block:: bash + + sudo apt-get install -y build-essential cmake yasm python3 + +To install SPBench you can choose full installation (all applications): + +.. code-block:: bash + + ./spbench install + +Or choose a specific application: + +.. code-block:: bash + + ./spbench install -app + +Run ``./spbench install -h`` for more info. + +To install specific components, see ``libs/README.md`` or ``ppis/README.md``. diff --git a/docs/source/usage.rst b/docs/source/usage.rst index 924afcf6c2471a1d99ebc27e9ed98dd733ba0df1..e0fbd38b4c471cc51dabded7dfa02c38ecf1e5e5 100644 --- a/docs/source/usage.rst +++ b/docs/source/usage.rst @@ -1,9 +1,9 @@ Usage ===== -.. _installation: +.. _usage: -Installation +Usages ------------ To use Lumache, first install it using pip: @@ -15,20 +15,4 @@ To use Lumache, first install it using pip: Creating recipes ---------------- -To retrieve a list of random ingredients, -you can use the ``lumache.get_random_ingredients()`` function: - -.. autofunction:: lumache.get_random_ingredients - -The ``kind`` parameter should be either ``"meat"``, ``"fish"``, -or ``"veggies"``. Otherwise, :py:func:`lumache.get_random_ingredients` -will raise an exception. - -.. autoexception:: lumache.InvalidKindError - -For example: - ->>> import lumache ->>> lumache.get_random_ingredients() -['shells', 'gorgonzola', 'parsley'] - +To use Lumache, first install it using pip: \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 14a2dda5defc66574814cd8350204bebde37b52d..e9a0b726f49d2798179cd63a0ab26674df4d7de5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,6 @@ requires = ["flit_core >=3.2,<4"] build-backend = "flit_core.buildapi" [project] -name = "lumache" -authors = [{name = "Graziella", email = "graziella@lumache"}] +name = "SPBench" +authors = [{name = "Adriano M. Garcia", email = "adrianogarcia@edu.pucrs.br"}] dynamic = ["version", "description"]