Uniform integer random input in [low, high).
| 23 | |
| 24 | |
| 25 | class RandIntTensor: |
| 26 | """Uniform integer random input in [low, high).""" |
| 27 | |
| 28 | def __init__(self, shape, low, high, dtype="int32"): |
| 29 | self.shape = tuple(shape) |
| 30 | self.low = low |
| 31 | self.high = high |
| 32 | self.dtype = dtype |
| 33 | |
| 34 | |
| 35 | class FullTensor: |
no outgoing calls
no test coverage detected