Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion third_party/tlx/language/tlx/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ def to_ir(self, builder: ir.builder) -> None:
self.numCTASplit,
self.numCTAOrder,
self.fp4Padded,
self.swizzled,
)

def __str__(self) -> str:
Expand All @@ -189,7 +190,7 @@ def __eq__(self, other) -> bool:
return (type(self) is type(other) and self.shape == other.shape and self.order == other.order
and self.elemType == other.elemType and self.numCTAsPerCGA == other.numCTAsPerCGA
and self.numCTASplit == other.numCTASplit and self.numCTAOrder == other.numCTAOrder
and self.fp4Padded == other.fp4Padded)
and self.fp4Padded == other.fp4Padded and self.swizzled == other.swizzled)


class storage_kind(enum.Enum):
Expand Down
Loading