Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoskela committed Dec 17, 2024
1 parent e9bf04a commit bd732e6
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions docs/tutorial/reframe_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,27 +398,27 @@ ReFrame can automate checking that the results fall within an expected range. Yo


=== "Cosma"
```python
reference = {
'cosma': {
'Copy': (40000, -0.25, 0.25, 'MB/s'),
'Scale': (20000, -0.25, 0.25, 'MB/s'),
'Add': (20000, -0.25, 0.25, 'MB/s'),
'Triad': (20000, -0.25, 0.25, 'MB/s')
```python
reference = {
'cosma': {
'Copy': (40000, -0.25, 0.25, 'MB/s'),
'Scale': (20000, -0.25, 0.25, 'MB/s'),
'Add': (20000, -0.25, 0.25, 'MB/s'),
'Triad': (20000, -0.25, 0.25, 'MB/s')
}
}
}
```
=== "Archer2"
```python
reference = {
'archer2': {
'Copy': (260000, -0.25, 0.25, 'MB/s'),
'Scale': (200000, -0.25, 0.25, 'MB/s'),
'Add': (200000, -0.25, 0.25, 'MB/s'),
'Triad': (200000, -0.25, 0.25, 'MB/s')
```python
reference = {
'archer2': {
'Copy': (260000, -0.25, 0.25, 'MB/s'),
'Scale': (200000, -0.25, 0.25, 'MB/s'),
'Add': (200000, -0.25, 0.25, 'MB/s'),
'Triad': (200000, -0.25, 0.25, 'MB/s')
}
}
}
```

> The performance reference tuple consists of the reference value, the lower and upper thresholds expressed as fractional numbers relative to the reference value, and the unit of measurement. If any of the thresholds is not relevant, None may be used instead. Also, the units in this reference variable are entirely optional, since they were already provided through the @performance_function decorator.
Expand Down

0 comments on commit bd732e6

Please sign in to comment.