aremazeilles / beat_routine

Performance Indicators developed by BEAT consortium for the Eurobench project
0 stars 2 forks source link

adjust_output #36

Closed aremazeilles closed 3 years ago

aremazeilles commented 3 years ago

Making some adjustments to be aligned with the latest version of the PI output, as described there.

Basically labelled_matrix disappear, and we have an optional label field for any other format.

The format of pi_pphi.yaml and pi_g.yaml remain to be adjusted. Both are as follows (only the unit changes):

type: 'matrix'
measure_unit: '%'
value: [342.09 513.76 1801.89;
        448.64 271.81 679.08;
        161.04 449.99 165.52]

Does it correspond to a matrix, or to a vector? If this is a 3x3 matrix, format should be:

type: 'matrix'
measure_unit: '%'
value: [[342.09 513.76 1801.89],
           [448.64 271.81 679.08];
           [161.04 449.99 165.52]]

New line per row is not mandatory in my opinion

juritaborri commented 3 years ago

It is a matrix, tomorrow I will adjust it as suggested.