Skip to content

Commit f9ece1b

Browse files
authoredMar 30, 2024
Python Gemm tile_descriptions fix (#1439)
* fix python gemm tile descriptions * fix formatting * fix math_operation filtering * fix formatting
1 parent 28cbacb commit f9ece1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/cutlass/op/gemm.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def tile_descriptions(self) -> list:
403403
"""
404404
tds = [datatypes.td_from_profiler_op(op) for op in self.possible_operations.all_operations]
405405
if self._math_operation is not None:
406-
tds = [td for td in tds if td.tile_description.math_instruction == self._math_operation]
406+
tds = [td for td in tds if td.math_instruction.math_operation == self._math_operation]
407407
return tds
408408

409409
def construct(
@@ -712,4 +712,4 @@ def run(self, A=None, B=None, C=None, D=None,
712712
if sync:
713713
arguments.sync()
714714

715-
return arguments
715+
return arguments

0 commit comments

Comments
 (0)