Skip to content

Commit

Permalink
Finish conv sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Jokeren committed Apr 12, 2022
1 parent 255e6d3 commit f8df83b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions compiler_gym/conv.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

for((x=0;x<=11;x+=1))
do
make conv CASE=$x
./conv
make clean
done
2 changes: 1 addition & 1 deletion compiler_gym/gemm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

for((x=100;x<=1000;x+=100))
do
make GEMM_M=$x GEMM_N=$x GEMM_K=$x
make gemm GEMM_M=$x GEMM_N=$x GEMM_K=$x
./gemm
make clean
done

0 comments on commit f8df83b

Please sign in to comment.