Skip to content
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

Microbenchmarks: create profile directory if it does not exist yet #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Microbenchmarks/Arithmetic-Throughput/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

mkdir -p profile

for i in ADD SUB MUL DIV
do
for j in INT32 FLOAT UINT32 INT64 DOUBLE UINT64
Expand Down
2 changes: 2 additions & 0 deletions Microbenchmarks/CPU-DPU/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

mkdir -p profile

for i in 1 2 4 8 16 32 64
do
for j in 1
Expand Down
2 changes: 2 additions & 0 deletions Microbenchmarks/MRAM-Latency/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

mkdir -p profile

for i in 3 4 5 6 7 8 9 10 11
do
for j in 1
Expand Down
2 changes: 2 additions & 0 deletions Microbenchmarks/Operational-Intensity/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

mkdir -p profile

for i in ADD SUB MUL DIV
do
for j in CHAR SHORT INT32 FLOAT INT64 DOUBLE
Expand Down
2 changes: 2 additions & 0 deletions Microbenchmarks/Random-GUPS/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

mkdir -p profile

for i in 1
do
for j in 1 2 4 8 12 16
Expand Down
2 changes: 2 additions & 0 deletions Microbenchmarks/STREAM/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

mkdir -p profile

# MRAM
for i in copy copyw add scale triad
do
Expand Down
2 changes: 2 additions & 0 deletions Microbenchmarks/STRIDED/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

mkdir -p profile

for i in COARSECOARSE FINEFINE
do
for j in 1
Expand Down
2 changes: 2 additions & 0 deletions Microbenchmarks/WRAM/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

mkdir -p profile

# WRAM
for i in streaming random
do
Expand Down