File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
metricsoperator/metrics/app Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and **Merged pull requests**. Critical items to know are:
14
14
The versions coincide with releases on pip. Only major versions will be released as tags on Github.
15
15
16
16
## [ 0.0.x] ( https://github.com/converged-computing/metrics-operator/tree/main ) (0.0.x)
17
+ - LAMMPS parsing should include row names for component names (0.1.1)
17
18
- More specific parsing / control for OSU benchmarks (0.0.21)
18
19
- Support for OSU benchmark parsing with timed wrappers (0.0.2)
19
20
- Allow getting raw logs for any metric (without parser) (0.0.19)
Original file line number Diff line number Diff line change @@ -213,9 +213,10 @@ def parse_lammps(lines):
213
213
line = lines .pop (0 )
214
214
while line and line .strip ():
215
215
parts = [x .strip () for x in line .split ("|" )]
216
- _ , rest = parts [0 ], parts [1 :]
216
+ rowtitle , rest = parts [0 ], parts [1 :]
217
+ rest = [float (x ) for x in rest if x ]
217
218
if rest :
218
- matrix .append (rest )
219
+ matrix .append ([ rowtitle ] + rest )
219
220
if not lines :
220
221
break
221
222
line = lines .pop (0 )
Original file line number Diff line number Diff line change 30
30
if __name__ == "__main__" :
31
31
setup (
32
32
name = "metricsoperator" ,
33
- version = "0.1.0 " ,
33
+ version = "0.1.1 " ,
34
34
author = "Vanessasaurus" ,
35
35
author_email = "vsoch@users.noreply.github.com" ,
36
36
maintainer = "Vanessasaurus" ,
You can’t perform that action at this time.
0 commit comments