Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ system-requirements = { macos = "15.0" }
[dependencies]
python = "==3.12"
mojo = "<1.0.0" # includes `mojo-compiler`, lsp, debugger, formatter etc.
max = "==26.3.0.dev2026033105"
max = "==26.3.0.dev2026042005"
bash = ">=5.2.21,<6"
manim = ">=0.18.1,<0.19"
mdbook = ">=0.4.48,<0.5"
Expand Down
2 changes: 1 addition & 1 deletion problems/p22/op/layernorm_linear.mojo
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from std.math import sqrt
from std.gpu import thread_idx, block_idx, block_dim, barrier
from std.gpu.memory import AddressSpace, async_copy_wait_all
from std.os.atomic import Atomic
from std.atomic import Atomic
from layout import TileTensor
from layout.tile_layout import row_major, TensorLayout
from layout.tile_tensor import stack_allocation
Expand Down
2 changes: 1 addition & 1 deletion problems/p27/p27.mojo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from std.gpu import thread_idx, block_idx, block_dim, grid_dim, barrier
from std.os.atomic import Atomic
from std.atomic import Atomic
from std.gpu.primitives.warp import WARP_SIZE
from std.gpu.primitives import block
from std.gpu.host import DeviceContext
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "1.0.0"
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"mojo>=0.26.3.0.dev2026033105,<1.0.0",
"max==26.3.0.dev2026033105",
"mojo>=0.26.3.0.dev2026042005,<1.0.0",
"max==26.3.0.dev2026042005",
"poethepoet>=0.34.0",
"scipy>=1.15.3",
"torch==2.7.1",
Expand Down
1 change: 0 additions & 1 deletion solutions/p10/p10.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ from layout.tile_layout import row_major
from layout.tile_tensor import stack_allocation
from std.testing import assert_equal
from std.sys import argv
from std.os.atomic import Atomic

# ANCHOR: shared_memory_race_solution

Expand Down
2 changes: 1 addition & 1 deletion solutions/p22/op/layernorm_linear.mojo
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from std.math import sqrt
from std.gpu import thread_idx, block_idx, block_dim, barrier
from std.gpu.memory import AddressSpace
from std.os.atomic import Atomic
from std.atomic import Atomic
from layout import TileTensor
from layout.tile_layout import row_major, TensorLayout
from layout.tile_tensor import stack_allocation
Expand Down
2 changes: 1 addition & 1 deletion solutions/p27/p27.mojo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from std.gpu import thread_idx, block_idx, block_dim, grid_dim, barrier
from std.os.atomic import Atomic
from std.atomic import Atomic
from std.gpu.primitives.warp import WARP_SIZE
from std.gpu.primitives import block
from std.gpu.host import DeviceContext
Expand Down
Loading