-
Notifications
You must be signed in to change notification settings - Fork 80
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
Using the new core type system #903
Using the new core type system #903
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.
LGTM. A few minor nits, but no blockers.
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.
LGTM
@@ -552,7 +552,7 @@ void sample_sort_nd(SortPiece<legate_type_of<CODE>> local_sorted, | |||
/*comm::coll::collAllgather(p_samples + num_samples_l * my_sort_rank, | |||
p_samples, | |||
num_samples_l * sizeof(SegmentSample<VAL>), | |||
comm::coll::CollDataType::CollUint8, | |||
comm::coll::CollDataType::Code::CollUint8, |
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.
Overeager search/replace
This PR updates the cuNumeric code to use the new core type system in nv-legate/legate#697. Though this PR updates almost every C++ file in the repository, the majority of changes is just to catch up the changes in type codes (
legate::LegateTypeCode
=>legate::Type::Code
).