MCPcopy Create free account
hub / github.com/NVIDIA/SOL-ExecBench / CustomInput

Class CustomInput

src/sol_execbench/core/data/workload.py:67–74  ·  view source on GitHub ↗

Custom input specification. Represents an that is generated from custom reference code. If a single input is this type, all inputs should be this type. Requires Definition.custom_inputs_entrypoint to be set.

Source from the content-addressed store, hash-verified

65
66
67class CustomInput(BaseModelWithDocstrings):
68 """Custom input specification.
69
70 Represents an that is generated from custom reference code. If a single input is this type, all inputs should be this type. Requires Definition.custom_inputs_entrypoint to be set.
71 """
72
73 type: Literal["custom"] = "custom"
74 """The input type identifier for inputs generated by the reference code."""
75
76
77InputSpec = Union[RandomInput, SafetensorsInput, ScalarInput, CustomInput]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected