(self, shape, value=0.0, dtype="float32")
| 36 | """Constant-filled input (covers zeros / ones / full).""" |
| 37 | |
| 38 | def __init__(self, shape, value=0.0, dtype="float32"): |
| 39 | self.shape = tuple(shape) |
| 40 | self.value = value |
| 41 | self.dtype = dtype |
| 42 | |
| 43 | |
| 44 | class OutTensor: |
nothing calls this directly
no outgoing calls
no test coverage detected