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

Method append_and_get

cutlass.py/tiling.py:40–43  ·  view source on GitHub ↗
(self, v: Union[int, IntegerType])

Source from the content-addressed store, hash-verified

38 return self.ndim
39
40 def append_and_get(self, v: Union[int, IntegerType]):
41 dimensions = [x for x in self.dimensions] + [v]
42 ret = HyperCube(self.ndim + 1, dimensions)
43 return ret
44
45 def dim_is_dynamic(self, key: int):
46 return isinstance(self[key], IntegerType)

Callers 2

get_grid_shapeMethod · 0.80
tile_scheduler.pyFile · 0.80

Calls 1

HyperCubeClass · 0.85

Tested by

no test coverage detected