-
Notifications
You must be signed in to change notification settings - Fork 431
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
IB/TEST: Implement put_short() for message rate. #26
Conversation
Test FAILed. Build Log
Test FAILed. |
+ Poll for RC completions + Check if there is room in th RC QP before posting + Implement iface_flush() + Add message rate performance tests + Implement test warmup cycles + rename "hw_name" to "dev_name"
@@ -25,7 +25,7 @@ ucs_status_t uct_rc_ep_init(uct_rc_ep_t *ep) | |||
qp_init_attr.send_cq = iface->super.send_cq; | |||
qp_init_attr.recv_cq = iface->super.recv_cq; | |||
qp_init_attr.srq = NULL; /* TODO */ | |||
qp_init_attr.cap.max_send_wr = 1024; | |||
qp_init_attr.cap.max_send_wr = UCT_RC_TX_QP_LEN; |
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.
I guess this is one of the TODO things that in feature you plan to make tunable
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.
Yes. so far we have not dealt with the issue of how to pass the configuration to the objects, but i guess would need to do it soon.
Test FAILed. Build Log
Test FAILed. |
af8ad6d
to
b953b3d
Compare
Test FAILed. Build Log
Test FAILed. |
Test FAILed. Build Log
Test FAILed. |
Test FAILed. Build Log
Test FAILed. |
Test PASSed. |
👍 |
IB/TEST: Implement put_short() for message rate.
No description provided.