Python Gemm
tile_descriptions
fix (#1439)
* fix python gemm tile descriptions * fix formatting * fix math_operation filtering * fix formatting
This commit is contained in:
parent
28cbacbf64
commit
f9ece1b42c
@ -403,7 +403,7 @@ class Gemm(OperationBase):
|
||||
"""
|
||||
tds = [datatypes.td_from_profiler_op(op) for op in self.possible_operations.all_operations]
|
||||
if self._math_operation is not None:
|
||||
tds = [td for td in tds if td.tile_description.math_instruction == self._math_operation]
|
||||
tds = [td for td in tds if td.math_instruction.math_operation == self._math_operation]
|
||||
return tds
|
||||
|
||||
def construct(
|
||||
@ -712,4 +712,4 @@ class Gemm(OperationBase):
|
||||
if sync:
|
||||
arguments.sync()
|
||||
|
||||
return arguments
|
||||
return arguments
|
Loading…
Reference in New Issue
Block a user