Unverified Commit b5269db9 authored by Tyler Michael Smith's avatar Tyler Michael Smith Committed by GitHub
Browse files

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

parent 6db94571
......@@ -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)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment