Skip to content

Commit

Permalink
Revert "remove names"
Browse files Browse the repository at this point in the history
This reverts commit aec0abf.
  • Loading branch information
Pedro Fontana authored and Pedro Fontana committed Apr 9, 2024
1 parent aec0abf commit fdc4e4c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/hyper_threading_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,13 @@ jobs:
- name: Upload PR Binary
uses: actions/upload-artifact@v4
with:
name: hyper_threading_pr_binary
path: ${{ github.workspace }}/artifacts/hyper_threading_pr

- name: Upload Workflow Script
uses: actions/upload-artifact@v4
with:
name: hyper_threading_workflow_script
path: ${{ github.workspace }}/artifacts/hyper-threading-workflow.sh


Expand All @@ -63,6 +65,7 @@ jobs:
- name: Upload Main Binary
uses: actions/upload-artifact@v4
with:
name: hyper_threading_main_binary
path: ${{ github.workspace }}/artifacts/hyper_threading_main

- name: Download Binaries and Script
Expand All @@ -77,8 +80,8 @@ jobs:
- name: Run Benchmarks
run: |
ls -R ${{ github.workspace }}/artifacts/
chmod +x ${{ github.workspace }}/artifacts/hyper-threading-workflow.sh
${{ github.workspace }}/artifacts/hyper-threading-workflow.sh
chmod +x ${{ github.workspace }}/artifacts/hyper_threading_workflow_script/hyper-threading-workflow.sh
${{ github.workspace }}/artifacts/hyper_threading_workflow_script/hyper-threading-workflow.sh
- name: Compare Results
run: |
Expand Down
2 changes: 1 addition & 1 deletion examples/hyper_threading/hyper-threading-workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
thread_counts=(1 2 4 6 8 16 32)

# Define una lista con los nombres de los binarios
binaries=("hyper_threading_main" "hyper_threading_pr")
binaries=("hyper_threading_main_binary/hyper_threading_main" "hyper_threading_pr_binary/hyper_threading_pr")

# Itera sobre la lista de thread_counts
for threads in "${thread_counts[@]}"; do
Expand Down

0 comments on commit fdc4e4c

Please sign in to comment.