-
Notifications
You must be signed in to change notification settings - Fork 427
add the forge folder #1387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
add the forge folder #1387
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks for adding this! I have a handful of comments, but no major concerns
float8: Float8 = field(default_factory=Float8) | ||
mx: MX = field(default_factory=MX) | ||
comm: Comm = field(default_factory=Comm) | ||
fault_tolerance: FaultTolerance = field(default_factory=FaultTolerance) | ||
experimental: Experimental = field(default_factory=Experimental) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the spirit of starting minimal I would leave most of these out for now. Lmk if you disagree though (I am also happy to come back later and add them as needed)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can do that. We probably want to keep the Comm
for debugging purpose. It is used in init_distributed
depending on #1384 and #1397