impi-devel 2021.9.0__py2.py3-none-win_amd64.whl → 2021.14.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.
- impi_devel-2021.14.1.data/data/Library/bin/mpi/debug/impi.dll +0 -0
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpicc.bat +91 -42
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpicl.bat +2 -2
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpicxx.bat +1 -2
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpif77.bat +2 -2
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpif90.bat +2 -2
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpifc.bat +49 -38
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpiicc.bat +2 -2
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpiicpc.bat +2 -2
- impi_devel-2021.14.1.data/data/Library/bin/mpiicpx.bat +24 -0
- impi_devel-2021.14.1.data/data/Library/bin/mpiicx.bat +24 -0
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/bin/mpiifort.bat +2 -2
- impi_devel-2021.14.1.data/data/Library/bin/mpiifx.bat +24 -0
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/include/mpi.h +2150 -1095
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/include/mpicxx.h +2705 -2705
- {impi_devel-2021.9.0.data → impi_devel-2021.14.1.data}/data/Library/include/mpio.h +149 -0
- impi_devel-2021.14.1.data/data/Library/lib/impi.lib +0 -0
- impi_devel-2021.14.1.data/data/share/doc/mpi/licensing/license.txt +72 -0
- impi_devel-2021.14.1.data/data/share/doc/mpi/licensing/third-party-programs.txt +1476 -0
- {impi_devel-2021.9.0.dist-info → impi_devel-2021.14.1.dist-info}/METADATA +30 -30
- impi_devel-2021.14.1.dist-info/RECORD +24 -0
- {impi_devel-2021.9.0.dist-info → impi_devel-2021.14.1.dist-info}/WHEEL +1 -1
- impi_devel-2021.9.0.data/data/Library/bin/debug/impi.dll +0 -0
- impi_devel-2021.9.0.data/data/Library/bin/debug/impi.pdb +0 -0
- impi_devel-2021.9.0.data/data/Library/bin/release/impi.pdb +0 -0
- impi_devel-2021.9.0.data/data/Library/lib/impi.lib +0 -0
- impi_devel-2021.9.0.dist-info/RECORD +0 -21
- {impi_devel-2021.9.0.dist-info → impi_devel-2021.14.1.dist-info}/LICENSE.txt +0 -0
- {impi_devel-2021.9.0.dist-info → impi_devel-2021.14.1.dist-info}/top_level.txt +0 -0
|
@@ -69,6 +69,8 @@ typedef __int64 MPI_Offset;
|
|
|
69
69
|
#define HAVE_MPI_DATAREP_FUNCTIONS
|
|
70
70
|
typedef int (MPI_Datarep_conversion_function)(void *, MPI_Datatype, int,
|
|
71
71
|
void *, MPI_Offset, void *);
|
|
72
|
+
typedef int (MPI_Datarep_conversion_function_c)(void *, MPI_Datatype, MPI_Count,
|
|
73
|
+
void *, MPI_Offset, void *);
|
|
72
74
|
typedef int (MPI_Datarep_extent_function)(MPI_Datatype datatype, MPI_Aint *,
|
|
73
75
|
void *);
|
|
74
76
|
#endif
|
|
@@ -280,6 +282,80 @@ int MPI_File_iread_all(MPI_File fh, void *buf, int count, MPI_Datatype datatype,
|
|
|
280
282
|
int MPI_File_iwrite_all(MPI_File fh, const void *buf, int count, MPI_Datatype datatype,
|
|
281
283
|
MPI_Request *request)
|
|
282
284
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
285
|
+
|
|
286
|
+
/* MPI 4.0 large count functions */
|
|
287
|
+
int MPI_File_read_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Status *status)
|
|
288
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
289
|
+
int MPI_File_read_all_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Status *status)
|
|
290
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
291
|
+
int MPI_File_read_all_begin_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype)
|
|
292
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
293
|
+
int MPI_File_read_at_c(MPI_File fh, MPI_Offset offset, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
294
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
295
|
+
int MPI_File_read_at_all_c(MPI_File fh, MPI_Offset offset, void * buf, MPI_Count count,
|
|
296
|
+
MPI_Datatype datatype, MPI_Status *status)
|
|
297
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
298
|
+
int MPI_File_read_at_all_begin_c(MPI_File fh, MPI_Offset offset, void *buf, MPI_Count count,
|
|
299
|
+
MPI_Datatype datatype) MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
300
|
+
int MPI_File_read_ordered_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
301
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
302
|
+
int MPI_File_read_ordered_begin_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype)
|
|
303
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
304
|
+
int MPI_File_read_shared_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
305
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
306
|
+
int MPI_File_write_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
307
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
308
|
+
int MPI_File_write_all_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
309
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
310
|
+
int MPI_File_write_all_begin_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype)
|
|
311
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
312
|
+
|
|
313
|
+
int MPI_File_write_at_c(MPI_File fh, MPI_Offset offset, const void * buf, MPI_Count count,
|
|
314
|
+
MPI_Datatype datatype, MPI_Status *status)
|
|
315
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
316
|
+
int MPI_File_write_at_all_c(MPI_File fh, MPI_Offset offset, const void *buf, MPI_Count count,
|
|
317
|
+
MPI_Datatype datatype, MPI_Status *status)
|
|
318
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
319
|
+
int MPI_File_write_at_all_begin_c(MPI_File fh, MPI_Offset offset, const void *buf, MPI_Count count,
|
|
320
|
+
MPI_Datatype datatype) MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
321
|
+
int MPI_File_write_ordered_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
322
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
323
|
+
int MPI_File_write_ordered_begin_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype)
|
|
324
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
325
|
+
int MPI_File_write_shared_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
326
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
327
|
+
int MPI_File_iread_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype, MPIO_Request *request)
|
|
328
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
329
|
+
int MPI_File_iread_all_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
330
|
+
MPI_Request *request)
|
|
331
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
332
|
+
int MPI_File_iread_at_c(MPI_File fh, MPI_Offset offset, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
333
|
+
MPIO_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
334
|
+
int MPI_File_iread_at_all_c(MPI_File fh, MPI_Offset offset, void *buf, MPI_Count count,
|
|
335
|
+
MPI_Datatype datatype, MPI_Request *request)
|
|
336
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
337
|
+
int MPI_File_iread_shared_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
338
|
+
MPIO_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
339
|
+
int MPI_File_iwrite_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
340
|
+
MPIO_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
341
|
+
int MPI_File_iwrite_all_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
342
|
+
MPI_Request *request)
|
|
343
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
344
|
+
int MPI_File_iwrite_at_c(MPI_File fh, MPI_Offset offset, const void *buf, MPI_Count count,
|
|
345
|
+
MPI_Datatype datatype, MPIO_Request *request)
|
|
346
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
347
|
+
int MPI_File_iwrite_at_all_c(MPI_File fh, MPI_Offset offset, const void *buf, MPI_Count count,
|
|
348
|
+
MPI_Datatype datatype, MPI_Request *request)
|
|
349
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
350
|
+
int MPI_File_iwrite_shared_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
351
|
+
MPIO_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
352
|
+
|
|
353
|
+
int MPI_File_get_type_extent_c(MPI_File fh, MPI_Datatype datatype, MPI_Count *extent) ROMIO_API_PUBLIC;
|
|
354
|
+
|
|
355
|
+
int MPI_Register_datarep_c(const char *datarep, MPI_Datarep_conversion_function_c *read_conversion_fn,
|
|
356
|
+
MPI_Datarep_conversion_function_c *write_conversion_fn,
|
|
357
|
+
MPI_Datarep_extent_function *dtype_file_extent_fn, void *extra_state) ROMIO_API_PUBLIC;
|
|
358
|
+
|
|
283
359
|
/* End Prototypes */
|
|
284
360
|
|
|
285
361
|
#ifndef HAVE_MPI_DARRAY_SUBARRAY
|
|
@@ -510,6 +586,79 @@ int PMPI_File_iwrite_all(MPI_File fh, const void *buf, int count, MPI_Datatype d
|
|
|
510
586
|
MPI_Request *request)
|
|
511
587
|
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
512
588
|
|
|
589
|
+
/* MPI 4.0 large count functions */
|
|
590
|
+
int PMPI_File_read_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Status *status)
|
|
591
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
592
|
+
int PMPI_File_read_all_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype, MPI_Status *status)
|
|
593
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
594
|
+
int PMPI_File_read_all_begin_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype)
|
|
595
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
596
|
+
int PMPI_File_read_at_c(MPI_File fh, MPI_Offset offset, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
597
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
598
|
+
int PMPI_File_read_at_all_c(MPI_File fh, MPI_Offset offset, void * buf, MPI_Count count,
|
|
599
|
+
MPI_Datatype datatype, MPI_Status *status)
|
|
600
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
601
|
+
int PMPI_File_read_at_all_begin_c(MPI_File fh, MPI_Offset offset, void *buf, MPI_Count count,
|
|
602
|
+
MPI_Datatype datatype) MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
603
|
+
int PMPI_File_read_ordered_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
604
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
605
|
+
int PMPI_File_read_ordered_begin_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype)
|
|
606
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
607
|
+
int PMPI_File_read_shared_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
608
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
609
|
+
int PMPI_File_write_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
610
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
611
|
+
int PMPI_File_write_all_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
612
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
613
|
+
int PMPI_File_write_all_begin_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype)
|
|
614
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
615
|
+
|
|
616
|
+
int PMPI_File_write_at_c(MPI_File fh, MPI_Offset offset, const void * buf, MPI_Count count,
|
|
617
|
+
MPI_Datatype datatype, MPI_Status *status)
|
|
618
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
619
|
+
int PMPI_File_write_at_all_c(MPI_File fh, MPI_Offset offset, const void *buf, MPI_Count count,
|
|
620
|
+
MPI_Datatype datatype, MPI_Status *status)
|
|
621
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
622
|
+
int PMPI_File_write_at_all_begin_c(MPI_File fh, MPI_Offset offset, const void *buf, MPI_Count count,
|
|
623
|
+
MPI_Datatype datatype) MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
624
|
+
int PMPI_File_write_ordered_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
625
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
626
|
+
int PMPI_File_write_ordered_begin_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype)
|
|
627
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
628
|
+
int PMPI_File_write_shared_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
629
|
+
MPI_Status *status) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
630
|
+
int PMPI_File_iread_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype, MPIO_Request *request)
|
|
631
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
632
|
+
int PMPI_File_iread_all_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
633
|
+
MPI_Request *request)
|
|
634
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
635
|
+
int PMPI_File_iread_at_c(MPI_File fh, MPI_Offset offset, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
636
|
+
MPIO_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
637
|
+
int PMPI_File_iread_at_all_c(MPI_File fh, MPI_Offset offset, void *buf, MPI_Count count,
|
|
638
|
+
MPI_Datatype datatype, MPI_Request *request)
|
|
639
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
640
|
+
int PMPI_File_iread_shared_c(MPI_File fh, void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
641
|
+
MPIO_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
642
|
+
int PMPI_File_iwrite_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
643
|
+
MPIO_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
644
|
+
int PMPI_File_iwrite_all_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
645
|
+
MPI_Request *request)
|
|
646
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
647
|
+
int PMPI_File_iwrite_at_c(MPI_File fh, MPI_Offset offset, const void *buf, MPI_Count count,
|
|
648
|
+
MPI_Datatype datatype, MPIO_Request *request)
|
|
649
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
650
|
+
int PMPI_File_iwrite_at_all_c(MPI_File fh, MPI_Offset offset, const void *buf, MPI_Count count,
|
|
651
|
+
MPI_Datatype datatype, MPI_Request *request)
|
|
652
|
+
MPICH_ATTR_POINTER_WITH_TYPE_TAG(3,5) ROMIO_API_PUBLIC;
|
|
653
|
+
int PMPI_File_iwrite_shared_c(MPI_File fh, const void *buf, MPI_Count count, MPI_Datatype datatype,
|
|
654
|
+
MPIO_Request *request) MPICH_ATTR_POINTER_WITH_TYPE_TAG(2,4) ROMIO_API_PUBLIC;
|
|
655
|
+
|
|
656
|
+
int PMPI_File_get_type_extent_c(MPI_File fh, MPI_Datatype datatype, MPI_Count *extent) ROMIO_API_PUBLIC;
|
|
657
|
+
|
|
658
|
+
int PMPI_Register_datarep_c(const char *datarep, MPI_Datarep_conversion_function_c *read_conversion_fn,
|
|
659
|
+
MPI_Datarep_conversion_function_c *write_conversion_fn,
|
|
660
|
+
MPI_Datarep_extent_function *dtype_file_extent_fn, void *extra_state) ROMIO_API_PUBLIC;
|
|
661
|
+
|
|
513
662
|
#ifndef HAVE_MPI_DARRAY_SUBARRAY
|
|
514
663
|
/* Section 4.14.4 */
|
|
515
664
|
int PMPI_Type_create_subarray(int, int *, int *, int *, int,
|
|
Binary file
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
Intel Simplified Software License (Version October 2022)
|
|
2
|
+
|
|
3
|
+
Intel(R) MPI Library: Copyright (C) 2009 Intel Corporation
|
|
4
|
+
|
|
5
|
+
Use and Redistribution. You may use and redistribute the software, which is
|
|
6
|
+
provided in binary form only, (the "Software"), without modification, provided the
|
|
7
|
+
following conditions are met:
|
|
8
|
+
|
|
9
|
+
* Redistributions must reproduce the above copyright notice and these terms of use
|
|
10
|
+
in the Software and in the documentation and/or other materials provided with
|
|
11
|
+
the distribution.
|
|
12
|
+
* Neither the name of Intel nor the names of its suppliers may be used to endorse
|
|
13
|
+
or promote products derived from this Software without specific prior written
|
|
14
|
+
permission.
|
|
15
|
+
* No reverse engineering, decompilation, or disassembly of the Software is
|
|
16
|
+
permitted, nor any modification or alteration of the Software or its operation
|
|
17
|
+
at any time, including during execution.
|
|
18
|
+
|
|
19
|
+
No other licenses. Except as provided in the preceding section, Intel grants no
|
|
20
|
+
licenses or other rights by implication, estoppel or otherwise to, patent,
|
|
21
|
+
copyright, trademark, trade name, service mark or other intellectual property
|
|
22
|
+
licenses or rights of Intel.
|
|
23
|
+
|
|
24
|
+
Third party software. "Third Party Software" means the files (if any) listed in
|
|
25
|
+
the "third-party-software.txt" or other similarly-named text file that may be
|
|
26
|
+
included with the Software. Third Party Software, even if included with the
|
|
27
|
+
distribution of the Software, may be governed by separate license terms, including
|
|
28
|
+
without limitation, third party license terms, open source software notices and
|
|
29
|
+
terms, and/or other Intel software license terms. These separate license terms
|
|
30
|
+
solely govern Your use of the Third Party Software.
|
|
31
|
+
|
|
32
|
+
DISCLAIMER. THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
|
|
33
|
+
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
34
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE
|
|
35
|
+
DISCLAIMED. THIS SOFTWARE IS NOT INTENDED FOR USE IN SYSTEMS OR APPLICATIONS
|
|
36
|
+
WHERE FAILURE OF THE SOFTWARE MAY CAUSE PERSONAL INJURY OR DEATH AND YOU AGREE
|
|
37
|
+
THAT YOU ARE FULLY RESPONSIBLE FOR ANY CLAIMS, COSTS, DAMAGES, EXPENSES, AND
|
|
38
|
+
ATTORNEYS' FEES ARISING OUT OF ANY SUCH USE, EVEN IF ANY CLAIM ALLEGES THAT
|
|
39
|
+
INTEL WAS NEGLIGENT REGARDING THE DESIGN OR MANUFACTURE OF THE SOFTWARE.
|
|
40
|
+
|
|
41
|
+
LIMITATION OF LIABILITY. IN NO EVENT WILL INTEL BE LIABLE FOR ANY DIRECT,
|
|
42
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
43
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
44
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
45
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
46
|
+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
47
|
+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
48
|
+
|
|
49
|
+
No support. Intel may make changes to the Software, at any time without notice,
|
|
50
|
+
and is not obligated to support, update or provide training for the Software.
|
|
51
|
+
|
|
52
|
+
Termination. Your right to use the Software is terminated in the event of your
|
|
53
|
+
breach of this license.
|
|
54
|
+
|
|
55
|
+
Feedback. Should you provide Intel with comments, modifications, corrections,
|
|
56
|
+
enhancements or other input ("Feedback") related to the Software, Intel will be
|
|
57
|
+
free to use, disclose, reproduce, license or otherwise distribute or exploit the
|
|
58
|
+
Feedback in its sole discretion without any obligations or restrictions of any
|
|
59
|
+
kind, including without limitation, intellectual property rights or licensing
|
|
60
|
+
obligations.
|
|
61
|
+
|
|
62
|
+
Compliance with laws. You agree to comply with all relevant laws and regulations
|
|
63
|
+
governing your use, transfer, import or export (or prohibition thereof) of the
|
|
64
|
+
Software.
|
|
65
|
+
|
|
66
|
+
Governing law. All disputes will be governed by the laws of the United States of
|
|
67
|
+
America and the State of Delaware without reference to conflict of law principles
|
|
68
|
+
and subject to the exclusive jurisdiction of the state or federal courts sitting
|
|
69
|
+
in the State of Delaware, and each party agrees that it submits to the personal
|
|
70
|
+
jurisdiction and venue of those courts and waives any objections. THE UNITED
|
|
71
|
+
NATIONS CONVENTION ON CONTRACTS FOR THE INTERNATIONAL SALE OF GOODS (1980) IS
|
|
72
|
+
SPECIFICALLY EXCLUDED AND WILL NOT APPLY TO THE SOFTWARE.
|