Skip to content

Commit

Permalink
Fix gendata.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JosseVanDelm committed Dec 20, 2024
1 parent e79b968 commit 41d1d55
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions benchmarks/dense_matmul/gendata.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ def create_test_data(m, n, k, add_c: bool = False):
"D": D,
}

create_header("data.h", sizes, variables)
create_data("data.c", variables)
create_header("data", sizes, variables)
create_data("data", variables)


if __name__ == "__main__":
Expand Down
4 changes: 2 additions & 2 deletions benchmarks/tiled_matmul/gendata.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def create_test_data(n, m, k, ones=False, random_shape=False):
"C": C,
}

create_header("data.h", sizes, variables)
create_data("data.c", variables)
create_header("data", sizes, variables)
create_data("data", variables)


if __name__ == "__main__":
Expand Down

0 comments on commit 41d1d55

Please sign in to comment.