Skip to content

Commit

Permalink
Format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jackl-xilinx committed Nov 1, 2024
1 parent 2f5f616 commit 10c08c8
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,15 @@ def main():
argparser.add_argument("--trace_size", type=int, default=0)
args = argparser.parse_args()
my_matmul(
args.M, args.K, args.N, args.m, args.k, args.n, args.dtype_in, args.dtype_out, args.trace_size
args.M,
args.K,
args.N,
args.m,
args.k,
args.n,
args.dtype_in,
args.dtype_out,
args.trace_size,
)


Expand Down

0 comments on commit 10c08c8

Please sign in to comment.