-
Notifications
You must be signed in to change notification settings - Fork 172
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
Add Hyper Threading benchmarks workflow #1711
Conversation
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1711 +/- ##
=======================================
Coverage 94.90% 94.90%
=======================================
Files 98 98
Lines 38092 38092
=======================================
Hits 36151 36151
Misses 1941 1941 ☔ View full report in Codecov by Sentry. |
Benchmark Results for unmodified programs 🚀
|
- name: Upload Main Binary | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: hyper_threading_main_binary | ||
path: ${{ github.workspace }}/hyper_threading_main | ||
|
||
- name: Download hyper_threading_pr_binary | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: hyper_threading_pr_binary | ||
path: ${{ github.workspace }}/ | ||
|
||
- name: Download hyper_threading_workflow_script | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: hyper_threading_workflow_script | ||
path: ${{ github.workspace }}/ | ||
|
||
- name: Download hyper_threading_main_binary | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: hyper_threading_main_binary | ||
path: ${{ github.workspace }}/ |
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 is unnecessary. Since you're running everything in a single job you still have the files where you copied them. This would only be necessary if we did parallel jobs here.
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.
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.
Right. We may be able to remove that too in a later PR, when this is in 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.
Hold on. We can make the copy to the workspace before checking out main. That should solve it.
- name: Upload PR Binary | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: hyper_threading_pr_binary | ||
path: ${{ github.workspace }}/hyper_threading_pr | ||
|
||
- name: Upload Workflow Script | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: hyper_threading_workflow_script | ||
path: ${{ github.workspace }}/hyper-threading-workflow.sh | ||
|
||
|
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.
Same for this.
Add Hyper Threading benchmarks workflow
Description
Add a workflow to benchmark the Cairo-vm in a Hyper-Threading context
Checklist