Skip to content

Commit

Permalink
Handle review
Browse files Browse the repository at this point in the history
Signed-off-by: Mihai Maruseac <[email protected]>
  • Loading branch information
mihaimaruseac committed Sep 11, 2024
1 parent 938e894 commit c185849
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions benchmarks/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_file_of_given_size(path: str, size: int) -> None:
Args:
path: Path to a file to write to. Parents are created if needed.
size: Size of data to generate and write to file.
size: Number of bytes to generate and write to file.
"""
file_path = pathlib.Path(path)
file_path.parent.mkdir(parents=True, exist_ok=True)
Expand Down Expand Up @@ -98,7 +98,6 @@ def generate_matrix(args: argparse.Namespace):
args: The arguments specifying the request.
"""
sizes = generate_file_sizes(args.size // args.m, args.n, args.w)
print(sizes)
exact = args.size % args.m == 0
last = args.m if exact else (args.m - 1)

Expand Down

0 comments on commit c185849

Please sign in to comment.