-
Notifications
You must be signed in to change notification settings - Fork 40
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
4 New EC2 Instances with Recommended Configuration #476
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.
.
source/s3_platform_info.c
Outdated
.has_recommended_configuration = true, | ||
}; | ||
|
||
/***** End p4d.24xlarge and p4de.24xlarge ****/ | ||
|
||
/***** Begin p5.48xlarge ******/ | ||
/***** Begin p5_.48xlarge ******/ |
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.
what's with having both _
and .
?
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.
It's a section for the p5 family, so _
means p5+(e/en etc), and .
is part of the instance name.
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 have gotten rid of _
since it was confusing and made the sections explicit.
source/s3_platform_info.c
Outdated
.has_recommended_configuration = true, | ||
}; | ||
/***** End p5.48xlarge *****/ | ||
|
||
/**** Begin trn2_48_large *****/ |
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.
trivial: why switch from .
to _
in these comments? (this repeats again in the End comment)
.instance_type = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("trn2.48xlarge"), | ||
/* not all of the advertised 1600 Gbps bandwidth can be hit from the cpu in user-space */ | ||
.max_throughput_gbps = 400, | ||
.has_recommended_configuration = true, |
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.
need to coordinate with python teams on this...
We decided not to merge this for now. |
Description of changes:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.