Skip to content

Commit

Permalink
Update bitsandbytes/functional.py
Browse files Browse the repository at this point in the history
Co-authored-by: Aarni Koskela <[email protected]>
  • Loading branch information
matthewdouglas and akx authored Nov 5, 2024
1 parent 03a1963 commit 980279f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bitsandbytes/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -2445,9 +2445,9 @@ def mm_dequant(

def get_colrow_absmax(
A: torch.Tensor,
row_stats: torch.Tensor = None,
col_stats: torch.Tensor = None,
nnz_block_ptr: torch.Tensor = None,
row_stats: Optional[torch.Tensor] = None,
col_stats: Optional[torch.Tensor] = None,
nnz_block_ptr: Optional[torch.Tensor] = None,
threshold=0.0,
):
# Note: prior impl only works with fp16
Expand Down

0 comments on commit 980279f

Please sign in to comment.