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
{{ message }}
This repository was archived by the owner on Sep 18, 2025. It is now read-only.
I mutated this script in a few versions, and I am getting odd performance characteristics:
If I have a server+client pair like the example above, and i put it in a loop, even re-using the connection, i get around <10% of bandwidth.
If I have a server+client pair, where the client sends an array to the server, and the server sends an array back, and so-on and so-forth, ping-pong-ing, i get <10% of bandwidth.
If I have a server+client pair, where the client is repeatedly sending data in a loop re-using the same connection, and the server just receiving them, i get close to 90% line-rate (yay) as long as the messages are large
Any tips on the above?
Any plans for a ucx_perftest but for ucx-py?
(PS, I was a first engineer on AI-Infra org at NVIDIA, hiiiii! 👋 )
I have been using
ucx_perftestto successfully confirm UCX performing close to line-rates.I then took ucx-py (
import ucp), and used the send/receive example here: https://ucx-py.readthedocs.io/en/latest/quickstart.html#send-recv-numpy-arraysI mutated this script in a few versions, and I am getting odd performance characteristics:
ucx_perftestbut for ucx-py?(PS, I was a first engineer on AI-Infra org at NVIDIA, hiiiii! 👋 )