Skip to content

Commit

Permalink
Update test_train_spmd_linear_model.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfeiBai authored Dec 11, 2024
1 parent 00de506 commit 712855a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/spmd/test_train_spmd_linear_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self):
self.fc1 = nn.Linear(FLAGS.input_dim, FLAGS.input_dim // 2)
self.relu = nn.ReLU()
self.fc2 = nn.Linear(FLAGS.input_dim // 2, 3)
# Add an additional 1x1 layer at the end to ensure the final layer
# Add an additional 3x3 layer at the end to ensure the final layer
# is not sharded.
self.fc3 = nn.Linear(3, 3)

Expand Down

0 comments on commit 712855a

Please sign in to comment.