Skip to content

Commit

Permalink
Fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
vatai committed Sep 21, 2024
1 parent 2b74a0d commit 7a9ac8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions readme.org
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ is available on the selected node.
print(f"{node=}")
tr = tadashi.TrEnum.FULL_SHIFT_VAR
print(f"{tr in node.available_transformations=}")
# outpyt:
# output:
#+end_src

#+RESULTS:
Expand All @@ -46,7 +46,7 @@ Check the available arguments for the given node-transformation pair.
print(f"{len(lu)=}")
print(f"{lu[0]=}")
print(f"{lu[1]=}")
# outpyt:
# output:
#+end_src

#+RESULTS:
Expand All @@ -62,7 +62,7 @@ Perform the transformation and check legality.
print(f"{node.valid_args(tr, *args)=}")
legal = node.transform(tr, *args)
print(f"{legal=}")
# outpyt:
# output:
#+end_src

#+RESULTS:
Expand All @@ -74,7 +74,7 @@ Generate new code, compile it and measure the performance.
scops.generate_code()
app.compile()
print(f"{app.measure()=}")
# outpyt:
# output:
#+end_src

#+RESULTS:
Expand Down

0 comments on commit 7a9ac8a

Please sign in to comment.