This source file includes following definitions.
- oshmem_request_construct
- oshmem_request_destruct
- oshmem_request_null_free
- oshmem_request_null_cancel
- oshmem_request_empty_free
- oshmem_request_persistent_proc_null_free
- oshmem_request_init
- oshmem_request_finalize
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 #include "oshmem_config.h"
17
18 #include "ompi/communicator/communicator.h"
19 #include "opal/class/opal_object.h"
20 #include "oshmem/request/request.h"
21 #include "oshmem/constants.h"
22 #include "oshmem/proc/proc.h"
23
24 opal_pointer_array_t oshmem_request_f_to_c_table = {{0}};
25 size_t oshmem_request_waiting = 0;
26 size_t oshmem_request_completed = 0;
27 opal_mutex_t oshmem_request_lock = {{0}};
28 opal_condition_t oshmem_request_cond = {{0}};
29 oshmem_predefined_request_t oshmem_request_null = {{{{{0}}}}};
30 oshmem_request_t oshmem_request_empty = {{{{0}}}};
31 oshmem_status_public_t oshmem_status_empty = {0};
32 oshmem_request_fns_t oshmem_request_functions = {
33 NULL,
34 NULL,
35 NULL,
36 NULL,
37 NULL,
38 NULL,
39 NULL,
40 NULL,
41 };
42
43 static void oshmem_request_construct(oshmem_request_t* req)
44 {
45
46
47 req->req_state = OSHMEM_REQUEST_INVALID;
48 req->req_complete = false;
49 req->req_persistent = false;
50 req->req_free = NULL;
51 req->req_cancel = NULL;
52 req->req_complete_cb = NULL;
53 req->req_complete_cb_data = NULL;
54 req->req_f_to_c_index = SHMEM_UNDEFINED;
55 req->req_shmem_object.comm = (oshmem_group_t*) NULL;
56 }
57
58 static void oshmem_request_destruct(oshmem_request_t* req)
59 {
60 assert( SHMEM_UNDEFINED == req->req_f_to_c_index);
61 assert( OSHMEM_REQUEST_INVALID == req->req_state);
62 }
63
64 static int oshmem_request_null_free(oshmem_request_t** request)
65 {
66 return OSHMEM_SUCCESS;
67 }
68
69 static int oshmem_request_null_cancel(oshmem_request_t* request, int flag)
70 {
71 return OSHMEM_SUCCESS;
72 }
73
74 static int oshmem_request_empty_free(oshmem_request_t** request)
75 {
76 *request = &oshmem_request_null.request;
77 return OSHMEM_SUCCESS;
78 }
79
80 int oshmem_request_persistent_proc_null_free(oshmem_request_t** request)
81 {
82 OSHMEM_REQUEST_FINI(*request);
83 (*request)->req_state = OSHMEM_REQUEST_INVALID;
84 OBJ_RELEASE(*request);
85 *request = &oshmem_request_null.request;
86 return OSHMEM_SUCCESS;
87 }
88
89
90 OBJ_CLASS_INSTANCE( oshmem_request_t,
91 opal_free_list_item_t,
92 oshmem_request_construct,
93 oshmem_request_destruct);
94
95 int oshmem_request_init(void)
96 {
97 OBJ_CONSTRUCT(&oshmem_request_lock, opal_mutex_t);
98 OBJ_CONSTRUCT(&oshmem_request_cond, opal_condition_t);
99
100 OBJ_CONSTRUCT(&oshmem_request_null, oshmem_request_t);
101 OBJ_CONSTRUCT(&oshmem_request_f_to_c_table, opal_pointer_array_t);
102 if (OPAL_SUCCESS
103 != opal_pointer_array_init(&oshmem_request_f_to_c_table,
104 0,
105 OMPI_FORTRAN_HANDLE_MAX,
106 64)) {
107 return OSHMEM_ERROR;
108 }
109 oshmem_request_null.request.req_type = OSHMEM_REQUEST_NULL;
110 oshmem_request_null.request.req_status.SHMEM_SOURCE = SHMEM_PROC_NULL;
111 oshmem_request_null.request.req_status.SHMEM_ERROR = SHMEM_SUCCESS;
112 oshmem_request_null.request.req_status._count = 0;
113 oshmem_request_null.request.req_status._cancelled = 0;
114
115 oshmem_request_null.request.req_complete = true;
116 oshmem_request_null.request.req_state = OSHMEM_REQUEST_INACTIVE;
117 oshmem_request_null.request.req_persistent = false;
118 oshmem_request_null.request.req_f_to_c_index =
119 opal_pointer_array_add(&oshmem_request_f_to_c_table,
120 &oshmem_request_null);
121 oshmem_request_null.request.req_free = oshmem_request_null_free;
122 oshmem_request_null.request.req_cancel = oshmem_request_null_cancel;
123 oshmem_request_null.request.req_shmem_object.comm =
124 (oshmem_group_t*) &ompi_mpi_comm_world.comm;
125
126 if (0 != oshmem_request_null.request.req_f_to_c_index) {
127 return OSHMEM_ERR_REQUEST;
128 }
129
130
131
132
133
134
135
136
137
138
139
140
141 OBJ_CONSTRUCT(&oshmem_request_empty, oshmem_request_t);
142 oshmem_request_empty.req_type = OSHMEM_REQUEST_NULL;
143 oshmem_request_empty.req_status.SHMEM_SOURCE = SHMEM_PROC_NULL;
144 oshmem_request_empty.req_status.SHMEM_ERROR = SHMEM_SUCCESS;
145 oshmem_request_empty.req_status._count = 0;
146 oshmem_request_empty.req_status._cancelled = 0;
147
148 oshmem_request_empty.req_complete = true;
149 oshmem_request_empty.req_state = OSHMEM_REQUEST_ACTIVE;
150 oshmem_request_empty.req_persistent = false;
151 oshmem_request_empty.req_f_to_c_index =
152 opal_pointer_array_add(&oshmem_request_f_to_c_table,
153 &oshmem_request_empty);
154 oshmem_request_empty.req_free = oshmem_request_empty_free;
155 oshmem_request_empty.req_cancel = oshmem_request_null_cancel;
156 oshmem_request_empty.req_shmem_object.comm =
157 (oshmem_group_t*) &ompi_mpi_comm_world.comm;
158
159 if (1 != oshmem_request_empty.req_f_to_c_index) {
160 return OSHMEM_ERR_REQUEST;
161 }
162
163 oshmem_status_empty.SHMEM_SOURCE = SHMEM_ANY_SOURCE;
164 oshmem_status_empty.SHMEM_ERROR = SHMEM_SUCCESS;
165 oshmem_status_empty._count = 0;
166 oshmem_status_empty._cancelled = 0;
167
168 return OSHMEM_SUCCESS;
169 }
170
171 int oshmem_request_finalize(void)
172 {
173 OSHMEM_REQUEST_FINI( &oshmem_request_null.request);
174 OBJ_DESTRUCT( &oshmem_request_null.request);
175 OSHMEM_REQUEST_FINI( &oshmem_request_empty);
176 OBJ_DESTRUCT( &oshmem_request_empty);
177 OBJ_DESTRUCT( &oshmem_request_cond);
178 OBJ_DESTRUCT( &oshmem_request_lock);
179 OBJ_DESTRUCT( &oshmem_request_f_to_c_table);
180 return OSHMEM_SUCCESS;
181 }