Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cvs/models/rccl.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class RcclTests(BaseModel):
model_config = ConfigDict(frozen=True)
numCycle: NonNegativeInt
name: Collective
size: PositiveInt
size: NonNegativeInt
type: Type
redop: Redop
inPlace: InPlace
Expand Down Expand Up @@ -138,7 +138,7 @@ class RcclTestsAggregated(BaseModel):
# Grouping keys
model_config = ConfigDict(frozen=True, populate_by_name=True)
name: Collective = Field(alias='collective')
size: PositiveInt
size: NonNegativeInt
type: Type
inPlace: InPlace

Expand Down