diff options
author | Tim Dettmers <tim.dettmers@gmail.com> | 2022-08-03 14:17:54 -0700 |
---|---|---|
committer | Tim Dettmers <tim.dettmers@gmail.com> | 2022-08-03 14:17:54 -0700 |
commit | 320eacb4c23adeaaf4a54166f19eac950aa631f1 (patch) | |
tree | 0dae82a875ba3bb5cc8851ac08374ca7adebf4d4 | |
parent | 451fd9506e215aa25643e9782cb7d8aed2a266cc (diff) |
Removed print statement.
-rw-r--r-- | bitsandbytes/functional.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bitsandbytes/functional.py b/bitsandbytes/functional.py index 494de1b..334bdd9 100644 --- a/bitsandbytes/functional.py +++ b/bitsandbytes/functional.py @@ -928,8 +928,6 @@ def igemmlt(A, B, SA, SB, out=None, Sout=None, dtype=torch.int32): rows = n = shapeB[0] assert math.prod(list(shapeA)) > 0, f'Input tensor dimensions need to be > 0: {shapeA}' - print(shapeA, math.prod(shapeA), math.prod(list(shapeA))) - print('aaa') # if the tensor is empty, return a transformed empty tensor with the right dimensions if shapeA[0] == 0 and dimsA == 2: |