aws / aws-ofi-nccl

This is a plugin which lets EC2 developers use libfabric as network provider while running NCCL applications.
Apache License 2.0
140 stars 54 forks source link

fix(neuron): remove const from ncclNetPlugin_v{4,5} syms #577

Closed aws-nslick closed 5 days ago

aws-nslick commented 4 weeks ago

Stacked PRs:


fix(neuron): remove const from ncclNetPlugin_v{4,5} syms

const variables have internal linkage by default under c++; nvidia interface requires it not be const because its modified during init. Remove const for neuron, too. Signed-off-by: Nicholas Sielicki nslick@amazon.com