feat(parsers): add pydantic schemas for the health suite configs - #339
Open
speriaswamy-amd wants to merge 1 commit into
Open
feat(parsers): add pydantic schemas for the health suite configs#339speriaswamy-amd wants to merge 1 commit into
speriaswamy-amd wants to merge 1 commit into
Conversation
Second pilot suite for AIMVT-276. One config file (mi300_health_config.json) serves seven tests, each reading a different top-level section -- agfhc, rvs, transferbench -- so the three models here are independent rather than nested under a shared root. AIMVT-276.
speriaswamy-amd
force-pushed
the
speriaswamy/cvsman-06-health-schemas
branch
from
August 14, 2026 20:33
3d8b8e0 to
5f02195
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Part 6 of 14 in a stack for AIMVT-276. Base: #338.
Why
Second pilot suite. One config file (
mi300_health_config.json) serves seven tests (agfhc_cvs,csp_qual_agfhc,install_agfhc,rvs_cvs,install_rvs,transferbench_cvs,install_transferbench), each reading a different top-level section —agfhc,rvs,transferbench. Requirements differ per test even within a section (e.g.agfhc_cvsneedshbm_test_durationand never readslog_dir;csp_qual_agfhcis the reverse), so each field's description calls out which test actually reads it.What changed
cvs/parsers/config_schemas/health.py(new) —AgfhcConfigFile,TransferBenchConfigFile(+TransferBenchResults),RvsConfigFile(+RvsTestConfig). Independent models, not nested under a shared root, matching how the tests actually consume them.cvs/parsers/config_schemas/__init__.py— re-exports grow to include these.