1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
/*
* Copyright (C) Mellanox Technologies Ltd. 2001-2017. ALL RIGHTS RESERVED.
*
* See file LICENSE for terms.
*/
/** @file ucp_compat.h */
/**
* @ingroup UCP_WORKER
* @deprecated Replaced by @ref ucp_listener_conn_handler_t.
*/
typedef struct ucp_listener_accept_handler ucp_listener_accept_handler_t;
/**
* @ingroup UCP_COMM
* @deprecated Replaced by @ref ucp_request_test.
*/
int ;
/**
* @ingroup UCP_ENDPOINT
* @deprecated Replaced by @ref ucp_request_free.
*/
void ;
/**
* @ingroup UCP_ENDPOINT
* @deprecated Replaced by @ref ucp_ep_close_nb.
*/
void ;
/**
* @ingroup UCP_ENDPOINT
* @deprecated Replaced by @ref ucp_ep_close_nb.
*/
ucs_status_ptr_t ;
/**
* @ingroup UCP_ENDPOINT
* @deprecated Replaced by @ref ucp_tag_recv_request_test and
* @ref ucp_request_check_status depends on use case.
*
* @note Please use @ref ucp_request_check_status for cases that only need to
* check the completion status of an outstanding request.
* @ref ucp_request_check_status can be used for any type of request.
* @ref ucp_tag_recv_request_test should only be used for requests
* returned by @ref ucp_tag_recv_nb (or request allocated by user for
* @ref ucp_tag_recv_nbr) for which additional information
* (returned via the @a info pointer) is needed.
*/
ucs_status_t ;
/**
* @ingroup UCP_ENDPOINT
* @deprecated Replaced by @ref ucp_ep_flush_nb.
*/
ucs_status_t ;
/**
* @ingroup UCP_WORKER
*
* @brief Flush outstanding AMO and RMA operations on the @ref ucp_worker_h
* "worker"
* @deprecated Replaced by @ref ucp_worker_flush_nb. The following example
* implements the same functionality using @ref ucp_worker_flush_nb :
* @code
* ucs_status_t worker_flush(ucp_worker_h worker)
* {
* void *request = ucp_worker_flush_nb(worker);
* if (request == NULL) {
* return UCS_OK;
* } else if (UCS_PTR_IS_ERR(request)) {
* return UCS_PTR_STATUS(request);
* } else {
* ucs_status_t status;
* do {
* ucp_worker_progress(worker);
* status = ucp_request_check_status(request);
* } while (status == UCS_INPROGRESS);
* ucp_request_release(request);
* return status;
* }
* }
* @endcode
*
*
* This routine flushes all outstanding AMO and RMA communications on the
* @ref ucp_worker_h "worker". All the AMO and RMA operations issued on the
* @a worker prior to this call are completed both at the origin and at the
* target when this call returns.
*
* @note For description of the differences between @ref ucp_worker_flush
* "flush" and @ref ucp_worker_fence "fence" operations please see
* @ref ucp_worker_fence "ucp_worker_fence()"
*
* @param [in] worker UCP worker.
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_COMM
* @brief Blocking remote memory put operation.
* @deprecated Replaced by @ref ucp_put_nb. The following example implements
* the same functionality using @ref ucp_put_nb :
* @code
* void empty_callback(void *request, ucs_status_t status)
* {
* }
*
* ucs_status_t put(ucp_ep_h ep, const void *buffer, size_t length,
* uint64_t remote_addr, ucp_rkey_h rkey)
* {
* void *request = ucp_put_nb(ep, buffer, length, remote_addr, rkey,
* empty_callback),
* if (request == NULL) {
* return UCS_OK;
* } else if (UCS_PTR_IS_ERR(request)) {
* return UCS_PTR_STATUS(request);
* } else {
* ucs_status_t status;
* do {
* ucp_worker_progress(worker);
* status = ucp_request_check_status(request);
* } while (status == UCS_INPROGRESS);
* ucp_request_release(request);
* return status;
* }
* }
* @endcode
*
* This routine stores contiguous block of data that is described by the
* local address @a buffer in the remote contiguous memory region described by
* @a remote_addr address and the @ref ucp_rkey_h "memory handle" @a rkey. The
* routine returns when it is safe to reuse the source address @e buffer.
*
* @param [in] ep Remote endpoint handle.
* @param [in] buffer Pointer to the local source address.
* @param [in] length Length of the data (in bytes) stored under the
* source address.
* @param [in] remote_addr Pointer to the destination remote address
* to write to.
* @param [in] rkey Remote memory key associated with the
* remote address.
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_COMM
* @brief Blocking remote memory get operation.
* @deprecated Replaced by @ref ucp_get_nb. @see ucp_put.
*
* This routine loads contiguous block of data that is described by the remote
* address @a remote_addr and the @ref ucp_rkey_h "memory handle" @a rkey in
* the local contiguous memory region described by @a buffer address. The
* routine returns when remote data is loaded and stored under the local address
* @e buffer.
*
*
* @param [in] ep Remote endpoint handle.
* @param [in] buffer Pointer to the local source address.
* @param [in] length Length of the data (in bytes) stored under the
* source address.
* @param [in] remote_addr Pointer to the destination remote address
* to write to.
* @param [in] rkey Remote memory key associated with the
* remote address.
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_COMM
* @brief Blocking atomic add operation for 32 bit integers
* @deprecated Replaced by @ref ucp_atomic_post with opcode UCP_ATOMIC_POST_OP_ADD.
* @see ucp_put.
*
* This routine performs an add operation on a 32 bit integer value atomically.
* The remote integer value is described by the combination of the remote
* memory address @a remote_addr and the @ref ucp_rkey_h "remote memory handle"
* @a rkey. The @a add value is the value that is used for the add operation.
* When the operation completes the sum of the original remote value and the
* operand value (@a add) is stored in remote memory.
* The call to the routine returns immediately, independent of operation
* completion.
*
* @note The remote address must be aligned to 32 bit.
*
* @param [in] ep Remote endpoint handle.
* @param [in] add Value to add.
* @param [in] remote_addr Pointer to the destination remote address
* of the atomic variable.
* @param [in] rkey Remote memory key associated with the
* remote address.
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_COMM
* @brief Blocking atomic add operation for 64 bit integers
* @deprecated Replaced by @ref ucp_atomic_post with opcode UCP_ATOMIC_POST_OP_ADD.
* @see ucp_put.
*
* This routine performs an add operation on a 64 bit integer value atomically.
* The remote integer value is described by the combination of the remote
* memory address @a remote_addr and the @ref ucp_rkey_h "remote memory handle"
* @a rkey. The @a add value is the value that is used for the add operation.
* When the operation completes the sum of the original remote value and the
* operand value (@a add) is stored in remote memory.
* The call to the routine returns immediately, independent of operation
* completion.
*
* @note The remote address must be aligned to 64 bit.
*
* @param [in] ep Remote endpoint handle.
* @param [in] add Value to add.
* @param [in] remote_addr Pointer to the destination remote address
* of the atomic variable.
* @param [in] rkey Remote memory key associated with the
* remote address.
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_COMM
* @brief Blocking atomic fetch and add operation for 32 bit integers
* @deprecated Replaced by @ref ucp_atomic_fetch_nb with opcode UCP_ATOMIC_FETCH_OP_FADD.
* @see ucp_put.
*
* This routine performs an add operation on a 32 bit integer value atomically.
* The remote integer value is described by the combination of the remote
* memory address @a remote_addr and the @ref ucp_rkey_h "remote memory handle"
* @a rkey. The @a add value is the value that is used for the add operation.
* When the operation completes, the original remote value is stored in the
* local memory @a result, and the sum of the original remote value and the
* operand value is stored in remote memory.
* The call to the routine returns when the operation is completed and the
* @a result value is updated.
*
* @note The remote address must be aligned to 32 bit.
*
* @param [in] ep Remote endpoint handle.
* @param [in] add Value to add.
* @param [in] remote_addr Pointer to the destination remote address
* of the atomic variable.
* @param [in] rkey Remote memory key associated with the
* remote address.
* @param [out] result Pointer to the address that is used to store
* the previous value of the atomic variable described
* by the @a remote_addr
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_COMM
* @brief Blocking atomic fetch and add operation for 64 bit integers
* @deprecated Replaced by @ref ucp_atomic_fetch_nb with opcode UCP_ATOMIC_FETCH_OP_FADD.
* @see ucp_put.
*
* This routine performs an add operation on a 64 bit integer value atomically.
* The remote integer value is described by the combination of the remote
* memory address @a remote_addr and the @ref ucp_rkey_h "remote memory handle"
* @a rkey. The @a add value is the value that is used for the add operation.
* When the operation completes, the original remote value is stored in the
* local memory @a result, and the sum of the original remote value and the
* operand value is stored in remote memory.
* The call to the routine returns when the operation is completed and the
* @a result value is updated.
*
* @note The remote address must be aligned to 64 bit.
*
* @param [in] ep Remote endpoint handle.
* @param [in] add Value to add.
* @param [in] remote_addr Pointer to the destination remote address
* of the atomic variable.
* @param [in] rkey Remote memory key associated with the
* remote address.
* @param [out] result Pointer to the address that is used to store
* the previous value of the atomic variable described
* by the @a remote_addr
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_COMM
* @brief Blocking atomic swap operation for 32 bit values
* @deprecated Replaced by @ref ucp_atomic_fetch_nb with opcode UCP_ATOMIC_FETCH_OP_SWAP.
* @see ucp_put.
*
* This routine swaps a 32 bit value between local and remote memory.
* The remote value is described by the combination of the remote
* memory address @a remote_addr and the @ref ucp_rkey_h "remote memory handle"
* @a rkey. The @a swap value is the value that is used for the swap operation.
* When the operation completes, the remote value is stored in the
* local memory @a result, and the operand value (@a swap) is stored in remote
* memory. The call to the routine returns when the operation is completed and
* the @a result value is updated.
*
* @note The remote address must be aligned to 32 bit.
*
* @param [in] ep Remote endpoint handle.
* @param [in] swap Value to swap.
* @param [in] remote_addr Pointer to the destination remote address
* of the atomic variable.
* @param [in] rkey Remote memory key associated with the
* remote address.
* @param [out] result Pointer to the address that is used to store
* the previous value of the atomic variable described
* by the @a remote_addr
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_COMM
* @brief Blocking atomic swap operation for 64 bit values
* @deprecated Replaced by @ref ucp_atomic_fetch_nb with opcode UCP_ATOMIC_FETCH_OP_SWAP.
* @see ucp_put.
*
* This routine swaps a 64 bit value between local and remote memory.
* The remote value is described by the combination of the remote
* memory address @a remote_addr and the @ref ucp_rkey_h "remote memory handle"
* @a rkey. The @a swap value is the value that is used for the swap operation.
* When the operation completes, the remote value is stored in the
* local memory @a result, and the operand value (@a swap) is stored in remote
* memory. The call to the routine returns when the operation is completed and
* the @a result value is updated.
*
* @note The remote address must be aligned to 64 bit.
*
* @param [in] ep Remote endpoint handle.
* @param [in] swap Value to swap.
* @param [in] remote_addr Pointer to the destination remote address
* of the atomic variable.
* @param [in] rkey Remote memory key associated with the
* remote address.
* @param [out] result Pointer to the address that is used to store
* the previous value of the atomic variable described
* by the @a remote_addr
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_COMM
* @brief Blocking atomic conditional swap (cswap) operation for 32 bit values.
* @deprecated Replaced by @ref ucp_atomic_fetch_nb with opcode UCP_ATOMIC_FETCH_OP_CSWAP.
* @see ucp_put.
*
* This routine conditionally swaps a 32 bit value between local and remote
* memory. The swap occurs only if the condition value (@a continue) is equal
* to the remote value, otherwise the remote memory is not modified. The
* remote value is described by the combination of the remote memory address @p
* remote_addr and the @ref ucp_rkey_h "remote memory handle" @a rkey. The @p
* swap value is the value that is used to update the remote memory if the
* condition is true. The call to the routine returns when the operation is
* completed and the @a result value is updated.
*
* @note The remote address must be aligned to 32 bit.
*
* @param [in] ep Remote endpoint handle.
* @param [in] compare Value to compare to.
* @param [in] swap Value to swap.
* @param [in] remote_addr Pointer to the destination remote address
* of the atomic variable.
* @param [in] rkey Remote memory key associated with the
* remote address.
* @param [out] result Pointer to the address that is used to store
* the previous value of the atomic variable described
* by the @a remote_addr
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_COMM
* @brief Blocking atomic conditional swap (cswap) operation for 64 bit values.
* @deprecated Replaced by @ref ucp_atomic_fetch_nb with opcode UCP_ATOMIC_FETCH_OP_CSWAP.
* @see ucp_put.
*
* This routine conditionally swaps a 64 bit value between local and remote
* memory. The swap occurs only if the condition value (@a continue) is equal
* to the remote value, otherwise the remote memory is not modified. The
* remote value is described by the combination of the remote memory address @p
* remote_addr and the @ref ucp_rkey_h "remote memory handle" @a rkey. The @p
* swap value is the value that is used to update the remote memory if the
* condition is true. The call to the routine returns when the operation is
* completed and the @a result value is updated.
*
* @note The remote address must be aligned to 64 bit.
*
* @param [in] ep Remote endpoint handle.
* @param [in] compare Value to compare to.
* @param [in] swap Value to swap.
* @param [in] remote_addr Pointer to the destination remote address
* of the atomic variable.
* @param [in] rkey Remote memory key associated with the
* remote address.
* @param [out] result Pointer to the address that is used to store
* the previous value of the atomic variable described
* by the @a remote_addr
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCP_ENDPOINT
* @brief Modify endpoint parameters.
*
* @deprecated Use @ref ucp_listener_conn_handler_t instead of @ref
* ucp_listener_accept_handler_t, if you have other use case please
* submit an issue on https://github.com/openucx/ucx or report to
* ucx-group@elist.ornl.gov
*
* This routine modifies @ref ucp_ep_h "endpoint" created by @ref ucp_ep_create
* or @ref ucp_listener_accept_callback_t. For example, this API can be used
* to setup custom parameters like @ref ucp_ep_params_t::user_data or
* @ref ucp_ep_params_t::err_handler to endpoint created by
* @ref ucp_listener_accept_callback_t.
*
* @param [in] ep A handle to the endpoint.
* @param [in] params User defined @ref ucp_ep_params_t configurations
* for the @ref ucp_ep_h "UCP endpoint".
*
* @return NULL - The endpoint is modified successfully.
* @return UCS_PTR_IS_ERR(_ptr) - The reconfiguration failed and an error code
* indicates the status. However, the @a endpoint
* is not modified and can be used further.
* @return otherwise - The reconfiguration process is started, and can be
* completed at any point in time. A request handle
* is returned to the application in order to track
* progress of the endpoint modification.
* The application is responsible for releasing the
* handle using the @ref ucp_request_free routine.
*
* @note See the documentation of @ref ucp_ep_params_t for details, only some of
* the parameters can be modified.
*/
ucs_status_ptr_t ;