MCPcopy Create free account
hub / github.com/KnowingNothing/MatmulTutorial / Mapping

Class Mapping

cutlass.py/mapping.py:13–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11 raise NotImplementedError()
12
13class Mapping(Function):
14 def __init__(self, functions: Optional[List[Function]] = None) -> None:
15 self.functions = functions if functions is not None else []
16 for func in self.functions:
17 assert isinstance(func, Function), "Should put Function type in Mapping."
18
19@dataclass
20class Layout(Function):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected