Skip to content

Commit 4cd8e91

Browse files
authored
Merge pull request #6301 from hjelmn/fix_osc_rdma_issue_6275_mpi_op_no_op_bug
osc/rdma: fix bug in MPI_OP_NO_OP support
2 parents 22923f9 + 9b2ed1e commit 4cd8e91

File tree

6 files changed

+372
-444
lines changed

6 files changed

+372
-444
lines changed

ompi/mca/osc/rdma/osc_rdma.h

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
* Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
1414
* Copyright (c) 2012-2013 Sandia National Laboratories. All rights reserved.
1515
* Copyright (c) 2016-2018 Intel, Inc. All rights reserved.
16-
* Copyright (c) 2020 Google, LLC. All rights reserved.
16+
* Copyright (c) 2019 Triad National Security, LLC. All rights
17+
* reserved.
18+
* Copyright (c) 2020-2021 Google, LLC. All rights reserved.
1719
* $COPYRIGHT$
1820
*
1921
* Additional copyrights may follow
@@ -106,6 +108,9 @@ struct ompi_osc_rdma_component_t {
106108

107109
/** directory where to place backing files */
108110
char *backing_directory;
111+
112+
/** maximum count for network AMO usage */
113+
unsigned long network_amo_max_count;
109114
};
110115
typedef struct ompi_osc_rdma_component_t ompi_osc_rdma_component_t;
111116

@@ -160,6 +165,9 @@ struct ompi_osc_rdma_module_t {
160165
/** Local displacement unit. */
161166
int disp_unit;
162167

168+
/** maximum count for network AMO usage */
169+
unsigned long network_amo_max_count;
170+
163171
/** global leader */
164172
ompi_osc_rdma_peer_t *leader;
165173

0 commit comments

Comments
 (0)