Skip to content

Commit a9322ab

Browse files
committed
remove debug prints
1 parent 47f4d13 commit a9322ab

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

more_math/helper_functions.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,6 @@ def generate_dim_variables(tensor):
9191
variables = {}
9292
for dim, size in enumerate(tensor.shape):
9393
variables[f'D{dim}'] = getIndexTensorAlongDim(tensor, dim)
94-
print(tensor)
95-
print(tensor.shape)
96-
print(variables[f'D{dim}'])
97-
print(dim)
98-
print(size)
9994
variables[f'S{dim}'] = torch.full(tensor.shape, fill_value=size, dtype=torch.float32, device=tensor.device)
10095
return variables
10196

0 commit comments

Comments
 (0)