Skip to content

Commit f0ce524

Browse files
committed
PR fixes
1 parent de7f0b2 commit f0ce524

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/api/gpu/ucx/nixl_device.cuh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ enum nixl_gpu_coordination_level_t {
3939
*
4040
* @param req_hndl [in] The request handle.
4141
* @param address [in] The local address of the memory to be transferred.
42-
* @param remote_addr [in] The remote address of the memory to be transferred.
42+
* @param remote_addr [in] The remote address of the memory to be transferred to.
4343
* @param xfer_status [out] The status of the transfer. If null the status is not reported.
4444
* @param is_no_delay [in] Whether to use no-delay mode. True by default.
4545
*
@@ -61,7 +61,7 @@ nixlGpuPostMemXferReq(nixlGpuXferReqH* req_hndl,
6161
*
6262
* @param req_hndl [in] The request handle.
6363
* @param signal_inc [in] The increment of the signal.
64-
* @param signal_remote_addr [in] The remote address of the signal.
64+
* @param signal_remote_addr [in] The remote address of the signal to be sent to.
6565
* @param xfer_status [out] The status of the transfer. If null the status is not reported.
6666
* @param is_no_delay [in] Whether to use no-delay mode. True by default.
6767
*
@@ -86,9 +86,9 @@ nixlGpuPostSignalXferReq(nixlGpuXferReqH* req_hndl,
8686
* @param indices [in] The indices of the blocks to send.
8787
* @param sizes [in] The sizes of the blocks to send.
8888
* @param addresses [in] The addresses of the blocks to send.
89-
* @param remote_addrs [in] The remote addresses of the blocks to send.
90-
* @param signal_remote_addr [in] The remote address of the signal. If address is 0, no signal.
89+
* @param remote_addrs [in] The remote addresses of the blocks to send to.
9190
* @param signal_inc [in] The increment of the signal.
91+
* @param signal_remote_addr [in] The remote address of the signal to be sent to. If address is 0, no signal.
9292
* @param xfer_status [out] The status of the transfer. If null the status is not reported.
9393
* @param is_no_delay [in] Whether to use no-delay mode.
9494
*
@@ -102,8 +102,8 @@ nixlGpuPostPartialMemXferReq(nixlGpuXferReqH* req_hndl,
102102
const size_t* sizes,
103103
const void** addresses,
104104
const uint64_t* remote_addrs,
105-
uint64_t signal_remote_addr,
106105
uint64_t signal_inc,
106+
uint64_t signal_remote_addr,
107107
nixlGpuXferStatusH* xfer_status = nullptr,
108108
bool is_no_delay = true)
109109
{
@@ -116,22 +116,22 @@ nixlGpuPostPartialMemXferReq(nixlGpuXferReqH* req_hndl,
116116
* @param req_hndl [in] The request handle.
117117
* @param sizes [in] The sizes of the blocks to send.
118118
* @param addresses [in] The addresses of the blocks to send.
119-
* @param remote_addrs [in] The remote addresses of the blocks to send.
120-
* @param signal_remote_addr [in] The remote address of the signal. If address is 0, no signal.
119+
* @param remote_addrs [in] The remote addresses of the blocks to send to.
121120
* @param signal_inc [in] The increment of the signal.
121+
* @param signal_remote_addr [in] The remote address of the signal to be sent to. If address is 0, no signal.
122122
* @param xfer_status [out] The status of the transfer. If null the status is not reported.
123123
* @param is_no_delay [in] Whether to use no-delay mode.
124124
*
125125
* @return nixl_status_t Error code if call was not successful
126126
*/
127127
template<nixl_gpu_coordination_level_t level = NIXL_GPU_COORDINATION_BLOCK>
128128
__device__ static inline nixl_status_t
129-
nixlPostGpuXferReq(nixlGpuXferReqH* req_hndl,
129+
nixlGpuPostXferReq(nixlGpuXferReqH* req_hndl,
130130
const size_t* sizes,
131131
const void** addresses,
132132
const uint64_t* remote_addrs,
133-
uint64_t signal_remote_addr,
134133
uint64_t signal_inc,
134+
uint64_t signal_remote_addr,
135135
nixlGpuXferStatusH* xfer_status = nullptr,
136136
bool is_no_delay = true)
137137
{

0 commit comments

Comments
 (0)