Revert "Fix non-contiguous input passed to Marlin kernel (#15319)" (#15398)

This commit is contained in:
Tyler Michael Smith
2025-03-24 23:43:51 -04:00
committed by GitHub
parent 6db94571d7
commit b5269db959

View File

@ -115,10 +115,6 @@ class MarlinLinearKernel(MPLinearKernel):
layer: torch.nn.Module,
x: torch.Tensor,
bias: Optional[torch.Tensor] = None) -> torch.Tensor:
# marlin requires contiguous memory layout
# prefix caching may cause x to be non-contiguous
x = x.contiguous() # no-op if already contiguous
c = self.config
w_q, w_s, w_zp, w_gidx = self._get_weight_params(layer)