Skip to content

Commit

Permalink
added missing scripts to repo
Browse files Browse the repository at this point in the history
Signed-off-by: Konstantin Läufer <[email protected]>
  • Loading branch information
klaeufer committed Dec 1, 2023
1 parent d468627 commit fb0f954
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions extract-data.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/bash

for n in 10 100 1000 10000 100000 1000000 10000000 100000000 1000000000; do
for w in 1 10 100 1000 10000; do
echo $n,$w,$(grep TOTAL nvidia-perf-$n-$w.txt | cut -d, -f2)
done
done
17 changes: 17 additions & 0 deletions parameter-sweep.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/bash

# invoke with -s option for sequential execution

# on NVIDIA RTX A6000 (banana)
# n = 10^9 w = 100 t = 35s

echo additional args: $*
date
for n in 10 100 1000 10000 100000 1000000 10000000 100000000 1000000000; do
echo n = $n
for w in 1 10 100 1000 10000; do
echo n = $n, w = $w
./build-nvidia/bin/integration $* -n $n -w $w > nvidia-perf-$n-$w.txt
date
done
done

0 comments on commit fb0f954

Please sign in to comment.