@@ -469,7 +469,7 @@ class ucp_perf_test_runner {
469
469
}
470
470
471
471
UCS_F_ALWAYS_INLINE ucs_status_t send_daemon_req (void *buffer,
472
- unsigned length)
472
+ size_t length)
473
473
{
474
474
ucp_ep_h ep = m_perf.ucp .ep ;
475
475
ucp_request_param_t param = {
@@ -491,7 +491,7 @@ class ucp_perf_test_runner {
491
491
}
492
492
493
493
ucs_status_t UCS_F_ALWAYS_INLINE
494
- send (ucp_ep_h ep, void *buffer, unsigned length, ucp_datatype_t datatype,
494
+ send (ucp_ep_h ep, void *buffer, size_t length, ucp_datatype_t datatype,
495
495
psn_t sn, uint64_t remote_addr, ucp_rkey_h rkey, bool get_info = false )
496
496
{
497
497
ucp_request_param_t *param = get_info ? &m_send_get_info_params :
@@ -570,7 +570,7 @@ class ucp_perf_test_runner {
570
570
}
571
571
572
572
ucs_status_t UCS_F_ALWAYS_INLINE
573
- recv (ucp_worker_h worker, ucp_ep_h ep, void *buffer, unsigned length,
573
+ recv (ucp_worker_h worker, ucp_ep_h ep, void *buffer, size_t length,
574
574
ucp_datatype_t datatype, psn_t sn)
575
575
{
576
576
void *request;
@@ -914,7 +914,7 @@ class ucp_perf_test_runner {
914
914
915
915
private:
916
916
ucs_status_t UCS_F_ALWAYS_INLINE
917
- recv_stream_data (ucp_ep_h ep, unsigned length, ucp_datatype_t datatype)
917
+ recv_stream_data (ucp_ep_h ep, size_t length, ucp_datatype_t datatype)
918
918
{
919
919
void *data;
920
920
size_t data_length;
@@ -933,7 +933,7 @@ class ucp_perf_test_runner {
933
933
}
934
934
935
935
ucs_status_t UCS_F_ALWAYS_INLINE
936
- recv_stream (ucp_ep_h ep, void *buf, unsigned length, ucp_datatype_t datatype)
936
+ recv_stream (ucp_ep_h ep, void *buf, size_t length, ucp_datatype_t datatype)
937
937
{
938
938
ssize_t total = 0 ;
939
939
void *rreq;
0 commit comments