Skip to content

Commit 5e8c110

Browse files
committed
save
1 parent d7dda23 commit 5e8c110

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

beginner_source/examples_autograd/two_layer_net_autograd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# The above line disables TensorFloat32. This a feature that allows
2525
# networks to run at a much faster speed while sacrificing precision.
2626
# Although TensorFloat32 works well on most real models, for our toy model
27-
# in this tutorial, the sacrificed precision causes precision issue.
27+
# in this tutorial, the sacrificed precision causes convergence issue.
2828
# For more information, see:
2929
# https://pytorch.org/docs/stable/notes/cuda.html#tensorfloat-32-tf32-on-ampere-devices
3030

beginner_source/examples_autograd/two_layer_net_custom_function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def backward(ctx, grad_output):
5454
# The above line disables TensorFloat32. This a feature that allows
5555
# networks to run at a much faster speed while sacrificing precision.
5656
# Although TensorFloat32 works well on most real models, for our toy model
57-
# in this tutorial, the sacrificed precision causes precision issue.
57+
# in this tutorial, the sacrificed precision causes convergence issue.
5858
# For more information, see:
5959
# https://pytorch.org/docs/stable/notes/cuda.html#tensorfloat-32-tf32-on-ampere-devices
6060

0 commit comments

Comments
 (0)