Skip to content

Commit

Permalink
Fix incorrect output in Python tutorial, lesson 5 (#8331)
Browse files Browse the repository at this point in the history
  • Loading branch information
qqaatw authored Jun 28, 2024
1 parent a6f5ca4 commit 461c128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python_bindings/tutorial/lesson_05_scheduling_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ def main():
output = gradient.realize([4, 4])

print("Equivalent C:")
for yy in range(4):
for xx in range(4):
for xx in range(4):
for yy in range(4):
print("Evaluating at x = %d, y = %d: %d" % (xx, yy, xx + yy))

print()
Expand Down

0 comments on commit 461c128

Please sign in to comment.