Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
guidorice committed Dec 1, 2023
1 parent a0301b1 commit ec0af46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mojo_impl/naive.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ fn main() raises:
let spec = TensorSpec(dtype, dims, width)
let tensor = rand[dtype](spec)

# run bechmark module
# run benchmark module
@parameter
fn envelope_worker():
_ = envelope[dtype, dims](tensor)
Expand Down
2 changes: 1 addition & 1 deletion mojo_impl/optimized_a.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fn main() raises:
let spec = TensorSpec(dtype, dims, width)
let tensor = rand[dtype](spec)

# run bechmark module
# run benchmark module
@parameter
fn envelope_worker():
_ = envelope[dtype, dims](tensor)
Expand Down
2 changes: 1 addition & 1 deletion mojo_impl/optimized_b.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ fn main() raises:
let spec = TensorSpec(dtype, dims, width)
let tensor = rand[dtype](spec)

# run bechmark module
# run benchmark module
@parameter
fn envelope_worker():
_ = envelope[dtype, dims](tensor)
Expand Down

0 comments on commit ec0af46

Please sign in to comment.