(data:Tensor)
| 597 | return value.expand(shape) |
| 598 | |
| 599 | def Size(data:Tensor): return data.numel() |
| 600 | def Shape(data:Tensor, end:int|None=None, start:int=0): return Tensor(data.shape[start:end], dtype=dtypes.int64, device=data.device) |
| 601 | |
| 602 | # ***** Unary Ops (math) ***** |
nothing calls this directly
no test coverage detected
searching dependent graphs…