-
Notifications
You must be signed in to change notification settings - Fork 435
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10412 from tvegas1/srd_iface
UCT/IB/EFA/SRD: Initial interface add
- Loading branch information
Showing
8 changed files
with
500 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/** | ||
* Copyright (c) NVIDIA CORPORATION & AFFILIATES, 2025. ALL RIGHTS RESERVED. | ||
* | ||
* See file LICENSE for terms. | ||
*/ | ||
|
||
#ifndef SRD_DEF_H_ | ||
#define SRD_DEF_H_ | ||
|
||
#include <uct/ib/base/ib_iface.h> | ||
#include <ucs/datastruct/frag_list.h> | ||
|
||
|
||
typedef struct uct_srd_neth { | ||
uint32_t packet_type; | ||
} UCS_S_PACKED uct_srd_neth_t; | ||
|
||
|
||
typedef struct uct_srd_iface_addr { | ||
uct_ib_uint24_t qp_num; | ||
} uct_srd_iface_addr_t; | ||
|
||
|
||
typedef struct uct_srd_ep_addr { | ||
uct_srd_iface_addr_t iface_addr; | ||
uct_ib_uint24_t ep_id; | ||
} uct_srd_ep_addr_t; | ||
|
||
#endif |
Oops, something went wrong.