Skip to content

Commit 6346797

Browse files
remove temp changes
1 parent 0552df7 commit 6346797

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

python/triton_kernels/tests/test_matmul.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,6 @@ def alloc_rand(shape, device, dtype, requires_grad=True):
3434
return tmp.to(dtype).requires_grad_(requires_grad)
3535
return torch.randn(shape, device=device, dtype=dtype, requires_grad=requires_grad)
3636

37-
# def alloc_ones(shape, device, dtype, requires_grad=True):
38-
# return torch.ones(shape, device=device, dtype=dtype, requires_grad=requires_grad)
39-
40-
# def alloc_zeros(shape, device, dtype, requires_grad=True):
41-
# return torch.zeros(shape, device=device, dtype=dtype, requires_grad=requires_grad)
42-
4337

4438
def alloc_rand_like(x):
4539
return alloc_rand(x.shape, x.device, x.dtype, x.requires_grad)

0 commit comments

Comments
 (0)