Fix tile size on ampere (#116)

Fix tile size on ampere

Co-authored-by: Aleksandr Borzunov <borzunov.alexander@gmail.com>
pull/115/head^2
justheuristic 1 year ago committed by GitHub
parent 617d70f7dc
commit 9e11f73242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -107,7 +107,7 @@ class CustomMatmulLtState(MatmulLtState):
"col_turing",
"col_ampere",
), f"please find this assert and manually enter tile size for {self.formatB}"
return (8, 32) if self.formatB == "col_turing" else "col_ampere"
return (8, 32) if self.formatB == "col_turing" else (32, 32)
def custom_matmul8bitlt(

Loading…
Cancel
Save