10000 fix type · pytorch/pytorch@0795e3c · GitHub
[go: up one dir, main page]

Skip to content

Commit 0795e3c

Browse files
committed
fix type
1 parent e23d372 commit 0795e3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_matmul_cuda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ def create_inputs(B=None):
572572
if output_dtype == torch.float32:
573573
baseline = torch.addmm(c_fp32, a_fp32, b_fp32)
574574
else:
575-
baselone = torch.addmm(c, a, b)
575+
baseline = torch.addmm(c, a, b)
576576

577577
self.assertEqual(out.dtype, output_dtype)
578578
torch.testing.assert_close(out, baseline, atol=1e-3, rtol=1e-3)

0 commit comments

Comments
 (0)
0