Skip to content

Commit 2fda022

Browse files
committed
correct typo
Signed-off-by: Kyle Sayers <[email protected]>
1 parent 7dc182b commit 2fda022

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compressed_tensors/transform/factory/matrix_multiply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def create_transform(self, module: Module, args: TransformArgs):
6262
return RandomMatrixTransform(weight, args)
6363

6464
def _create_weight(self, size: int, dtype: dtype, device: device) -> Parameter:
65-
# TODO: verify that weight is invertable (has non-zero determinant)
65+
# TODO: verify that weight is invertible (has non-zero determinant)
6666
data = torch.rand(
6767
(size, size), generator=self.generator, dtype=dtype, device=device
6868
)

0 commit comments

Comments
 (0)