Skip to content

Commit

Permalink
Drop in-place op in GNN example (#8958)
Browse files Browse the repository at this point in the history
Fixes #8953
  • Loading branch information
rusty1s committed Feb 23, 2024
1 parent 25b2f20 commit f0e0d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/tutorial/create_gnn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ The full layer implementation is shown below:
out = self.propagate(edge_index, x=x, norm=norm)
# Step 6: Apply a final bias vector.
out += self.bias
out = out + self.bias
return out
Expand Down

0 comments on commit f0e0d32

Please sign in to comment.