Skip to content

Commit 93a8b60

Browse files
committed
[Refactor] Update import path in example_dequant_gemm_fine_grained.py
- Changed the import statement for `_tir_packed_to_unsigned_convert` from `bitblas.quantization` to `tilelang.quantize` to reflect the new module structure.
1 parent c610901 commit 93a8b60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/dequantize_gemm/example_dequant_gemm_fine_grained.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def matmul(
2323
threads,
2424
num_bits=4,
2525
):
26-
from bitblas.quantization import _tir_packed_to_unsigned_convert
26+
from tilelang.quantize import _tir_packed_to_unsigned_convert
2727
num_elems_per_byte = 8 // num_bits
2828
storage_dtype = "int8"
2929
storage_nbit = int("".join(c for c in storage_dtype if c.isdigit()))

0 commit comments

Comments
 (0)