You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,17 +14,15 @@
14
14
15
15
# ReFrame in a Nutshell
16
16
17
-
ReFrame is a framework for writing regression tests for HPC systems.
18
-
The goal of this framework is to abstract away the complexity of the interactions with the system, separating the logic of a regression test from the low-level details, which pertain to the system configuration and setup.
19
-
This allows users to write easily portable regression tests, focusing only on the functionality.
17
+
ReFrame is a powerful framework for writing system regression tests and benchmarks, specifically targeted to HPC systems.
18
+
The goal of the framework is to abstract away the complexity of the interactions with the system, separating the logic of a test from the low-level details, which pertain to the system configuration and setup.
19
+
This allows users to write portable tests in a declarative way that describes only the test's functionality.
20
20
21
-
Regression tests in ReFrame are simple Python classes that specify the basic parameters of the test.
22
-
The framework will load the test and will send it down a well-defined pipeline that will take care of its execution.
21
+
Tests in ReFrame are simple Python classes that specify the basic variables and parameters of the test.
22
+
ReFrame offers an intuitive and very powerful syntax that allows users to create test libraries, test factories, as well as complete test workflows using other tests as fixtures.
23
+
ReFrame will load the tests and send them down a well-defined pipeline that will execute them in parallel.
23
24
The stages of this pipeline take care of all the system interaction details, such as programming environment switching, compilation, job submission, job status query, sanity checking and performance assessment.
24
25
25
-
Writing system regression tests in a high-level modern programming language, like Python, poses a great advantage in organizing and maintaining the tests.
26
-
Users can create their own test hierarchies, create test factories for generating multiple tests at the same time and also customize them in a simple and expressive way.
27
-
28
26
Please visit the project's documentation [page](https://reframe-hpc.readthedocs.io/) for all the details!
Copy file name to clipboardExpand all lines: docs/index.rst
+6-9Lines changed: 6 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,22 +2,19 @@
2
2
Welcome to ReFrame
3
3
==================
4
4
5
-
ReFrame is a high-level framework for writing regression tests for HPC systems.
6
-
The goal of the framework is to abstract away the complexity of the interactions with the system, separating the logic of a regression test from the low-level details, which pertain to the system configuration and setup.
7
-
This allows users to write easily portable regression tests, focusing only on the functionality.
5
+
ReFrame is a powerful framework for writing system regression tests and benchmarks, specifically targeted to HPC systems.
6
+
The goal of the framework is to abstract away the complexity of the interactions with the system, separating the logic of a test from the low-level details, which pertain to the system configuration and setup.
7
+
This allows users to write portable tests in a declarative way that describes only the test's functionality.
8
8
9
-
Regression tests in ReFrame are simple Python classes that specify the basic parameters of the test.
10
-
The framework will load the test and will send it down a well-defined pipeline that will take care of its execution.
9
+
Tests in ReFrame are simple Python classes that specify the basic variables and parameters of the test.
10
+
ReFrame offers an intuitive and very powerful syntax that allows users to create test libraries, test factories, as well as complete test workflows using other tests as fixtures.
11
+
ReFrame will load the tests and send them down a well-defined pipeline that will execute them in parallel.
11
12
The stages of this pipeline take care of all the system interaction details, such as programming environment switching, compilation, job submission, job status query, sanity checking and performance assessment.
12
13
13
14
ReFrame also offers a high-level and flexible abstraction for writing sanity and performance checks for your regression tests, without having to care about the details of parsing output files, searching for patterns and testing against reference values for different systems.
14
15
15
-
Writing system regression tests in a high-level modern programming language, like Python, poses a great advantage in organizing and maintaining the tests.
16
-
Users can create their own test hierarchies or test factories for generating multiple tests at the same time and they can also customize them in a simple and expressive way.
17
-
18
16
Finally, ReFrame offers a powerful and efficient runtime for running and managing the execution of tests, as well as integration with common logging facilities, where ReFrame can send live data from currently running performance tests.
0 commit comments