File: fi_udp.7.md

package info (click to toggle)
mpich 4.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 423,384 kB
  • sloc: ansic: 1,088,434; cpp: 71,364; javascript: 40,763; f90: 22,829; sh: 17,463; perl: 14,773; xml: 14,418; python: 10,265; makefile: 9,246; fortran: 8,008; java: 4,355; asm: 324; ruby: 176; lisp: 19; php: 8; sed: 4
file content (62 lines) | stat: -rw-r--r-- 1,755 bytes parent folder | download | duplicates (10)
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
---
layout: page
title: fi_udp(7)
tagline: Libfabric Programmer's Manual
---
{% include JB/setup %}

# NAME

fi_udp \- The UDP Fabric Provider

# OVERVIEW

The UDP provider is a basic provider that can be used on any
system that supports UDP sockets.  The provider is not intended to provide
performance improvements over regular TCP sockets, but rather to allow
application and provider developers to write, test, and debug their code.
The UDP provider forms the foundation of a utility provider that enables
the implementation of libfabric features over any hardware.

# SUPPORTED FEATURES

The UDP provider supports a minimal set of features useful for sending and
receiving datagram messages over an unreliable endpoint.

*Endpoint types*
: The provider supports only endpoint type *FI_EP_DGRAM*.

*Endpoint capabilities*
: The following data transfer interface is supported: *fi_msg*.  The
  provider supports standard unicast datagram transfers, as well as
  multicast operations.

*Modes*
: The provider does not require the use of any mode bits.

*Progress*
: The UDP provider supports both *FI_PROGRESS_AUTO* and *FI_PROGRESS_MANUAL*,
  with a default set to auto.  However, receive side data buffers are not
  modified outside of completion processing routines.

# LIMITATIONS

The UDP provider has hard-coded maximums for supported queue sizes and data
transfers.  These values are reflected in the related fabric attribute
structures

EPs must be bound to both RX and TX CQs.

No support for selective completions or multi-recv.

No support for counters.

# RUNTIME PARAMETERS

No runtime parameters are currently defined.

# SEE ALSO

[`fabric`(7)](fabric.7.html),
[`fi_provider`(7)](fi_provider.7.html),
[`fi_getinfo`(3)](fi_getinfo.3.html)