Random input generation descriptor. Represents a specification for generating random tensor input data during workload execution and benchmarking.
| 25 | |
| 26 | |
| 27 | class RandomInput(BaseModelWithDocstrings): |
| 28 | """Random input generation descriptor. |
| 29 | |
| 30 | Represents a specification for generating random tensor input data |
| 31 | during workload execution and benchmarking. |
| 32 | """ |
| 33 | |
| 34 | type: Literal["random"] = "random" |
| 35 | """The input type identifier for random data generation.""" |
| 36 | |
| 37 | |
| 38 | class ScalarInput(BaseModelWithDocstrings): |
nothing calls this directly
no outgoing calls
no test coverage detected