Skip to content

Commit

Permalink
remove names
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Fontana authored and Pedro Fontana committed Apr 9, 2024
1 parent 7c302d0 commit aec0abf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/hyper_threading_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,11 @@ 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 @@ -65,7 +63,6 @@ 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 @@ -80,8 +77,8 @@ jobs:
- name: Run Benchmarks
run: |
ls -R ${{ github.workspace }}/artifacts/
chmod +x ${{ github.workspace }}/artifacts/hyper_threading_workflow_script/hyper-threading-workflow.sh
${{ github.workspace }}/artifacts/hyper_threading_workflow_script/hyper-threading-workflow.sh
chmod +x ${{ github.workspace }}/artifacts/hyper-threading-workflow.sh
${{ github.workspace }}/artifacts/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_binary/hyper_threading_main" "hyper_threading_pr_binary/hyper_threading_pr")
binaries=("hyper_threading_main" "hyper_threading_pr")

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

0 comments on commit aec0abf

Please sign in to comment.