-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
add UCC for collective communication #71063
base: develop
Are you sure you want to change the base?
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
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.
- 确保UCC测试在CI上测试通过
- 需要在 AllReduce,Reduce, Broadcast,ReduceScatter, AllGather 等多个通信算子上验证正确性
: TaskStream(rank, comm_type, sync_op, use_calc_stream), | ||
task_place_(place) { | ||
// if (!use_calc_stream) { | ||
// comm_event_ = std::make_shared<platform::DeviceEvent>( |
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.
删掉废弃代码,其他地方同样处理。
// if (UseCalcStream()) { | ||
// VLOG(5) << "Warning: The communication is on calc stream, wait here is | ||
// " | ||
// "useless."; |
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.
删掉废弃代码
PR Category
Communication Library
PR Types
Devs
Description
add UCC for collective communication, not fully implemented, waiting for further development