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

Class Environment

src/sol_execbench/core/data/trace.py:73–83  ·  view source on GitHub ↗

Environment information from evaluation execution. Records the hardware and software environment details from when the evaluation was performed, enabling reproducibility analysis.

Source from the content-addressed store, hash-verified

71
72
73class Environment(BaseModelWithDocstrings):
74 """Environment information from evaluation execution.
75
76 Records the hardware and software environment details from when
77 the evaluation was performed, enabling reproducibility analysis.
78 """
79
80 hardware: NonEmptyString
81 """Hardware identifier where the evaluation was performed (e.g., 'NVIDIA_H100')."""
82 libs: dict[str, str] = Field(default_factory=dict)
83 """Dictionary of library names to version strings used during evaluation."""
84
85
86class EvaluationStatus(str, Enum):

Callers 1

env_snapshotFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected