Skip to content

Commit

Permalink
Add code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Fontana authored and Pedro Fontana committed Apr 12, 2024
1 parent 37b35cf commit cfd21d5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion examples/hyper_threading/hyper-threading-workflow.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Define a list of RAYON_NUM_THREADS
thread_counts=(1 2 4 6 8 16 )
thread_counts=(2 4)

# Define binary names
binaries=("hyper_threading_main" "hyper_threading_pr")
Expand All @@ -26,3 +26,9 @@ for threads in "${thread_counts[@]}"; do
eval $cmd >> result.md
echo "\n \n \n " >> result.md
done

{
echo '```'
cat result.md
echo '```'
} > temp_result.md && mv temp_result.md result.md

0 comments on commit cfd21d5

Please sign in to comment.