-
Notifications
You must be signed in to change notification settings - Fork 2
Generate GPU Component runtime summary and rank-channel variance #4
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
base: users/oyazdanb/gemm_test
Are you sure you want to change the base?
Conversation
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.
rebase it to the main. The updated versions of these files are in the main. Put your changes on top of them.
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.
rebase your branch. This file has a new version that is on the main. Put your changes on top of that.
|
|
||
| col_type_name = 0 | ||
| col_256_time = 3 | ||
| col_512_time = 5 |
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.
remove hard-coded values
| if i==0 : | ||
| continue | ||
| all_results[row[col_type_name]]['256'][c].append(float(row[col_256_time])) | ||
| all_results[row[col_type_name]]['512'][c].append(float(row[col_512_time])) |
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.
remove the hardcoded values.
| type=Path, | ||
| default=Path("/home/oyazdanb/aorta/experiments/sweep_20251121_155219/tracelens_analysis"), | ||
| help='Base path to tracelens_analysis directory (default: %(default)s)' | ||
| ) |
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 personal path. change the path to a generic one. Also, remove the default path and force the user to pass it.
|
|
||
| col_type_name = 0 | ||
| col_256_time = 3 | ||
| col_512_time = 5 |
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 hard-coded value
| '--base-path', | ||
| type=Path, | ||
| default=Path("/home/oyazdanb/aorta/experiments/sweep_20251121_155219/tracelens_analysis"), | ||
| help='Base path to tracelens_analysis directory (default: %(default)s)' |
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 personal path.
| plot_mean_result(output_dir, type_list, mean_results, threads=thread_configs) | ||
|
|
||
| if __name__ == "__main__": | ||
| main() |
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.
this script has similarities with generate_comparison_report_channel_variance.py. Consolidate them. Also update README with the scripts.
Updates :