impi-devel 2021.15.0__py2.py3-none-win_amd64.whl → 2021.16.1__py2.py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of impi-devel might be problematic. Click here for more details.
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpi/debug/impi.dll +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpicc.bat +1 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpicl.bat +7 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpicxx.bat +7 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpif77.bat +7 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpif90.bat +7 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpifc.bat +1 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpiicc.bat +7 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpiicpc.bat +7 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpiicpx.bat +7 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpiicx.bat +7 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpiifort.bat +7 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/bin/mpiifx.bat +7 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/include/mpi.h +456 -356
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/include/mpicxx.h +9 -9
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/lib/impi.lib +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/share/doc/mpi/licensing/third-party-programs.txt +1 -1
- {impi_devel-2021.15.0.dist-info → impi_devel-2021.16.1.dist-info}/METADATA +2 -2
- impi_devel-2021.16.1.dist-info/RECORD +24 -0
- impi_devel-2021.15.0.dist-info/RECORD +0 -24
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/Library/include/mpio.h +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/share/doc/mpi/licensing/license.txt +0 -0
- {impi_devel-2021.15.0.dist-info → impi_devel-2021.16.1.dist-info}/LICENSE.txt +0 -0
- {impi_devel-2021.15.0.dist-info → impi_devel-2021.16.1.dist-info}/WHEEL +0 -0
- {impi_devel-2021.15.0.dist-info → impi_devel-2021.16.1.dist-info}/top_level.txt +0 -0
|
@@ -404,9 +404,9 @@ class Datatype {
|
|
|
404
404
|
void * );
|
|
405
405
|
// These functions are *not* part of MPI-2 but are provided
|
|
406
406
|
// because they should have been included
|
|
407
|
-
static int NULL_COPY_FN( const Datatype &oldtype, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { oldtype; keyval; ex; attr_in; attr_out; flag = 1; return 0; }
|
|
408
|
-
static int NULL_DELETE_FN( Datatype &type, int keyval, void * attr, void *ex ) { type; keyval; attr; ex; return 0; }
|
|
409
|
-
static int DUP_FN( const Datatype &oldtype, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { oldtype; keyval; ex; flag = 1; *(void **)attr_out = attr_in; return 0; }
|
|
407
|
+
static int NULL_COPY_FN( const Datatype &oldtype, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { (void)oldtype; (void)keyval; (void)ex; (void)attr_in; (void)attr_out; flag = 1; return 0; }
|
|
408
|
+
static int NULL_DELETE_FN( Datatype &type, int keyval, void * attr, void *ex ) { (void)type; (void)keyval; (void)attr; (void)ex; return 0; }
|
|
409
|
+
static int DUP_FN( const Datatype &oldtype, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { (void)oldtype; (void)keyval; (void)ex; flag = 1; *(void **)attr_out = attr_in; return 0; }
|
|
410
410
|
|
|
411
411
|
};
|
|
412
412
|
|
|
@@ -1461,9 +1461,9 @@ class Comm {
|
|
|
1461
1461
|
static int Create_keyval( Copy_attr_function *, Delete_attr_function *,
|
|
1462
1462
|
void * );
|
|
1463
1463
|
|
|
1464
|
-
static int NULL_COPY_FN( const Comm &oldcomm, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { oldcomm; keyval; ex; attr_in; attr_out; flag = 1; return 0; }
|
|
1465
|
-
static int NULL_DELETE_FN( Comm &comm, int keyval, void * attr, void *ex ) { comm; keyval; attr; ex; return 0; }
|
|
1466
|
-
static int DUP_FN( const Comm &oldcomm, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { oldcomm; keyval; ex; flag = 1; *(void **)attr_out = attr_in; return 0; }
|
|
1464
|
+
static int NULL_COPY_FN( const Comm &oldcomm, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { (void)oldcomm; (void)keyval; (void)ex; (void)attr_in; (void)attr_out; flag = 1; return 0; }
|
|
1465
|
+
static int NULL_DELETE_FN( Comm &comm, int keyval, void * attr, void *ex ) { (void)comm; (void)keyval; (void)attr; (void)ex; return 0; }
|
|
1466
|
+
static int DUP_FN( const Comm &oldcomm, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { (void)oldcomm; (void)keyval; (void)ex; flag = 1; *(void **)attr_out = attr_in; return 0; }
|
|
1467
1467
|
static Errhandler Create_errhandler( Errhandler_function * );
|
|
1468
1468
|
|
|
1469
1469
|
virtual void Call_errhandler( int v2 ) const;
|
|
@@ -1898,9 +1898,9 @@ class Win {
|
|
|
1898
1898
|
void * );
|
|
1899
1899
|
// These functions are *not* part of MPI-2 but are provided
|
|
1900
1900
|
// because they should have been included
|
|
1901
|
-
static int NULL_COPY_FN( const Win &oldwin, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { oldwin; keyval; ex; attr_in; attr_out; flag = 1; return 0; }
|
|
1902
|
-
static int NULL_DELETE_FN( Win &win, int keyval, void * attr, void *ex ) { win; keyval; attr; ex; return 0; }
|
|
1903
|
-
static int DUP_FN( const Win &oldwin, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { oldwin; keyval; ex; flag = 1; *(void **)attr_out = attr_in; return 0; }
|
|
1901
|
+
static int NULL_COPY_FN( const Win &oldwin, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { (void)oldwin; (void)keyval; (void)ex; (void)attr_in; (void)attr_out; flag = 1; return 0; }
|
|
1902
|
+
static int NULL_DELETE_FN( Win &win, int keyval, void * attr, void *ex ) { (void)win; (void)keyval; (void)attr; (void)ex; return 0; }
|
|
1903
|
+
static int DUP_FN( const Win &oldwin, int keyval, void *ex, void *attr_in, void *attr_out, bool &flag ) { (void)oldwin; (void)keyval; (void)ex; flag = 1; *(void **)attr_out = attr_in; return 0; }
|
|
1904
1904
|
|
|
1905
1905
|
virtual void Call_errhandler( int v2 ) const;
|
|
1906
1906
|
};
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: impi-devel
|
|
3
|
-
Version: 2021.
|
|
3
|
+
Version: 2021.16.1
|
|
4
4
|
Summary: Intel® MPI Library
|
|
5
5
|
Home-page: https://software.intel.com/en-us/mpi-library
|
|
6
6
|
Author: Intel Corporation
|
|
@@ -18,7 +18,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
18
18
|
Classifier: License :: Other/Proprietary License
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE.txt
|
|
21
|
-
Requires-Dist: impi-rt ==2021.
|
|
21
|
+
Requires-Dist: impi-rt ==2021.16.1
|
|
22
22
|
|
|
23
23
|
The Intel® MPI Library is a multi-fabric message passing library that implements the Message Passing Interface, version 3.1 (MPI-3.1) specification. Use the library to develop applications that can run on multiple cluster interconnects.
|
|
24
24
|
The Intel MPI Library has the following features:
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpicc.bat,sha256=P0ZbQ0wYUz8zv6for5cBeTdNH4E062w47MlYNlSL-HQ,23032
|
|
2
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpicl.bat,sha256=NWVkMqRr3TvCACGdIMtW689oxK0ubAcgSu3jWoLAGbw,1303
|
|
3
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpicxx.bat,sha256=wsY1ukCQDWWZOc25iQV1q28o_R60QYDgcZ7CuHqpW8s,1309
|
|
4
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpif77.bat,sha256=uBNhChxWbPKa3ZEcsARENqzqxRcg0oc_4Y4yGsYCx-g,1244
|
|
5
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpif90.bat,sha256=mcVi18WnnHeb0yuUPulsj74F_SiC92UNP6gNYjwErUw,1244
|
|
6
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpifc.bat,sha256=TbHPhpJ6mVXoOWxn_bzIA9ZRGvVNIRzyOvfIFcRkof0,26112
|
|
7
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpiicc.bat,sha256=cM7w8HXocd10LfD2VIbDptb269xzLzTLWOpL5MTYBN4,1298
|
|
8
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpiicpc.bat,sha256=Za65AYt9UMHDNKKxPwC68nIJTTlqkvWmgvJvLw1KrXw,1302
|
|
9
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpiicpx.bat,sha256=ycK9cGDi6JojnN8o-tmBwm8PJ1ganLa7QKQ_CefLthA,1261
|
|
10
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpiicx.bat,sha256=Fnf3eaCyuJN-gV8BtiGHkIhGt5zApELLQrx4uKhQgGc,1257
|
|
11
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpiifort.bat,sha256=NJ5X79Lm3NqhzUqQJCAsimN58ciMglCaXT-qoYTVbok,1246
|
|
12
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpiifx.bat,sha256=i1nQbravwfPkQHouhOXnHO156lctGRBdoYvi8V4ErvM,1278
|
|
13
|
+
impi_devel-2021.16.1.data/data/Library/bin/mpi/debug/impi.dll,sha256=p5INJL9QTiK4M9sRnFaQDBcq7yBMd9X45fqeGcvHoqc,23870400
|
|
14
|
+
impi_devel-2021.16.1.data/data/Library/include/mpi.h,sha256=xgFz6QsaDXT1vD9Id6NhQZLWRtIi-yc841ERH0BiqoQ,258498
|
|
15
|
+
impi_devel-2021.16.1.data/data/Library/include/mpicxx.h,sha256=bwVeZ9iK94Jo2M-xE0oGK4_m2kV_7jYcNpixj9J6iMU,101934
|
|
16
|
+
impi_devel-2021.16.1.data/data/Library/include/mpio.h,sha256=9TVWsm5u0dZEwduuJOmHAjPmfSRrBpUDJd4I1Jf7Rh0,39620
|
|
17
|
+
impi_devel-2021.16.1.data/data/Library/lib/impi.lib,sha256=bxvddBjZtPq-OtSrarcBE3kZski9oDEkCGfhWv5zLJw,1352456
|
|
18
|
+
impi_devel-2021.16.1.data/data/share/doc/mpi/licensing/license.txt,sha256=_8AIYvfXecQMkfCDcDcA0ogvnzDXDbl-BHKoAFJgLuY,4218
|
|
19
|
+
impi_devel-2021.16.1.data/data/share/doc/mpi/licensing/third-party-programs.txt,sha256=JV4OcbeCl6GGbSUsJTglzDZJ8u8-Fkgo5YvV0HpH0a8,78960
|
|
20
|
+
impi_devel-2021.16.1.dist-info/LICENSE.txt,sha256=dyFjPQ3f9D-uJev9QF-BZqDOcwy87ETy862dXrismm8,4105
|
|
21
|
+
impi_devel-2021.16.1.dist-info/METADATA,sha256=hczM84Ik6G_KTv9fG8OWa-xtKnWKbPeAPqMMfg2YpZg,1473
|
|
22
|
+
impi_devel-2021.16.1.dist-info/WHEEL,sha256=AicHu81jYIhU5ObukFKUZOOinzdgDNwF05fPW9oDLwY,122
|
|
23
|
+
impi_devel-2021.16.1.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
24
|
+
impi_devel-2021.16.1.dist-info/RECORD,,
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpicc.bat,sha256=opPwJrw2EddGUJo_cyGV1UvG550JUgO3jqh2WDcmQhY,23032
|
|
2
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpicl.bat,sha256=tgzPqxxrr4ABHNkPnXVOx1oifDVdF6FDeOPS_NIOk-Y,1087
|
|
3
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpicxx.bat,sha256=icR8cXZDHEU1oaYNp3Gj8tFP143ZFbb_i1uoKIRhVsI,1095
|
|
4
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpif77.bat,sha256=o3q3pu0JNk6IpvR5_AzKBlqMrtNQqnldtg0TP0eVtqY,1030
|
|
5
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpif90.bat,sha256=_T3Ey8nhAZ0PqPGCCg7-7CGx_bh96MEm55NYMeih8Ok,1030
|
|
6
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpifc.bat,sha256=I8SJjpCsQvC9fOo6qCOBUWZxXYYXxjIHHy_eveaA0Ks,26112
|
|
7
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpiicc.bat,sha256=WmU0bliALBuVY0242xdGhwCp-25J5UVtWQI07nxEias,1084
|
|
8
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpiicpc.bat,sha256=C235KYqgNaCBcKoN6Tp1Rn9om1qJauph8Ug6euuR65E,1088
|
|
9
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpiicpx.bat,sha256=pzZVQpPYBMzLAZ3VSu8VK6Ze99lN0ftV6i5jequU8Z4,1047
|
|
10
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpiicx.bat,sha256=-V5ajP9L3uCllP77gQTY2QovXsC6PaeRjyjgjn6G-go,1043
|
|
11
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpiifort.bat,sha256=2HYDrw4V9zPkn09dYuJEhK1cglzpL4cb1wW4LEPEVOI,1032
|
|
12
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpiifx.bat,sha256=meIaD1NzAwadkVhrChvNi00A7EC3uDdBWDGZJZIlQqc,1064
|
|
13
|
-
impi_devel-2021.15.0.data/data/Library/bin/mpi/debug/impi.dll,sha256=OMloG2yT2__DQrR1IiaVWj1te3cZzrypfzhooGWbtcg,23773400
|
|
14
|
-
impi_devel-2021.15.0.data/data/Library/include/mpi.h,sha256=gN038qU80DMxcV9ivyxV1uV1cypiHs1mzxlxkXo8ELM,253153
|
|
15
|
-
impi_devel-2021.15.0.data/data/Library/include/mpicxx.h,sha256=s8LvuihJdp8myenKEhyUtLHMui4EEi5NlGq7Qk5gBmo,101718
|
|
16
|
-
impi_devel-2021.15.0.data/data/Library/include/mpio.h,sha256=9TVWsm5u0dZEwduuJOmHAjPmfSRrBpUDJd4I1Jf7Rh0,39620
|
|
17
|
-
impi_devel-2021.15.0.data/data/Library/lib/impi.lib,sha256=neOuLrRIBIXU86uncN244mlhFeQcQ8EfFH9-ybxsEa4,1295848
|
|
18
|
-
impi_devel-2021.15.0.data/data/share/doc/mpi/licensing/license.txt,sha256=_8AIYvfXecQMkfCDcDcA0ogvnzDXDbl-BHKoAFJgLuY,4218
|
|
19
|
-
impi_devel-2021.15.0.data/data/share/doc/mpi/licensing/third-party-programs.txt,sha256=b5oDvIM2B5I8bit_zpSYJT7Epos68ZxyN1UIpIXR-HU,78960
|
|
20
|
-
impi_devel-2021.15.0.dist-info/LICENSE.txt,sha256=dyFjPQ3f9D-uJev9QF-BZqDOcwy87ETy862dXrismm8,4105
|
|
21
|
-
impi_devel-2021.15.0.dist-info/METADATA,sha256=pgfnwAH8eqoGbo0BU8pyc5jIBA2_Rf6BchFSNhV670Q,1473
|
|
22
|
-
impi_devel-2021.15.0.dist-info/WHEEL,sha256=AicHu81jYIhU5ObukFKUZOOinzdgDNwF05fPW9oDLwY,122
|
|
23
|
-
impi_devel-2021.15.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
24
|
-
impi_devel-2021.15.0.dist-info/RECORD,,
|
|
File without changes
|
{impi_devel-2021.15.0.data → impi_devel-2021.16.1.data}/data/share/doc/mpi/licensing/license.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|