Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dkrz-sw
yaxt
Commits
c306de8c
Commit
c306de8c
authored
Jun 15, 2020
by
Thomas Jahns
🤸
Browse files
Move caller to precede callee.
parent
70684c70
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/yaxt_f2c.c
View file @
c306de8c
...
...
@@ -488,6 +488,23 @@ xt_redist_get_send_MPI_Datatype_c2f(Xt_redist *redist, MPI_Fint rank)
return
MPI_Type_c2f
(
dt
);
}
PPM_DSO_INTERNAL
void
*
xt_redist_single_array_base_custom_new_c2f
(
int
nsend
,
int
nrecv
,
const
struct
xt_redist_msg_f
*
send_msgs_f
,
const
struct
xt_redist_msg_f
*
recv_msgs_f
,
MPI_Fint
comm_f
,
struct
xt_config_f
*
config
);
PPM_DSO_INTERNAL
void
*
xt_redist_single_array_base_new_c2f
(
int
nsend
,
int
nrecv
,
const
struct
xt_redist_msg_f
*
send_msgs_f
,
const
struct
xt_redist_msg_f
*
recv_msgs_f
,
MPI_Fint
comm_f
)
{
return
xt_redist_single_array_base_custom_new_c2f
(
nsend
,
nrecv
,
send_msgs_f
,
recv_msgs_f
,
comm_f
,
&
(
struct
xt_config_f
){
(
Xt_config
)
&
xt_default_config
});
}
PPM_DSO_INTERNAL
void
*
xt_redist_single_array_base_custom_new_c2f
(
int
nsend
,
int
nrecv
,
const
struct
xt_redist_msg_f
*
send_msgs_f
,
...
...
@@ -513,17 +530,6 @@ xt_redist_single_array_base_custom_new_c2f(
return
redist
;
}
PPM_DSO_INTERNAL
void
*
xt_redist_single_array_base_new_c2f
(
int
nsend
,
int
nrecv
,
const
struct
xt_redist_msg_f
*
send_msgs_f
,
const
struct
xt_redist_msg_f
*
recv_msgs_f
,
MPI_Fint
comm_f
)
{
return
xt_redist_single_array_base_custom_new_c2f
(
nsend
,
nrecv
,
send_msgs_f
,
recv_msgs_f
,
comm_f
,
&
(
struct
xt_config_f
){
(
Xt_config
)
&
xt_default_config
});
}
PPM_DSO_INTERNAL
void
*
xt_xmap_intersection_new_f2c
(
int
num_src_intersections
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment