|
9 | 9 | * University of Stuttgart. All rights reserved. |
10 | 10 | * Copyright (c) 2004-2005 The Regents of the University of California. |
11 | 11 | * All rights reserved. |
12 | | - * Copyright (c) 2007-2020 Cisco Systems, Inc. All rights reserved |
| 12 | + * Copyright (c) 2007-2021 Cisco Systems, Inc. All rights reserved |
13 | 13 | * Copyright (c) 2008-2009 Sun Microsystems, Inc. All rights reserved. |
14 | 14 | * Copyright (c) 2009-2012 Oak Rigde National Laboratory. All rights reserved. |
15 | | - * Copyright (c) 2011 Sandia National Laboratories. All rights reserved. |
| 15 | + * Copyright (c) 2011-2020 Sandia National Laboratories. All rights reserved. |
16 | 16 | * Copyright (c) 2012-2018 Los Alamos National Security, LLC. All rights |
17 | 17 | * reserved. |
18 | 18 | * Copyright (c) 2011-2013 INRIA. All rights reserved. |
|
24 | 24 | * Copyright (c) 2021 Google, LLC. All rights reserved. |
25 | 25 | * Copyright (c) 2021 Amazon.com, Inc. or its affiliates. All Rights |
26 | 26 | * reserved. |
| 27 | + * Copyright (c) 2021 Bull S.A.S. All rights reserved. |
27 | 28 | * $COPYRIGHT$ |
28 | 29 | * |
29 | 30 | * Additional copyrights may follow |
@@ -1768,8 +1769,19 @@ OMPI_DECLSPEC int MPI_Pack(const void *inbuf, int incount, MPI_Datatype datatyp |
1768 | 1769 | void *outbuf, int outsize, int *position, MPI_Comm comm); |
1769 | 1770 | OMPI_DECLSPEC int MPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, |
1770 | 1771 | int *size); |
| 1772 | +OMPI_DECLSPEC int MPI_Parrived(MPI_Request request, MPI_Count partition, int *flag); |
1771 | 1773 | OMPI_DECLSPEC int MPI_Pcontrol(const int level, ...); |
| 1774 | +OMPI_DECLSPEC int MPI_Pready(int partitions, MPI_Request request); |
| 1775 | +OMPI_DECLSPEC int MPI_Pready_range(int partition_low, int partition_high, |
| 1776 | + MPI_Request request); |
| 1777 | +OMPI_DECLSPEC int MPI_Pready_list(int length, int partition_list[], MPI_Request request); |
| 1778 | +OMPI_DECLSPEC int MPI_Precv_init(void* buf, int partitions, MPI_Count count, |
| 1779 | + MPI_Datatype datatype, int source, int tag, MPI_Comm comm, |
| 1780 | + MPI_Info info, MPI_Request *request); |
1772 | 1781 | OMPI_DECLSPEC int MPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status *status); |
| 1782 | +OMPI_DECLSPEC int MPI_Psend_init(const void* buf, int partitions, MPI_Count count, |
| 1783 | + MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, |
| 1784 | + MPI_Info info, MPI_Request *request); |
1773 | 1785 | OMPI_DECLSPEC int MPI_Publish_name(const char *service_name, MPI_Info info, |
1774 | 1786 | const char *port_name); |
1775 | 1787 | OMPI_DECLSPEC int MPI_Put(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype, |
@@ -2420,6 +2432,17 @@ OMPI_DECLSPEC int PMPI_Isend(const void *buf, int count, MPI_Datatype datatype, |
2420 | 2432 | int tag, MPI_Comm comm, MPI_Request *request); |
2421 | 2433 | OMPI_DECLSPEC int PMPI_Issend(const void *buf, int count, MPI_Datatype datatype, int dest, |
2422 | 2434 | int tag, MPI_Comm comm, MPI_Request *request); |
| 2435 | +OMPI_DECLSPEC int PMPI_Precv_init(void* buf, int partitions, MPI_Count count, |
| 2436 | + MPI_Datatype datatype, int source, int tag, MPI_Comm comm, |
| 2437 | + MPI_Info info, MPI_Request *request); |
| 2438 | +OMPI_DECLSPEC int PMPI_Psend_init(const void* buf, int partitions, MPI_Count count, |
| 2439 | + MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, |
| 2440 | + MPI_Info info, MPI_Request *request); |
| 2441 | +OMPI_DECLSPEC int PMPI_Pready(int partitions, MPI_Request request); |
| 2442 | +OMPI_DECLSPEC int PMPI_Pready_range(int partition_low, int partition_high, |
| 2443 | + MPI_Request request); |
| 2444 | +OMPI_DECLSPEC int PMPI_Pready_list(int length, int partition_list[], MPI_Request request); |
| 2445 | +OMPI_DECLSPEC int PMPI_Parrived(MPI_Request request, MPI_Count partition, int *flag); |
2423 | 2446 | OMPI_DECLSPEC int PMPI_Is_thread_main(int *flag); |
2424 | 2447 | OMPI_DECLSPEC int PMPI_Lookup_name(const char *service_name, MPI_Info info, char *port_name); |
2425 | 2448 | OMPI_DECLSPEC MPI_Fint PMPI_Message_c2f(MPI_Message message); |
|
0 commit comments