Skip to content

Commit

Permalink
Add some composition notes
Browse files Browse the repository at this point in the history
  • Loading branch information
hunhoffe committed Oct 25, 2024
1 parent 1785464 commit 5b2dd41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erika_demo_notes/minimal_experimental.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
def my_matrix_add_one():
tile_ty = np.ndarray[(TILE_SIZE,), np.dtype[np.int32]]

of_in = ObjectFifo(4, tile_ty, "in0")
of_out = ObjectFifo(4, tile_ty, "out0")
of_in = ObjectFifo(2, tile_ty, "in0")
of_out = ObjectFifo(2, tile_ty, "out0")

def core_fn(of_in1, of_out1):
elem_in = of_in1.acquire(1)
Expand Down

0 comments on commit 5b2dd41

Please sign in to comment.