-
Notifications
You must be signed in to change notification settings - Fork 49
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
Updates to CI and plotting #483
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
f478ee6
cmp_scmout.py
dustinswales 3bbce31
Updated to plotting in CI. Added standalone plotting script for offli…
dustinswales fb988aa
Update Baseline in RT
dustinswales 0002124
Fix directory in CI script
dustinswales f0f1bbc
Some housekeeping
dustinswales ae8f1da
Introduce small change to results in order to trigger plotting in CI
dustinswales c10741c
Last bug fix in CI script!
dustinswales a8d26a9
Rever nml change
dustinswales 85e305a
Add axis limit to plotting script
dustinswales File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#!/usr/bin/env python | ||
|
||
############################################################################## | ||
# | ||
# This script compares SCM RT output to baselines. | ||
# | ||
############################################################################## | ||
import os | ||
import sys | ||
from os.path import exists | ||
import argparse | ||
from plot_scm_out import plot_results | ||
|
||
# | ||
parser = argparse.ArgumentParser() | ||
parser.add_argument('-fbl', '--file_bl', help='File containing SCM RT baselines', required=True) | ||
parser.add_argument('-frt', '--file_rt', help='File containing SCM RT output') | ||
|
||
# | ||
def parse_args(): | ||
args = parser.parse_args() | ||
file_rt = args.file_rt | ||
file_bl = args.file_bl | ||
return (file_bl, file_rt) | ||
|
||
# | ||
def main(): | ||
# | ||
(file_bl, file_rt) = parse_args() | ||
|
||
plot_files = plot_results(file_bl, file_rt) | ||
|
||
# Put plots in local directory (scm_plots/) | ||
result = os.system("mkdir -p scm_plots/") | ||
com = "mv" | ||
for plot_file in plot_files: | ||
com = com + " " + plot_file | ||
# end for | ||
result = os.system(com+" scm_plots/") | ||
|
||
# Housekeeping | ||
if file_rt is not None: | ||
result = os.system('tar -cvf scm_out_abs.tar scm_plots/*.png') | ||
result = os.system('tar -cvf /scratch1/data_untrusted/Dustin.Swales/scm_out_abs.tar scm_plots/*.png') | ||
else: | ||
result = os.system('tar -cvf scm_out_diff.tar scm_plots/*.png') | ||
result = os.system('tar -cvf /scratch1/data_untrusted/Dustin.Swales/scm_out_diff.tar scm_plots/*.png') | ||
# end if | ||
result = os.system('rm -rf scm_plots/') | ||
# | ||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@grantfirl Sorry for the late addition.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No prob. Ready to merge?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do it.