Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2275,6 +2275,24 @@ You can also combine :option:`--list-stored-testcases` and :option:`--describe-s

reframe --list-stored-testcases=now-1d:now/mean:/ -n stream_test% -E 'num_threads == 2'

To list individual results from past tests, you can aggregate on a unique field, e.g., `uuid`.
Since the value is unique, the aggregation will just return the value:

.. code-block:: bash
:caption: Run in the single-node container.

reframe --list-stored-testcases=now-1d:now/mean:uuid/name,sysenv,pvar,punit,pval

.. code-block:: console

name sysenv pvar punit pval (mean)
----------- ----------------------- ---------------- ------- -------------
stream_test generic:default+builtin copy_bw|triad_bw MB/s 28583.8
stream_test generic:default+builtin copy_bw|triad_bw MB/s 28281.3
...
stream_test generic:default+builtin copy_bw|triad_bw MB/s 28539.7
stream_test generic:default+builtin copy_bw|triad_bw MB/s 28755.4


Comparing performance of test cases
-----------------------------------
Expand Down
Loading