Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

YAML output not compliant with standard #5

Open
omaralvarez opened this issue Feb 18, 2017 · 0 comments · May be fixed by #6
Open

YAML output not compliant with standard #5

omaralvarez opened this issue Feb 18, 2017 · 0 comments · May be fixed by #6

Comments

@omaralvarez
Copy link

After several hours trying to debug an issue while plotting performance results, thinking there was an issue with my R script, I have realised that the YAML output is not compliant with standard version 1.2. As is, when using a YAML parser there is a Scanner error: mapping values are not allowed in this context.

The problematic chunk of the output is for example:

Performance Results For Rank 0:
  Timer: total
    CallCount:  1
    AvgPerCall:   6.0009
    Total:        6.0009
    PercentLoop:   101.79
  Timer: loop
    CallCount:  1
    AvgPerCall:   6.0009
    Total:        6.0009
    PercentLoop:   101.79

It should instead output:

Performance Results For Rank 0:
  - Timer: total
    CallCount:  1
    AvgPerCall:   6.0009
    Total:        6.0009
    PercentLoop:   101.79
  - Timer: loop
    CallCount:  1
    AvgPerCall:   6.0009
    Total:        6.0009
    PercentLoop:   101.79
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant