Skip to content

Commit

Permalink
Fix typo in testname (pytorch#78258)
Browse files Browse the repository at this point in the history
`test_linear2D_no_bias_backwarwd` -> `test_linear2D_no_bias_backward`

Pull Request resolved: pytorch#78258
Approved by: https://github.com/kulinseth, https://github.com/janeyx99
  • Loading branch information
malfet authored and pytorchmergebot committed May 25, 2022
1 parent e0a071a commit 7050826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_mps.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def test_linear2D_no_bias_backward(self):
def test_linear3D(self):
self._linear_helper(in_features=200, out_features=33278, shape=((35, 20, 200)), bias=True, backward_pass=False)

def test_linear3D_backwarwd(self):
def test_linear3D_backward(self):
self._linear_helper(in_features=200, out_features=33278, shape=((35, 20, 200)), bias=True, backward_pass=True)

def test_linear3D_no_bias(self):
Expand Down

0 comments on commit 7050826

Please sign in to comment.