You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Convert listen_comm function pointers to virtual methods
Replace accept() and close() function pointers in nccl_net_ofi_listen_comm
with virtual methods. This eliminates manual function pointer assignment
and provides compile-time verification that all implementations provide
these methods.
Before: listen_comm->accept(listen_comm, &recv_comm);
After: listen_comm->accept(&recv_comm);
Signed-off-by: Bibrak Qamar Chandio <bibracha@amazon.com>
0 commit comments