Skip to content
Open
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 autograd/tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def trace(start_node, fun, x):
start_box = new_box(x, trace_id, start_node)

# Apply fun() to boxed value. This will carry the value throughout the
# comutation as well as the box.
# computation as well as the box.
end_box = fun(start_box)

if isbox(end_box) and end_box._trace_id == start_box._trace_id:
Expand Down