Skip to content

Commit

Permalink
Fix MLP benchmark config (#949)
Browse files Browse the repository at this point in the history
Adds missing mlir-gen flags.
  • Loading branch information
adam-smnk authored Aug 6, 2024
1 parent 92cb3e1 commit de30485
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmarks/config/base/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"mlp_models": {
"fp32_3x1024_const_mlir": {
"type": "IR-GEN",
"benchmark": [ "mlir-gen", "--kernel=const --float-type=f32 --batch=256 --layers=1024,1024,1024,1024" ],
"benchmark": [ "mlir-gen", "--kernel=const --bias --relu --float-type=f32 --batch=256 --layers=1024,1024,1024,1024" ],
"environment": {},
"flags": [ "-n", "100" ],
"extensions": [ "(avx2|asimd)" ]
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/config/base/named-ops.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"mlp_named_ops": {
"fp32_3x1024_const_mlir": {
"type": "IR-GEN",
"benchmark": [ "mlir-gen", "--output=named --kernel=const --float-type=f32 --batch=256 --layers=1024,1024,1024,1024" ],
"benchmark": [ "mlir-gen", "--output=named --kernel=const --bias --relu --float-type=f32 --batch=256 --layers=1024,1024,1024,1024" ],
"environment": {},
"flags": [ "-n", "100" ],
"extensions": [ "(avx2|asimd)" ]
Expand Down

0 comments on commit de30485

Please sign in to comment.