adding new functions
This commit was SVN r536.
Этот коммит содержится в:
родитель
4857a61c20
Коммит
46ce8a4482
@ -189,6 +189,34 @@ libmpi_c_mpi_la_SOURCES = \
|
|||||||
finalize.c \
|
finalize.c \
|
||||||
finalized.c \
|
finalized.c \
|
||||||
free_mem.c \
|
free_mem.c \
|
||||||
|
gather.c \
|
||||||
|
gatherv.c \
|
||||||
|
get_address.c \
|
||||||
|
get_count.c \
|
||||||
|
get_elements.c \
|
||||||
|
get.c \
|
||||||
|
get_processor_name.c \
|
||||||
|
get_version.c \
|
||||||
|
graph_create.c \
|
||||||
|
graph_get.c \
|
||||||
|
graph_map.c \
|
||||||
|
graph_neighbors_count.c \
|
||||||
|
graph_neighbors.c \
|
||||||
|
graphdims_get.c \
|
||||||
|
group_c2f.c \
|
||||||
|
group_compare.c \
|
||||||
|
group_difference.c \
|
||||||
|
group_excl.c \
|
||||||
|
group_f2c.c \
|
||||||
|
group_free.c \
|
||||||
|
group_incl.c \
|
||||||
|
group_intersection.c \
|
||||||
|
group_range_excl.c \
|
||||||
|
group_range_incl.c \
|
||||||
|
group_rank.c \
|
||||||
|
group_size.c \
|
||||||
|
group_translate_ranks.c \
|
||||||
|
group_union.c \
|
||||||
init.c \
|
init.c \
|
||||||
testall.c \
|
testall.c \
|
||||||
testany.c \
|
testany.c \
|
||||||
@ -234,6 +262,9 @@ libmpi_c_mpi_la_SOURCES = \
|
|||||||
type_ub.c \
|
type_ub.c \
|
||||||
type_vector.c
|
type_vector.c
|
||||||
|
|
||||||
|
bogus_stuff= \
|
||||||
|
grequest_complete.c \
|
||||||
|
grequest_start.c
|
||||||
|
|
||||||
EXTRA_DIST = $(libmpi_c_mpi_la_SOURCES)
|
EXTRA_DIST = $(libmpi_c_mpi_la_SOURCES)
|
||||||
# Conditionally install the header files
|
# Conditionally install the header files
|
||||||
|
@ -162,6 +162,34 @@ nodist_libmpi_c_pmpi_la_SOURCES = \
|
|||||||
pfinalize.c \
|
pfinalize.c \
|
||||||
pfinalized.c \
|
pfinalized.c \
|
||||||
pfree_mem.c \
|
pfree_mem.c \
|
||||||
|
pgather.c \
|
||||||
|
pgatherv.c \
|
||||||
|
pget_address.c \
|
||||||
|
pget_count.c \
|
||||||
|
pget_elements.c \
|
||||||
|
pget.c \
|
||||||
|
pget_processor_name.c \
|
||||||
|
pget_version.c \
|
||||||
|
pgraph_create.c \
|
||||||
|
pgraph_get.c \
|
||||||
|
pgraph_map.c \
|
||||||
|
pgraph_neighbors_count.c \
|
||||||
|
pgraph_neighbors.c \
|
||||||
|
pgraphdims_get.c \
|
||||||
|
pgroup_c2f.c \
|
||||||
|
pgroup_compare.c \
|
||||||
|
pgroup_difference.c \
|
||||||
|
pgroup_excl.c \
|
||||||
|
pgroup_f2c.c \
|
||||||
|
pgroup_free.c \
|
||||||
|
pgroup_incl.c \
|
||||||
|
pgroup_intersection.c \
|
||||||
|
pgroup_range_excl.c \
|
||||||
|
pgroup_range_incl.c \
|
||||||
|
pgroup_rank.c \
|
||||||
|
pgroup_size.c \
|
||||||
|
pgroup_translate_ranks.c \
|
||||||
|
pgroup_union.c \
|
||||||
pinit.c \
|
pinit.c \
|
||||||
ptestall.c \
|
ptestall.c \
|
||||||
ptestany.c \
|
ptestany.c \
|
||||||
@ -206,6 +234,10 @@ nodist_libmpi_c_pmpi_la_SOURCES = \
|
|||||||
ptype_struct.c \
|
ptype_struct.c \
|
||||||
ptype_ub.c \
|
ptype_ub.c \
|
||||||
ptype_vector.c
|
ptype_vector.c
|
||||||
|
|
||||||
|
bogus_stuff= \
|
||||||
|
pgrequest_complete.c \
|
||||||
|
pgrequest_start.c
|
||||||
#
|
#
|
||||||
# Sym link in the sources from the real MPI directory
|
# Sym link in the sources from the real MPI directory
|
||||||
#
|
#
|
||||||
|
@ -142,6 +142,38 @@
|
|||||||
#define MPI_File_write_shared PMPI_File_write_shared
|
#define MPI_File_write_shared PMPI_File_write_shared
|
||||||
#define MPI_Finalize PMPI_Finalize
|
#define MPI_Finalize PMPI_Finalize
|
||||||
#define MPI_Finalized PMPI_Finalized
|
#define MPI_Finalized PMPI_Finalized
|
||||||
|
|
||||||
|
#define MPI_Gather PMPI_Gather
|
||||||
|
#define MPI_Gatherv PMPI_Gatherv
|
||||||
|
#define MPI_Get_address PMPI_Get_address
|
||||||
|
#define MPI_Get_count PMPI_Get_count
|
||||||
|
#define MPI_Get_elements PMPI_Get_elements
|
||||||
|
#define MPI_Get PMPI_Get
|
||||||
|
#define MPI_Get_processor_name PMPI_Get_processor_name
|
||||||
|
#define MPI_Get_version PMPI_Get_version
|
||||||
|
#define MPI_Graph_create PMPI_Graph_create
|
||||||
|
#define MPI_Graph_get PMPI_Graph_get
|
||||||
|
#define MPI_Graph_map PMPI_Graph_map
|
||||||
|
#define MPI_Graph_neighbors_count PMPI_Graph_neighbors_count
|
||||||
|
#define MPI_Graph_neighbors PMPI_Graph_neighbors
|
||||||
|
#define MPI_Graphdims_get PMPI_Graphdims_get
|
||||||
|
#define MPI_Grequest_complete PMPI_Grequest_complete
|
||||||
|
#define MPI_Grequest_start PMPI_Grequest_start
|
||||||
|
#define MPI_Group_c2f PMPI_Group_c2f
|
||||||
|
#define MPI_Group_compare PMPI_Group_compare
|
||||||
|
#define MPI_Group_difference PMPI_Group_difference
|
||||||
|
#define MPI_Group_excl PMPI_Group_excl
|
||||||
|
#define MPI_Group_f2c PMPI_Group_f2c
|
||||||
|
#define MPI_Group_free PMPI_Group_free
|
||||||
|
#define MPI_Group_incl PMPI_Group_incl
|
||||||
|
#define MPI_Group_intersection PMPI_Group_intersection
|
||||||
|
#define MPI_Group_range_excl PMPI_Group_range_excl
|
||||||
|
#define MPI_Group_range_incl PMPI_Group_range_incl
|
||||||
|
#define MPI_Group_rank PMPI_Group_rank
|
||||||
|
#define MPI_Group_size PMPI_Group_size
|
||||||
|
#define MPI_Group_translate_ranks PMPI_Group_translate_ranks
|
||||||
|
#define MPI_Group_union PMPI_Group_union
|
||||||
|
|
||||||
#define MPI_Free_mem PMPI_Free_mem
|
#define MPI_Free_mem PMPI_Free_mem
|
||||||
#define MPI_Init PMPI_Init
|
#define MPI_Init PMPI_Init
|
||||||
#define MPI_Test_cancelled PMPI_Test_cancelled
|
#define MPI_Test_cancelled PMPI_Test_cancelled
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user