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

Method __init__

cutlass.py/mapping.py:14–17  ·  view source on GitHub ↗
(self, functions: Optional[List[Function]] = None)

Source from the content-addressed store, hash-verified

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