├── contrib ├── headers.txt ├── dist │ ├── mofed │ │ └── debian │ │ │ ├── compat │ │ │ ├── source │ │ │ └── format │ │ │ ├── changelog.in │ │ │ └── rules.in │ └── make_tarball ├── platform │ ├── optimized │ ├── lanl │ │ ├── darwin │ │ │ ├── debug │ │ │ ├── optimized │ │ │ ├── debug-mic │ │ │ ├── optimized-mic │ │ │ ├── optimized-common │ │ │ └── debug-common │ │ └── toss │ │ │ └── common-optimized │ ├── clang │ │ └── align │ ├── snl │ │ └── portals4-orte │ └── embedded │ │ ├── build_embedded.sh │ │ └── gen_embedded.sh ├── amca-param-sets │ └── example.conf ├── coverity │ └── coverity-model.c ├── build-mca-comps-outside-of-tree │ └── autogen.sh ├── build-server │ └── openmpi-update-www.open-mpi.org.sh ├── infrastructure │ ├── openmpi-update-www.open-mpi.org.sh │ └── crontab-mpiteam-at-lion.crest.iu.edu ├── scaling │ ├── mpi_no_op.c │ └── Makefile └── spread │ └── spread-init.txt ├── ompi ├── mca │ ├── coll │ │ ├── demo │ │ │ ├── .opal_ignore │ │ │ └── owner.txt │ │ ├── sm │ │ │ ├── memory-layout.ppt │ │ │ └── owner.txt │ │ ├── basic │ │ │ └── owner.txt │ │ ├── inter │ │ │ └── owner.txt │ │ ├── portals4 │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── cuda │ │ │ └── owner.txt │ │ ├── hcoll │ │ │ └── owner.txt │ │ ├── libnbc │ │ │ └── owner.txt │ │ ├── self │ │ │ └── owner.txt │ │ ├── sync │ │ │ └── owner.txt │ │ └── tuned │ │ │ └── owner.txt │ ├── hook │ │ ├── demo │ │ │ ├── .opal_ignore │ │ │ └── owner.txt │ │ ├── base │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ ├── comm_method │ │ │ └── owner.txt │ │ └── configure.m4 │ ├── op │ │ ├── example │ │ │ ├── .opal_ignore │ │ │ └── owner.txt │ │ └── base │ │ │ └── owner.txt │ ├── pml │ │ ├── example │ │ │ ├── .opal_ignore │ │ │ ├── pml_example_proc.c │ │ │ ├── pml_example_ptl.c │ │ │ ├── pml_example_progress.c │ │ │ ├── pml_example_ptl.h │ │ │ ├── pml_example_proc.h │ │ │ └── pml_example_start.c │ │ ├── cm │ │ │ ├── post_configure.sh │ │ │ └── owner.txt │ │ ├── ob1 │ │ │ ├── post_configure.sh │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── ucx │ │ │ └── owner.txt │ │ ├── v │ │ │ ├── owner.txt │ │ │ └── configure.m4 │ │ ├── crcpw │ │ │ └── owner.txt │ │ └── configure.m4 │ ├── topo │ │ ├── example │ │ │ ├── .opal_ignore │ │ │ └── owner.txt │ │ ├── treematch │ │ │ └── treematch │ │ │ │ ├── LICENSE │ │ │ │ ├── tm_mt.h │ │ │ │ └── tm_kpartitioning.h │ │ ├── base │ │ │ └── owner.txt │ │ └── basic │ │ │ └── owner.txt │ ├── io │ │ ├── base │ │ │ ├── io_base_component_list.c │ │ │ └── owner.txt │ │ ├── romio321 │ │ │ ├── autogen.subdirs │ │ │ ├── romio │ │ │ │ ├── adio │ │ │ │ │ ├── ad_hfs │ │ │ │ │ │ └── README │ │ │ │ │ ├── ad_sfs │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── Makefile.mk │ │ │ │ │ ├── ad_piofs │ │ │ │ │ │ └── README │ │ │ │ │ ├── common │ │ │ │ │ │ ├── ad_iread_coll.pdf │ │ │ │ │ │ └── ad_iwrite_coll.pdf │ │ │ │ │ ├── ad_gpfs │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── pe │ │ │ │ │ │ │ └── Makefile.mk │ │ │ │ │ ├── ad_nfs │ │ │ │ │ │ └── ad_nfs_hints.c │ │ │ │ │ ├── ad_ufs │ │ │ │ │ │ └── Makefile.mk │ │ │ │ │ └── include │ │ │ │ │ │ └── mpiu_greq.h │ │ │ │ ├── autogen.sh │ │ │ │ ├── doc │ │ │ │ │ ├── source-guide.tex │ │ │ │ │ └── users-guide.pdf │ │ │ │ ├── .gitignore │ │ │ │ ├── localdefs.in │ │ │ │ ├── test │ │ │ │ │ ├── test_hintfile │ │ │ │ │ └── .codingcheck │ │ │ │ ├── mpi-io │ │ │ │ │ └── glue │ │ │ │ │ │ ├── mpich │ │ │ │ │ │ └── Makefile.mk │ │ │ │ │ │ ├── default │ │ │ │ │ │ └── Makefile.mk │ │ │ │ │ │ ├── openmpi │ │ │ │ │ │ └── Makefile.mk │ │ │ │ │ │ └── Makefile.mk │ │ │ │ ├── confdb │ │ │ │ │ └── aclocal_am.m4 │ │ │ │ └── README_OMPI │ │ │ ├── owner.txt │ │ │ └── .gitignore │ │ └── ompio │ │ │ └── owner.txt │ ├── vprotocol │ │ ├── example │ │ │ ├── .opal_ignore │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ └── pessimist │ │ │ ├── owner.txt │ │ │ └── vprotocol_pessimist_event.c │ ├── fs │ │ ├── lustre │ │ │ ├── .opal_unignore │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── pvfs2 │ │ │ └── owner.txt │ │ ├── ufs │ │ │ └── owner.txt │ │ └── ime │ │ │ └── owner.txt │ ├── mtl │ │ ├── ofi │ │ │ ├── post_configure.sh │ │ │ ├── .gitignore │ │ │ └── owner.txt │ │ ├── psm2 │ │ │ ├── post_configure.sh │ │ │ └── owner.txt │ │ ├── portals4 │ │ │ ├── post_configure.sh │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ └── configure.m4 │ ├── fbtl │ │ ├── base │ │ │ └── owner.txt │ │ ├── posix │ │ │ └── owner.txt │ │ ├── pvfs2 │ │ │ └── owner.txt │ │ └── ime │ │ │ └── owner.txt │ ├── fcoll │ │ ├── base │ │ │ └── owner.txt │ │ ├── dynamic │ │ │ └── owner.txt │ │ ├── two_phase │ │ │ └── owner.txt │ │ ├── vulcan │ │ │ └── owner.txt │ │ ├── dynamic_gen2 │ │ │ └── owner.txt │ │ └── individual │ │ │ └── owner.txt │ ├── osc │ │ ├── base │ │ │ └── owner.txt │ │ ├── rdma │ │ │ └── owner.txt │ │ ├── portals4 │ │ │ └── owner.txt │ │ ├── pt2pt │ │ │ ├── owner.txt │ │ │ └── help-osc-pt2pt.txt │ │ ├── sm │ │ │ └── owner.txt │ │ └── ucx │ │ │ └── owner.txt │ ├── bml │ │ ├── r2 │ │ │ └── owner.txt │ │ └── base │ │ │ └── owner.txt │ ├── crcp │ │ ├── base │ │ │ └── owner.txt │ │ └── bkmrk │ │ │ └── owner.txt │ ├── sharedfp │ │ ├── base │ │ │ └── owner.txt │ │ ├── sm │ │ │ └── owner.txt │ │ ├── individual │ │ │ └── owner.txt │ │ └── lockedfile │ │ │ └── owner.txt │ └── rte │ │ └── base │ │ └── Makefile.am ├── mpiext │ ├── example │ │ ├── .opal_ignore │ │ └── use-mpi │ │ │ └── Makefile.am │ ├── pcollreq │ │ ├── c │ │ │ ├── MPIX_Alltoall_init.3in │ │ │ ├── MPIX_Bcast_init.3in │ │ │ ├── MPIX_Exscan_init.3in │ │ │ ├── MPIX_Gather_init.3in │ │ │ ├── MPIX_Gatherv_init.3in │ │ │ ├── MPIX_Reduce_init.3in │ │ │ ├── MPIX_Scan_init.3in │ │ │ ├── MPIX_Scatter_init.3in │ │ │ ├── MPIX_Scatterv_init.3in │ │ │ ├── MPIX_Allgather_init.3in │ │ │ ├── MPIX_Allgatherv_init.3in │ │ │ ├── MPIX_Allreduce_init.3in │ │ │ ├── MPIX_Alltoallv_init.3in │ │ │ ├── MPIX_Alltoallw_init.3in │ │ │ ├── MPIX_Neighbor_allgather_init.3in │ │ │ ├── MPIX_Neighbor_alltoall_init.3in │ │ │ ├── MPIX_Neighbor_alltoallv_init.3in │ │ │ ├── MPIX_Neighbor_alltoallw_init.3in │ │ │ ├── MPIX_Reduce_scatter_init.3in │ │ │ ├── MPIX_Neighbor_allgatherv_init.3in │ │ │ ├── MPIX_Reduce_scatter_block_init.3in │ │ │ └── mpiext_pcollreq_c.c │ │ ├── Makefile.am │ │ └── mpif-h │ │ │ └── mpiext_pcollreq_mpifh.c │ ├── shortfloat │ │ ├── Makefile.am │ │ └── use-mpi │ │ │ ├── mpiext_shortfloat_usempi.h │ │ │ └── Makefile.am │ └── cuda │ │ └── README.txt ├── mpi │ ├── man │ │ └── man3 │ │ │ ├── OpenMPI.3in │ │ │ ├── MPI_Rget.3in │ │ │ ├── MPI_Rput.3in │ │ │ ├── MPI_Ibcast.3in │ │ │ ├── MPI_Iscan.3in │ │ │ ├── MPI_Aint_diff.3in │ │ │ ├── MPI_Comm_c2f.3in │ │ │ ├── MPI_File_c2f.3in │ │ │ ├── MPI_Group_c2f.3in │ │ │ ├── MPI_Group_f2c.3in │ │ │ ├── MPI_Ialltoall.3in │ │ │ ├── MPI_Ibarrier.3in │ │ │ ├── MPI_Iexscan.3in │ │ │ ├── MPI_Igather.3in │ │ │ ├── MPI_Igatherv.3in │ │ │ ├── MPI_Info_c2f.3in │ │ │ ├── MPI_Info_f2c.3in │ │ │ ├── MPI_Ireduce.3in │ │ │ ├── MPI_Iscatter.3in │ │ │ ├── MPI_Iscatterv.3in │ │ │ ├── MPI_Op_c2f.3in │ │ │ ├── MPI_Op_f2c.3in │ │ │ ├── MPI_Type_c2f.3in │ │ │ ├── MPI_Type_f2c.3in │ │ │ ├── MPI_Win_c2f.3in │ │ │ ├── MPI_Win_f2c.3in │ │ │ ├── MPI_Iallgather.3in │ │ │ ├── MPI_Iallgatherv.3in │ │ │ ├── MPI_Iallreduce.3in │ │ │ ├── MPI_Ialltoallv.3in │ │ │ ├── MPI_Ialltoallw.3in │ │ │ ├── MPI_Message_c2f.3in │ │ │ ├── MPI_Message_f2c.3in │ │ │ ├── MPI_Raccumulate.3in │ │ │ ├── MPI_Request_c2f.3in │ │ │ ├── MPI_Request_f2c.3in │ │ │ ├── MPI_Status_c2f.3in │ │ │ ├── MPI_Type_size_x.3in │ │ │ ├── MPI_Win_detach.3in │ │ │ ├── MPI_Win_flush_all.3in │ │ │ ├── MPI_Get_elements_x.3in │ │ │ ├── MPI_T_pvar_stop.3in │ │ │ ├── MPI_Ireduce_scatter.3in │ │ │ ├── MPI_Rget_accumulate.3in │ │ │ ├── MPI_Type_create_hindexed.3in │ │ │ ├── MPI_Type_get_extent_x.3in │ │ │ ├── MPI_Ineighbor_allgather.3in │ │ │ ├── MPI_Ineighbor_alltoall.3in │ │ │ ├── MPI_Ineighbor_alltoallv.3in │ │ │ ├── MPI_Ineighbor_alltoallw.3in │ │ │ ├── MPI_T_cvar_handle_free.3in │ │ │ ├── MPI_T_pvar_handle_free.3in │ │ │ ├── MPI_Win_flush_local_all.3in │ │ │ ├── MPI_File_f2c.3in │ │ │ ├── MPI_Ineighbor_allgatherv.3in │ │ │ ├── MPI_Ireduce_scatter_block.3in │ │ │ ├── MPI_Status_set_elements_x.3in │ │ │ ├── MPI_T_pvar_session_free.3in │ │ │ ├── MPI_Type_get_true_extent_x.3in │ │ │ └── MPI_Type_create_hindexed_block.3in │ ├── fortran │ │ ├── c_to_integer_kind_mapping.pdf │ │ └── use-mpi-f08 │ │ │ └── tests │ │ │ └── print_array.c │ └── java │ │ └── Makefile.am ├── util │ └── Makefile.am └── dpm │ └── Makefile.am ├── opal ├── mca │ ├── btl │ │ ├── template │ │ │ ├── .opal_ignore │ │ │ ├── .opal_unignore │ │ │ ├── sample-btl-template.conf │ │ │ ├── owner.txt │ │ │ └── netpipe-btl-template.txt │ │ ├── sm │ │ │ └── owner.txt │ │ ├── ofi │ │ │ └── owner.txt │ │ ├── self │ │ │ └── owner.txt │ │ ├── tcp │ │ │ └── owner.txt │ │ ├── uct │ │ │ └── owner.txt │ │ ├── ugni │ │ │ └── owner.txt │ │ ├── usnic │ │ │ ├── owner.txt │ │ │ └── btl_usnic_hwloc.h │ │ ├── vader │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── portals4 │ │ │ └── owner.txt │ │ └── smcuda │ │ │ └── owner.txt │ ├── compress │ │ ├── bzip │ │ │ ├── .opal_ignore │ │ │ └── owner.txt │ │ ├── fwd │ │ │ ├── .opal_ignore │ │ │ └── owner.txt │ │ ├── gzip │ │ │ ├── .opal_ignore │ │ │ └── owner.txt │ │ ├── reverse │ │ │ ├── .opal_ignore │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ └── zlib │ │ │ └── owner.txt │ ├── hwloc │ │ ├── hwloc2 │ │ │ ├── autogen.subdirs │ │ │ ├── README-ompi.txt │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ └── external │ │ │ └── owner.txt │ ├── pmix │ │ ├── pmix4x │ │ │ ├── autogen.subdirs │ │ │ ├── openpmix │ │ │ │ ├── contrib │ │ │ │ │ ├── platform │ │ │ │ │ │ └── optimized │ │ │ │ │ └── perf_tools │ │ │ │ │ │ ├── pmi2_utils.h │ │ │ │ │ │ └── run.sh │ │ │ │ ├── test │ │ │ │ │ ├── python │ │ │ │ │ │ ├── run_sched.sh.in │ │ │ │ │ │ └── run_server.sh.in │ │ │ │ │ ├── test_cd.h │ │ │ │ │ ├── test_error.h │ │ │ │ │ ├── test_internal.h │ │ │ │ │ ├── test_replace.h │ │ │ │ │ ├── test_spawn.h │ │ │ │ │ └── test_publish.h │ │ │ │ └── src │ │ │ │ │ ├── tool │ │ │ │ │ └── Makefile.include │ │ │ │ │ ├── hwloc │ │ │ │ │ └── Makefile.include │ │ │ │ │ ├── mca │ │ │ │ │ ├── pif │ │ │ │ │ │ ├── bsdx_ipv4 │ │ │ │ │ │ │ └── Makefile.am │ │ │ │ │ │ ├── bsdx_ipv6 │ │ │ │ │ │ │ └── Makefile.am │ │ │ │ │ │ ├── posix_ipv4 │ │ │ │ │ │ │ └── Makefile.am │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ └── Makefile.am │ │ │ │ │ │ ├── linux_ipv6 │ │ │ │ │ │ │ └── Makefile.am │ │ │ │ │ │ └── solaris_ipv6 │ │ │ │ │ │ │ └── Makefile.am │ │ │ │ │ ├── pinstalldirs │ │ │ │ │ │ ├── configure.m4 │ │ │ │ │ │ └── base │ │ │ │ │ │ │ └── Makefile.am │ │ │ │ │ ├── pdl │ │ │ │ │ │ └── base │ │ │ │ │ │ │ └── Makefile.am │ │ │ │ │ ├── psquash │ │ │ │ │ │ └── base │ │ │ │ │ │ │ └── Makefile.include │ │ │ │ │ └── gds │ │ │ │ │ │ └── ds21 │ │ │ │ │ │ └── gds_ds21_file.h │ │ │ │ │ └── event │ │ │ │ │ └── Makefile.include │ │ │ └── common_sym_whitelist.txt │ │ ├── s1 │ │ │ └── owner.txt │ │ ├── s2 │ │ │ └── owner.txt │ │ ├── cray │ │ │ └── owner.txt │ │ ├── flux │ │ │ └── owner.txt │ │ ├── ext2x │ │ │ └── common_sym_whitelist.txt │ │ ├── ext3x │ │ │ └── common_sym_whitelist.txt │ │ └── ext4x │ │ │ └── common_sym_whitelist.txt │ ├── event │ │ ├── libevent2022 │ │ │ ├── autogen.subdirs │ │ │ ├── libevent │ │ │ │ ├── m4 │ │ │ │ │ └── ac_backport_259_ssizet.m4 │ │ │ │ ├── test │ │ │ │ │ └── tinytest_local.h │ │ │ │ ├── autogen.sh │ │ │ │ ├── libevent.pc.in │ │ │ │ ├── libevent_openssl.pc.in │ │ │ │ ├── strlcpy-internal.h │ │ │ │ └── libevent_pthreads.pc.in │ │ │ └── owner.txt │ │ ├── base │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ └── external │ │ │ └── owner.txt │ ├── common │ │ ├── cuda │ │ │ └── owner.txt │ │ ├── sm │ │ │ └── owner.txt │ │ ├── ucx │ │ │ └── owner.txt │ │ └── ofi │ │ │ └── owner.txt │ ├── crs │ │ ├── none │ │ │ └── owner.txt │ │ ├── self │ │ │ └── owner.txt │ │ └── base │ │ │ └── owner.txt │ ├── if │ │ ├── base │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ ├── bsdx_ipv4 │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ ├── bsdx_ipv6 │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ ├── linux_ipv6 │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ ├── posix_ipv4 │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ └── solaris_ipv6 │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ ├── backtrace │ │ ├── none │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── execinfo │ │ │ └── owner.txt │ │ └── printstack │ │ │ └── owner.txt │ ├── installdirs │ │ ├── base │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ ├── config │ │ │ └── owner.txt │ │ ├── env │ │ │ └── owner.txt │ │ └── configure.m4 │ ├── mpool │ │ └── base │ │ │ └── owner.txt │ ├── pstat │ │ ├── linux │ │ │ └── owner.txt │ │ ├── test │ │ │ └── owner.txt │ │ └── configure.m4 │ ├── rcache │ │ ├── grdma │ │ │ └── owner.txt │ │ ├── udreg │ │ │ └── owner.txt │ │ ├── gpusm │ │ │ └── owner.txt │ │ └── rgpusm │ │ │ └── owner.txt │ ├── reachable │ │ ├── base │ │ │ └── owner.txt │ │ ├── netlink │ │ │ └── owner.txt │ │ └── weighted │ │ │ └── owner.txt │ ├── shmem │ │ ├── base │ │ │ └── owner.txt │ │ ├── mmap │ │ │ └── owner.txt │ │ ├── posix │ │ │ └── owner.txt │ │ └── sysv │ │ │ └── owner.txt │ ├── timer │ │ ├── altix │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── darwin │ │ │ └── owner.txt │ │ ├── linux │ │ │ └── owner.txt │ │ └── solaris │ │ │ └── owner.txt │ ├── allocator │ │ ├── base │ │ │ └── owner.txt │ │ ├── basic │ │ │ └── owner.txt │ │ └── bucket │ │ │ └── owner.txt │ ├── memcpy │ │ └── base │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ ├── memory │ │ ├── base │ │ │ └── owner.txt │ │ └── malloc_solaris │ │ │ └── owner.txt │ ├── memchecker │ │ ├── base │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ └── valgrind │ │ │ └── owner.txt │ └── dl │ │ └── base │ │ └── Makefile.am ├── common_sym_whitelist.txt └── test │ └── reachable │ ├── tests │ └── Makefile ├── NEWS ├── oshmem ├── shmem │ ├── man │ │ └── man3 │ │ │ ├── OpenSHMEM.3in │ │ │ ├── _my_pe.3in │ │ │ ├── _num_pes.3in │ │ │ ├── shfree.3in │ │ │ ├── shrealloc.3in │ │ │ ├── start_pes.3in │ │ │ ├── shmem_align.3in │ │ │ ├── shmem_double_g.3in │ │ │ ├── shmem_double_p.3in │ │ │ ├── shmem_float_g.3in │ │ │ ├── shmem_float_p.3in │ │ │ ├── shmem_float_swap.3in │ │ │ ├── shmem_free.3in │ │ │ ├── shmem_get128.3in │ │ │ ├── shmem_get32.3in │ │ │ ├── shmem_get64.3in │ │ │ ├── shmem_getmem.3in │ │ │ ├── shmem_int_g.3in │ │ │ ├── shmem_int_p.3in │ │ │ ├── shmem_int_swap.3in │ │ │ ├── shmem_int_wait.3in │ │ │ ├── shmem_long_g.3in │ │ │ ├── shmem_long_p.3in │ │ │ ├── shmem_long_swap.3in │ │ │ ├── shmem_long_wait.3in │ │ │ ├── shmem_put128.3in │ │ │ ├── shmem_put32.3in │ │ │ ├── shmem_put64.3in │ │ │ ├── shmem_putmem.3in │ │ │ ├── shmem_realloc.3in │ │ │ ├── shmem_short_g.3in │ │ │ ├── shmem_short_p.3in │ │ │ ├── shmem_short_wait.3in │ │ │ ├── shmem_wait_until.3in │ │ │ ├── shmemalign.3in │ │ │ ├── shmem_clear_lock.3in │ │ │ ├── shmem_collect64.3in │ │ │ ├── shmem_double_get.3in │ │ │ ├── shmem_double_put.3in │ │ │ ├── shmem_double_set.3in │ │ │ ├── shmem_double_swap.3in │ │ │ ├── shmem_fcollect32.3in │ │ │ ├── shmem_fcollect64.3in │ │ │ ├── shmem_float_get.3in │ │ │ ├── shmem_float_put.3in │ │ │ ├── shmem_float_set.3in │ │ │ ├── shmem_get16_nbi.3in │ │ │ ├── shmem_get32_nbi.3in │ │ │ ├── shmem_get64_nbi.3in │ │ │ ├── shmem_get8_nbi.3in │ │ │ ├── shmem_iget128.3in │ │ │ ├── shmem_iget32.3in │ │ │ ├── shmem_iget64.3in │ │ │ ├── shmem_int_get.3in │ │ │ ├── shmem_int_iget.3in │ │ │ ├── shmem_int_iput.3in │ │ │ ├── shmem_int_put.3in │ │ │ ├── shmem_int_wait_until.3in │ │ │ ├── shmem_iput128.3in │ │ │ ├── shmem_iput32.3in │ │ │ ├── shmem_iput64.3in │ │ │ ├── shmem_long_add.3in │ │ │ ├── shmem_long_cswap.3in │ │ │ ├── shmem_long_fadd.3in │ │ │ ├── shmem_long_fetch.3in │ │ │ ├── shmem_long_finc.3in │ │ │ ├── shmem_long_get.3in │ │ │ ├── shmem_long_iget.3in │ │ │ ├── shmem_long_inc.3in │ │ │ ├── shmem_long_iput.3in │ │ │ ├── shmem_long_put.3in │ │ │ ├── shmem_long_set.3in │ │ │ ├── shmem_long_wait_until.3in │ │ │ ├── shmem_longdouble_g.3in │ │ │ ├── shmem_longdouble_p.3in │ │ │ ├── shmem_longlong_add.3in │ │ │ ├── shmem_longlong_g.3in │ │ │ ├── shmem_longlong_inc.3in │ │ │ ├── shmem_longlong_p.3in │ │ │ ├── shmem_longlong_set.3in │ │ │ ├── shmem_longlong_swap.3in │ │ │ ├── shmem_longlong_wait.3in │ │ │ ├── shmem_put16_nbi.3in │ │ │ ├── shmem_put32_nbi.3in │ │ │ ├── shmem_put64_nbi.3in │ │ │ ├── shmem_put8_nbi.3in │ │ │ ├── shmem_short_get.3in │ │ │ ├── shmem_short_put.3in │ │ │ ├── shmem_test_lock.3in │ │ │ ├── shmem_alltoall64.3in │ │ │ ├── shmem_alltoalls32.3in │ │ │ ├── shmem_alltoalls64.3in │ │ │ ├── shmem_broadcast64.3in │ │ │ ├── shmem_char_get_nbi.3in │ │ │ ├── shmem_char_put_nbi.3in │ │ │ ├── shmem_clear_cache_inv.3in │ │ │ ├── shmem_double_fetch.3in │ │ │ ├── shmem_double_get_nbi.3in │ │ │ ├── shmem_double_iget.3in │ │ │ ├── shmem_double_iput.3in │ │ │ ├── shmem_double_put_nbi.3in │ │ │ ├── shmem_float_fetch.3in │ │ │ ├── shmem_float_get_nbi.3in │ │ │ ├── shmem_float_iget.3in │ │ │ ├── shmem_float_iput.3in │ │ │ ├── shmem_float_put_nbi.3in │ │ │ ├── shmem_get128_nbi.3in │ │ │ ├── shmem_int_get_nbi.3in │ │ │ ├── shmem_int_put_nbi.3in │ │ │ ├── shmem_long_get_nbi.3in │ │ │ ├── shmem_long_put_nbi.3in │ │ │ ├── shmem_longdouble_get.3in │ │ │ ├── shmem_longdouble_put.3in │ │ │ ├── shmem_longlong_cswap.3in │ │ │ ├── shmem_longlong_fadd.3in │ │ │ ├── shmem_longlong_fetch.3in │ │ │ ├── shmem_longlong_finc.3in │ │ │ ├── shmem_longlong_get.3in │ │ │ ├── shmem_longlong_iget.3in │ │ │ ├── shmem_longlong_iput.3in │ │ │ ├── shmem_longlong_put.3in │ │ │ ├── shmem_longlong_wait_until.3in │ │ │ ├── shmem_put128_nbi.3in │ │ │ ├── shmem_set_cache_inv.3in │ │ │ ├── shmem_short_get_nbi.3in │ │ │ ├── shmem_short_put_nbi.3in │ │ │ ├── shmem_short_wait_until.3in │ │ │ ├── shmem_udcflush_line.3in │ │ │ ├── shmem_clear_cache_line_inv.3in │ │ │ ├── shmem_int_or_to_all.3in │ │ │ ├── shmem_int_xor_to_all.3in │ │ │ ├── shmem_long_or_to_all.3in │ │ │ ├── shmem_long_xor_to_all.3in │ │ │ ├── shmem_longdouble_get_nbi.3in │ │ │ ├── shmem_longdouble_iget.3in │ │ │ ├── shmem_longdouble_iput.3in │ │ │ ├── shmem_longdouble_put_nbi.3in │ │ │ ├── shmem_longlong_get_nbi.3in │ │ │ ├── shmem_longlong_put_nbi.3in │ │ │ ├── shmem_set_cache_line_inv.3in │ │ │ ├── shmem_double_max_to_all.3in │ │ │ ├── shmem_double_min_to_all.3in │ │ │ ├── shmem_double_sum_to_all.3in │ │ │ ├── shmem_float_max_to_all.3in │ │ │ ├── shmem_float_min_to_all.3in │ │ │ ├── shmem_float_prod_to_all.3in │ │ │ ├── shmem_float_sum_to_all.3in │ │ │ ├── shmem_int_and_to_all.3in │ │ │ ├── shmem_int_max_to_all.3in │ │ │ ├── shmem_int_min_to_all.3in │ │ │ ├── shmem_int_prod_to_all.3in │ │ │ ├── shmem_int_sum_to_all.3in │ │ │ ├── shmem_long_and_to_all.3in │ │ │ ├── shmem_long_max_to_all.3in │ │ │ ├── shmem_long_min_to_all.3in │ │ │ ├── shmem_long_prod_to_all.3in │ │ │ ├── shmem_long_sum_to_all.3in │ │ │ ├── shmem_longlong_or_to_all.3in │ │ │ ├── shmem_longlong_xor_to_all.3in │ │ │ ├── shmem_complexd_prod_to_all.3in │ │ │ ├── shmem_complexd_sum_to_all.3in │ │ │ ├── shmem_complexf_prod_to_all.3in │ │ │ ├── shmem_complexf_sum_to_all.3in │ │ │ ├── shmem_double_prod_to_all.3in │ │ │ ├── shmem_longdouble_max_to_all.3in │ │ │ ├── shmem_longdouble_min_to_all.3in │ │ │ ├── shmem_longdouble_prod_to_all.3in │ │ │ ├── shmem_longdouble_sum_to_all.3in │ │ │ ├── shmem_longlong_and_to_all.3in │ │ │ ├── shmem_longlong_max_to_all.3in │ │ │ ├── shmem_longlong_min_to_all.3in │ │ │ ├── shmem_longlong_prod_to_all.3in │ │ │ └── shmem_longlong_sum_to_all.3in │ ├── help-shmem-api.txt │ ├── Makefile.am │ └── fortran │ │ └── shmem_fortran_pointer.h ├── mca │ ├── atomic │ │ ├── ucx │ │ │ └── owner.txt │ │ └── base │ │ │ └── Makefile.am │ ├── spml │ │ └── ucx │ │ │ └── owner.txt │ ├── sshmem │ │ └── ucx │ │ │ └── owner.txt │ ├── scoll │ │ ├── base │ │ │ └── Makefile.am │ │ └── mpi │ │ │ └── help-oshmem-scoll-mpi.txt │ └── memheap │ │ └── configure.m4 ├── include │ └── oshmem │ │ └── Makefile.am ├── op │ └── Makefile.am ├── info │ └── Makefile.am ├── util │ └── Makefile.am └── request │ └── Makefile.am ├── orte ├── test │ ├── mpi │ │ ├── myhello.spec │ │ ├── myring.spec │ │ ├── shell_hello │ │ ├── spawn-problem │ │ │ └── Makefile │ │ ├── init-exit77.c │ │ ├── mpi_no_op.c │ │ ├── mpi_barrier.c │ │ ├── thread_init.c │ │ ├── nonzero.c │ │ └── sio.c │ └── system │ │ ├── no_op.c │ │ └── segfault.c ├── mca │ ├── oob │ │ ├── alps │ │ │ └── owner.txt │ │ ├── tcp │ │ │ └── owner.txt │ │ └── base │ │ │ └── owner.txt │ ├── ras │ │ ├── alps │ │ │ └── owner.txt │ │ ├── lsf │ │ │ └── owner.txt │ │ ├── tm │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── slurm │ │ │ └── owner.txt │ │ ├── gridengine │ │ │ └── owner.txt │ │ └── simulator │ │ │ └── owner.txt │ ├── common │ │ └── alps │ │ │ └── owner.txt │ ├── ess │ │ ├── alps │ │ │ └── owner.txt │ │ ├── env │ │ │ └── owner.txt │ │ ├── hnp │ │ │ └── owner.txt │ │ ├── lsf │ │ │ └── owner.txt │ │ ├── pmi │ │ │ ├── owner.txt │ │ │ └── ess_pmi.h │ │ ├── tm │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── slurm │ │ │ └── owner.txt │ │ ├── tool │ │ │ └── owner.txt │ │ └── singleton │ │ │ └── owner.txt │ ├── iof │ │ ├── hnp │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── orted │ │ │ └── owner.txt │ │ └── tool │ │ │ └── owner.txt │ ├── odls │ │ ├── alps │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── default │ │ │ └── owner.txt │ │ └── pspawn │ │ │ └── owner.txt │ ├── plm │ │ ├── alps │ │ │ └── owner.txt │ │ ├── lsf │ │ │ └── owner.txt │ │ ├── rsh │ │ │ └── owner.txt │ │ ├── tm │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── isolated │ │ │ └── owner.txt │ │ └── slurm │ │ │ └── owner.txt │ ├── rmaps │ │ ├── seq │ │ │ └── owner.txt │ │ ├── base │ │ │ └── owner.txt │ │ ├── ppr │ │ │ └── owner.txt │ │ ├── mindist │ │ │ └── owner.txt │ │ ├── rank_file │ │ │ ├── owner.txt │ │ │ └── common_sym_whitelist.txt │ │ ├── resilient │ │ │ └── owner.txt │ │ └── round_robin │ │ │ └── owner.txt │ ├── rml │ │ ├── oob │ │ │ └── owner.txt │ │ └── base │ │ │ └── owner.txt │ ├── schizo │ │ ├── alps │ │ │ └── owner.txt │ │ ├── base │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ ├── flux │ │ │ └── owner.txt │ │ ├── jsm │ │ │ └── owner.txt │ │ ├── moab │ │ │ └── owner.txt │ │ ├── ompi │ │ │ └── owner.txt │ │ └── slurm │ │ │ └── owner.txt │ ├── state │ │ ├── app │ │ │ └── owner.txt │ │ ├── base │ │ │ ├── owner.txt │ │ │ └── help-state-base.txt │ │ ├── hnp │ │ │ └── owner.txt │ │ ├── novm │ │ │ └── owner.txt │ │ ├── orted │ │ │ └── owner.txt │ │ └── tool │ │ │ └── owner.txt │ ├── errmgr │ │ ├── base │ │ │ └── owner.txt │ │ ├── default_app │ │ │ └── owner.txt │ │ ├── default_hnp │ │ │ └── owner.txt │ │ ├── default_orted │ │ │ └── owner.txt │ │ └── default_tool │ │ │ └── owner.txt │ ├── filem │ │ ├── base │ │ │ └── owner.txt │ │ └── raw │ │ │ └── owner.txt │ ├── grpcomm │ │ ├── base │ │ │ └── owner.txt │ │ └── direct │ │ │ └── owner.txt │ ├── routed │ │ ├── base │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ ├── direct │ │ │ └── owner.txt │ │ ├── binomial │ │ │ └── owner.txt │ │ └── debruijn │ │ │ └── owner.txt │ ├── rtc │ │ ├── base │ │ │ ├── owner.txt │ │ │ └── Makefile.am │ │ └── hwloc │ │ │ └── owner.txt │ ├── snapc │ │ ├── base │ │ │ └── owner.txt │ │ └── full │ │ │ └── owner.txt │ └── sstore │ │ ├── base │ │ └── owner.txt │ │ ├── central │ │ └── owner.txt │ │ └── stage │ │ └── owner.txt └── common_sym_whitelist.txt ├── .gitmodules ├── examples └── dtrace │ ├── partrace.sh │ ├── myppriv.sh │ ├── Makefile │ └── mpitrace.d └── test └── dss └── Makefile.am /contrib/headers.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ompi/mca/coll/demo/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ompi/mca/hook/demo/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ompi/mca/op/example/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ompi/mca/pml/example/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ompi/mpiext/example/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/dist/mofed/debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /ompi/mca/topo/example/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opal/mca/btl/template/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opal/mca/compress/bzip/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opal/mca/compress/fwd/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opal/mca/compress/gzip/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opal/mca/compress/reverse/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/dist/make_tarball: -------------------------------------------------------------------------------- 1 | make_dist_tarball -------------------------------------------------------------------------------- /ompi/mca/io/base/io_base_component_list.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ompi/mca/vprotocol/example/.opal_ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ompi/mca/fs/lustre/.opal_unignore: -------------------------------------------------------------------------------- 1 | gabriel 2 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/autogen.subdirs: -------------------------------------------------------------------------------- 1 | romio 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/OpenMPI.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI.3 2 | -------------------------------------------------------------------------------- /opal/mca/hwloc/hwloc2/autogen.subdirs: -------------------------------------------------------------------------------- 1 | hwloc 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Rget.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Get.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Rput.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Put.3 2 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/autogen.subdirs: -------------------------------------------------------------------------------- 1 | openpmix 2 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoglin/ompi/main/NEWS -------------------------------------------------------------------------------- /contrib/dist/mofed/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ibcast.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Bcast.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Iscan.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Scan.3 2 | -------------------------------------------------------------------------------- /opal/mca/event/libevent2022/autogen.subdirs: -------------------------------------------------------------------------------- 1 | libevent 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Aint_diff.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Aint_add.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Comm_c2f.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_File_c2f.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Group_c2f.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Group_f2c.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ialltoall.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Alltoall.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ibarrier.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Barrier.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Iexscan.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Exscan.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Igather.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Gather.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Igatherv.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Gatherv.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Info_c2f.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Info_f2c.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ireduce.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Reduce.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Iscatter.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Scatter.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Iscatterv.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Scatterv.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Op_c2f.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Op_f2c.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Type_c2f.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Type_f2c.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Win_c2f.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Win_f2c.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/OpenSHMEM.3in: -------------------------------------------------------------------------------- 1 | .so man3/intro_shmem.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/_my_pe.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_my_pe.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/_num_pes.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_n_pes.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shfree.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_malloc.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shrealloc.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_malloc.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/start_pes.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Iallgather.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Allgather.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Iallgatherv.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Allgatherv.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Iallreduce.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Allreduce.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ialltoallv.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Alltoallv.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ialltoallw.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Alltoallw.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Message_c2f.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Message_f2c.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Raccumulate.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Accumulate.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Request_c2f.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Request_f2c.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Comm_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Status_c2f.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Status_f2c.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Type_size_x.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Type_size.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Win_detach.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Win_attach.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Win_flush_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Win_flush.3 2 | -------------------------------------------------------------------------------- /orte/test/mpi/myhello.spec: -------------------------------------------------------------------------------- 1 | Name: myhello 2 | Exec: ./hello 3 | 4 | -------------------------------------------------------------------------------- /orte/test/mpi/myring.spec: -------------------------------------------------------------------------------- 1 | Name: myring 2 | Exec: ./ring 3 | 4 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_align.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_malloc.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_g.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_g.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_p.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_p.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_g.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_g.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_p.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_p.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_swap.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_swap.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_free.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_malloc.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_get128.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_get32.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_get64.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_getmem.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_g.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_g.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_p.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_p.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_swap.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_swap.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_wait.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_wait.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_g.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_g.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_p.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_p.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_swap.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_swap.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_wait.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_wait.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_put128.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_put32.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_put64.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_putmem.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_realloc.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_malloc.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_short_g.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_g.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_short_p.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_p.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_short_wait.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_wait.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_wait_until.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_wait.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmemalign.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_malloc.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Get_elements_x.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Get_elements.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_T_pvar_stop.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_T_pvar_start.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_clear_lock.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_set_lock.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_collect64.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_collect32.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_get.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_put.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_set.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_set.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_swap.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_swap.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_fcollect32.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_collect32.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_fcollect64.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_collect32.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_get.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_put.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_set.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_set.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_get16_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_get32_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_get64_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_get8_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_iget128.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iget.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_iget32.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iget.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_iget64.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iget.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_get.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_iget.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iget.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_iput.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iput.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_put.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_wait_until.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_wait.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_iput128.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iput.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_iput32.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iput.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_iput64.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iput.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_add.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_add.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_cswap.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_cswap.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_fadd.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_fadd.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_fetch.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_fetch.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_finc.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_finc.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_get.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_iget.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iget.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_inc.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_inc.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_iput.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iput.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_put.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_set.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_set.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_wait_until.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_wait.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_g.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_g.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_p.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_p.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_add.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_add.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_g.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_g.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_inc.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_inc.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_p.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_p.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_set.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_set.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_swap.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_swap.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_wait.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_wait.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_put16_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_put32_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_put64_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_put8_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_short_get.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_short_put.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_test_lock.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_set_lock.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ireduce_scatter.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Reduce_scatter.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Rget_accumulate.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Get_accumulate.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Type_create_hindexed.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Type_indexed.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Type_get_extent_x.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Type_get_extent.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Alltoall_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Bcast_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Exscan_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Gather_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Gatherv_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Reduce_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Scan_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Scatter_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Scatterv_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /opal/mca/btl/template/.opal_unignore: -------------------------------------------------------------------------------- 1 | twoodall 2 | gshipman 3 | jsquyres 4 | -------------------------------------------------------------------------------- /opal/mca/hwloc/hwloc2/README-ompi.txt: -------------------------------------------------------------------------------- 1 | Cherry-picked commits after 2.1.0: 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_alltoall64.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_alltoall32.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_alltoalls32.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_alltoall32.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_alltoalls64.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_alltoall32.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_broadcast64.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_broadcast32.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_char_get_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_char_put_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_clear_cache_inv.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_udcflush.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_fetch.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_fetch.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_get_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_iget.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iget.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_iput.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iput.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_put_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_fetch.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_fetch.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_get_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_iget.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iget.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_iput.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iput.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_put_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_get128_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_get_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_put_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_get_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_put_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_get.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_put.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_cswap.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_cswap.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_fadd.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_fadd.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_fetch.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_fetch.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_finc.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_int_finc.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_get.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_get.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_iget.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iget.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_iput.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iput.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_put.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_char_put.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_wait_until.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_wait.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_put128_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_set_cache_inv.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_udcflush.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_short_get_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_short_put_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_short_wait_until.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_wait.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_udcflush_line.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_udcflush.3 2 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/ad_hfs/README: -------------------------------------------------------------------------------- 1 | This code is no longer supported. 2 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/ad_sfs/README: -------------------------------------------------------------------------------- 1 | This code is no longer supported. 2 | -------------------------------------------------------------------------------- /ompi/mca/pml/cm/post_configure.sh: -------------------------------------------------------------------------------- 1 | DIRECT_CALL_HEADER="ompi/mca/pml/cm/pml_cm.h" 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ineighbor_allgather.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Neighbor_allgather.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ineighbor_alltoall.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Neighbor_alltoall.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ineighbor_alltoallv.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Neighbor_alltoallv.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ineighbor_alltoallw.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Neighbor_alltoallw.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_T_cvar_handle_free.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_T_cvar_handle_alloc.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_T_pvar_handle_free.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_T_pvar_handle_alloc.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Win_flush_local_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Win_flush_local.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Allgather_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Allgatherv_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Allreduce_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Alltoallv_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Alltoallw_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_clear_cache_line_inv.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_udcflush.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_or_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_or_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_xor_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_xor_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_or_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_or_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_xor_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_xor_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_get_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_iget.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iget.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_iput.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_iput.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_put_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_get_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_getmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_put_nbi.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_putmem_nbi.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_set_cache_line_inv.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_udcflush.3 2 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/ad_piofs/README: -------------------------------------------------------------------------------- 1 | This code is no longer supported. 2 | -------------------------------------------------------------------------------- /ompi/mca/mtl/ofi/post_configure.sh: -------------------------------------------------------------------------------- 1 | DIRECT_CALL_HEADER="ompi/mca/mtl/ofi/mtl_ofi.h" 2 | -------------------------------------------------------------------------------- /ompi/mca/pml/ob1/post_configure.sh: -------------------------------------------------------------------------------- 1 | DIRECT_CALL_HEADER="ompi/mca/pml/ob1/pml_ob1.h" 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_File_f2c.3in: -------------------------------------------------------------------------------- 1 | .\" -*- nroff -*- 2 | .so man3/MPI_Comm_f2c.3 3 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ineighbor_allgatherv.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Neighbor_allgatherv.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Ireduce_scatter_block.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Reduce_scatter_block.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Status_set_elements_x.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Status_set_elements.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_T_pvar_session_free.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_T_pvar_session_create.3 2 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Type_get_true_extent_x.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Type_get_true_extent.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Neighbor_allgather_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Neighbor_alltoall_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Neighbor_alltoallv_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Neighbor_alltoallw_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Reduce_scatter_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_max_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_max_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_min_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_min_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_sum_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_sum_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_max_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_max_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_min_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_min_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_prod_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_prod_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_float_sum_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_sum_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_and_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_and_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_max_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_max_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_min_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_min_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_prod_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_prod_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_int_sum_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_sum_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_and_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_and_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_max_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_max_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_min_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_min_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_prod_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_prod_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_long_sum_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_sum_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_or_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_or_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_xor_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_xor_all.3 2 | -------------------------------------------------------------------------------- /ompi/mca/mtl/psm2/post_configure.sh: -------------------------------------------------------------------------------- 1 | DIRECT_CALL_HEADER="ompi/mca/mtl/psm2/mtl_psm2.h" 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Neighbor_allgatherv_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/MPIX_Reduce_scatter_block_init.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPIX_Barrier_init.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_complexd_prod_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_prod_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_complexd_sum_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_sum_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_complexf_prod_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_prod_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_complexf_sum_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_sum_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_double_prod_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_prod_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_max_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_max_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_min_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_min_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_prod_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_prod_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longdouble_sum_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_sum_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_and_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_and_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_max_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_max_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_min_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_min_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_prod_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_prod_to_all.3 2 | -------------------------------------------------------------------------------- /oshmem/shmem/man/man3/shmem_longlong_sum_to_all.3in: -------------------------------------------------------------------------------- 1 | .so man3/shmem_short_sum_to_all.3 2 | -------------------------------------------------------------------------------- /contrib/platform/optimized: -------------------------------------------------------------------------------- 1 | enable_mem_debug=no 2 | enable_mem_profile=no 3 | enable_debug=no 4 | -------------------------------------------------------------------------------- /ompi/mpi/man/man3/MPI_Type_create_hindexed_block.3in: -------------------------------------------------------------------------------- 1 | .so man3/MPI_Type_create_indexed_block.3 2 | -------------------------------------------------------------------------------- /ompi/mca/mtl/portals4/post_configure.sh: -------------------------------------------------------------------------------- 1 | DIRECT_CALL_HEADER="ompi/mca/mtl/portals4/mtl_portals4.h" 2 | -------------------------------------------------------------------------------- /ompi/mca/coll/sm/memory-layout.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoglin/ompi/main/ompi/mca/coll/sm/memory-layout.ppt -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ${AUTORECONF:-autoreconf} ${autoreconf_args:-"-vif"} -I confdb 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "hwloc-20x"] 2 | path = opal/mca/hwloc/hwloc2/hwloc 3 | url = https://github.com/open-mpi/hwloc.git 4 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/contrib/platform/optimized: -------------------------------------------------------------------------------- 1 | enable_mem_debug=no 2 | enable_mem_profile=no 3 | enable_debug=no 4 | -------------------------------------------------------------------------------- /orte/test/mpi/shell_hello: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo Hello world! I am $MPI_COMM_WORLD_RANK of $MPI_COMM_WORLD_SIZE. 3 | exit 0 4 | -------------------------------------------------------------------------------- /ompi/mca/topo/treematch/treematch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoglin/ompi/main/ompi/mca/topo/treematch/treematch/LICENSE -------------------------------------------------------------------------------- /opal/mca/btl/template/sample-btl-template.conf: -------------------------------------------------------------------------------- 1 | # 2 | # To use: 3 | # -am sample-btl-template.conf 4 | # 5 | btl_template_verbose=42 6 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/doc/source-guide.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoglin/ompi/main/ompi/mca/io/romio321/romio/doc/source-guide.tex -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/doc/users-guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoglin/ompi/main/ompi/mca/io/romio321/romio/doc/users-guide.pdf -------------------------------------------------------------------------------- /ompi/mpi/fortran/c_to_integer_kind_mapping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoglin/ompi/main/ompi/mpi/fortran/c_to_integer_kind_mapping.pdf -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/test/python/run_sched.sh.in: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export PYTHONPATH=@PMIX_PYTHON_EGG_PATH@ 4 | 5 | ./sched.py 6 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/test/python/run_server.sh.in: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export PYTHONPATH=@PMIX_PYTHON_EGG_PATH@ 4 | 5 | ./server.py 6 | -------------------------------------------------------------------------------- /contrib/amca-param-sets/example.conf: -------------------------------------------------------------------------------- 1 | # 2 | # This is an example file illustrating how to setup an Aggregate MCA parameters 3 | # file. 4 | # 5 | # 6 | -------------------------------------------------------------------------------- /contrib/coverity/coverity-model.c: -------------------------------------------------------------------------------- 1 | void opal_btl_usnic_util_abort(const char *msg, const char *file, int line) { 2 | __coverity_panic__(); 3 | } 4 | -------------------------------------------------------------------------------- /ompi/mca/mtl/ofi/.gitignore: -------------------------------------------------------------------------------- 1 | mtl_ofi_improbe_opt.c 2 | mtl_ofi_iprobe_opt.c 3 | mtl_ofi_irecv_opt.c 4 | mtl_ofi_isend_opt.c 5 | mtl_ofi_send_opt.c 6 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/common/ad_iread_coll.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoglin/ompi/main/ompi/mca/io/romio321/romio/adio/common/ad_iread_coll.pdf -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/common/ad_iwrite_coll.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoglin/ompi/main/ompi/mca/io/romio321/romio/adio/common/ad_iwrite_coll.pdf -------------------------------------------------------------------------------- /opal/mca/event/libevent2022/libevent/m4/ac_backport_259_ssizet.m4: -------------------------------------------------------------------------------- 1 | AN_IDENTIFIER([ssize_t], [AC_TYPE_SSIZE_T]) 2 | AC_DEFUN([AC_TYPE_SSIZE_T], [AC_CHECK_TYPE(ssize_t, int)]) 3 | 4 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/ad_gpfs/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile 2 | /.deps 3 | /*.bb 4 | /*.bbg 5 | /*.gcda 6 | /*.gcno 7 | /.libs 8 | /.libstamp* 9 | /*.lo 10 | /.*-cache 11 | /.state-cache 12 | -------------------------------------------------------------------------------- /opal/mca/btl/sm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:UTK 7 | status:active 8 | -------------------------------------------------------------------------------- /ompi/mca/fbtl/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fbtl/posix/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fbtl/pvfs2/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fcoll/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fs/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fs/lustre/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fs/pvfs2/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fs/ufs/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/io/ompio/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/mtl/ofi/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/osc/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/osc/rdma/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/pml/ob1/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: active 8 | -------------------------------------------------------------------------------- /opal/mca/btl/ofi/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:Intel 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/btl/self/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:UTK 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/btl/tcp/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:UTK 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/btl/uct/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:LANL 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/btl/ugni/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:LANL 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/btl/usnic/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:CISCO 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/btl/vader/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:LANL 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/pmix/s1/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /opal/mca/pmix/s2/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/oob/alps/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/ras/alps/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/bml/r2/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/basic/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/inter/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/portals4/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fcoll/dynamic/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fcoll/two_phase/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fcoll/vulcan/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/hook/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/mtl/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/mtl/portals4/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/mtl/psm2/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/osc/portals4/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/osc/pt2pt/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/osc/sm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/osc/ucx/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: MELLANOX 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/pml/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/pml/cm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/pml/ucx/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: MELLANOX 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/pml/v/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/topo/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/btl/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: btl owners 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/btl/portals4/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:SNL 7 | status:active? 8 | -------------------------------------------------------------------------------- /opal/mca/btl/smcuda/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:NVIDIA 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/btl/template/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:project 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/common/cuda/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: NVIDIA 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/common/sm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/compress/fwd/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /opal/mca/crs/none/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/crs/self/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/if/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/pmix/cray/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: active 8 | -------------------------------------------------------------------------------- /opal/mca/pmix/flux/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/common_sym_whitelist.txt: -------------------------------------------------------------------------------- 1 | # Ignore symbols in libopen-rte that are auto-generated and we can't 2 | # do anything about them (e.g., flex/bison symbols). 3 | orte_util_hostfile_leng 4 | orte_util_hostfile_text 5 | -------------------------------------------------------------------------------- /orte/mca/common/alps/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/ess/alps/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ess/env/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: Intel 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ess/hnp/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ess/lsf/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ess/pmi/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ess/tm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/iof/hnp/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/odls/alps/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/oob/tcp/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/plm/alps/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/plm/lsf/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/plm/rsh/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/plm/tm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ras/lsf/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ras/tm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/rmaps/seq/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: IBM 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/rml/oob/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/schizo/alps/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/schizo/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/schizo/flux/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/schizo/jsm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: IBM 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/schizo/moab/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/schizo/ompi/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/schizo/slurm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/state/app/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/state/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/state/hnp/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/state/novm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/state/orted/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/state/tool/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /contrib/platform/lanl/darwin/debug: -------------------------------------------------------------------------------- 1 | # (c) 2013 Los Alamos National Security, LLC. All rights reserved. 2 | # Open MPI debug configuration for Darwin v1.7.x/1.8.x 3 | 4 | source ./darwin-common 5 | source ./debug-common 6 | -------------------------------------------------------------------------------- /ompi/mca/bml/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/cuda/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: NVIDIA 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/demo/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/hcoll/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: MELLANOX 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/libnbc/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/self/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: CISCO 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/sm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/sync/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: Intel 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/coll/tuned/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/crcp/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /ompi/mca/crcp/bkmrk/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /ompi/mca/fcoll/dynamic_gen2/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fcoll/individual/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/hook/comm_method/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: IBM 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/hook/demo/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/io/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL/RIST 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/op/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /ompi/mca/op/example/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/pml/crcpw/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /ompi/mca/sharedfp/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/sharedfp/sm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/topo/basic/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/topo/example/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/vprotocol/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/backtrace/none/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status:maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/common/ucx/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: MELLANOX 7 | status: active 8 | -------------------------------------------------------------------------------- /opal/mca/compress/reverse/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: IBM 7 | status: active 8 | -------------------------------------------------------------------------------- /opal/mca/crs/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/event/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/event/libevent2022/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:INTEL 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/hwloc/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/hwloc/hwloc2/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/if/bsdx_ipv4/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/if/bsdx_ipv6/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/installdirs/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/mpool/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/pstat/linux/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/pstat/test/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/rcache/grdma/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/rcache/udreg/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/reachable/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: AMAZON 7 | status: active 8 | -------------------------------------------------------------------------------- /opal/mca/shmem/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/shmem/mmap/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/shmem/posix/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/shmem/sysv/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/timer/altix/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL? 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /opal/mca/timer/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/timer/darwin/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /opal/mca/timer/linux/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/errmgr/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ess/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ess/slurm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ess/tool/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/filem/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/filem/raw/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/grpcomm/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/iof/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/iof/orted/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/iof/tool/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/odls/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/odls/default/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/odls/pspawn/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/oob/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/plm/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/plm/isolated/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/plm/slurm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ras/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ras/slurm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/rmaps/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/rmaps/ppr/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/rml/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/routed/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/routed/direct/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: active 8 | -------------------------------------------------------------------------------- /orte/mca/rtc/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/rtc/hwloc/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/snapc/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /orte/mca/snapc/full/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /oshmem/mca/atomic/ucx/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: MELLANOX 7 | status: active 8 | -------------------------------------------------------------------------------- /oshmem/mca/spml/ucx/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: MELLANOX 7 | status: active 8 | -------------------------------------------------------------------------------- /oshmem/mca/sshmem/ucx/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: MELLANOX 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fbtl/ime/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: DataDirect Networks 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/fs/ime/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: DataDirect Networks 7 | status: active 8 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile 2 | /.deps 3 | /*.bb 4 | /*.bbg 5 | /*.gcda 6 | /*.gcno 7 | /.libs 8 | /.libstamp* 9 | /*.lo 10 | /.*-cache 11 | .state-cache 12 | version.m4 13 | confdb/config.rpath 14 | -------------------------------------------------------------------------------- /ompi/mca/sharedfp/individual/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/sharedfp/lockedfile/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UH 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/vprotocol/example/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /ompi/mca/vprotocol/pessimist/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: UTK 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/allocator/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/allocator/basic/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: NVIDIA 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/allocator/bucket/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: NVIDIA 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/backtrace/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:project 7 | status:maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/backtrace/execinfo/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status:maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/compress/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:project 7 | status:maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/compress/bzip/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:project 7 | status:maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/compress/gzip/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:project 7 | status:maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/compress/zlib/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:project 7 | status:maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/event/external/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:CISCO 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/hwloc/external/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner:CISCO 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/if/linux_ipv6/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/if/posix_ipv4/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/if/solaris_ipv6/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/installdirs/config/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/installdirs/env/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/memcpy/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/memory/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/rcache/gpusm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: NVIDIA 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/rcache/rgpusm/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: NVIDIA 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/reachable/netlink/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: AMAZON 7 | status: active 8 | -------------------------------------------------------------------------------- /opal/mca/reachable/weighted/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: AMAZON 7 | status: active 8 | -------------------------------------------------------------------------------- /opal/mca/timer/solaris/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /orte/mca/ess/singleton/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/grpcomm/direct/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/ras/gridengine/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /orte/mca/ras/simulator/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/rmaps/mindist/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: MELLANOX 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/rmaps/rank_file/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: IBM 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/rmaps/resilient/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/rmaps/round_robin/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/routed/binomial/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/routed/debruijn/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: LANL? 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /orte/mca/sstore/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /orte/mca/sstore/central/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /orte/mca/sstore/stage/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /opal/mca/backtrace/printstack/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: SNL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /opal/mca/memchecker/base/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: project 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /opal/mca/memchecker/valgrind/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: HLRS? 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /orte/mca/errmgr/default_app/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/errmgr/default_hnp/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/errmgr/default_orted/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/mca/errmgr/default_tool/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: INTEL 7 | status: maintenance 8 | -------------------------------------------------------------------------------- /orte/test/system/no_op.c: -------------------------------------------------------------------------------- 1 | /* -*- C -*- 2 | * 3 | * $HEADER$ 4 | * 5 | * The most basic of applications 6 | */ 7 | 8 | #include 9 | 10 | int main(int argc, char* argv[]) 11 | { 12 | return 0; 13 | } 14 | -------------------------------------------------------------------------------- /contrib/platform/lanl/darwin/optimized: -------------------------------------------------------------------------------- 1 | # (c) 2013 Los Alamos National Security, LLC. All rights reserved. 2 | # Open MPI optimized configuration for Darwin v1.7.x/1.8.x 3 | 4 | source ./darwin-common 5 | source ./optimized-common 6 | -------------------------------------------------------------------------------- /opal/mca/common/ofi/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: Hewlett Packard Enterprise 7 | status:active 8 | -------------------------------------------------------------------------------- /opal/mca/memory/malloc_solaris/owner.txt: -------------------------------------------------------------------------------- 1 | # 2 | # owner/status file 3 | # owner: institution that is responsible for this package 4 | # status: e.g. active, maintenance, unmaintained 5 | # 6 | owner: nobody 7 | status: unmaintained 8 | -------------------------------------------------------------------------------- /orte/mca/rmaps/rank_file/common_sym_whitelist.txt: -------------------------------------------------------------------------------- 1 | # Ignore symbols in this component that are auto-generated and we 2 | # can't do anything about them (e.g., flex/bison symbols). 3 | orte_rmaps_rank_file_leng 4 | orte_rmaps_rank_file_text 5 | -------------------------------------------------------------------------------- /contrib/dist/mofed/debian/changelog.in: -------------------------------------------------------------------------------- 1 | openmpi (@OMPI_MAJOR_VERSION@.@OMPI_MINOR_VERSION@.@OMPI_RELEASE_VERSION@) unstable; urgency=low 2 | 3 | * Initial release. 4 | 5 | -- Aleksey Senin Thu, 02 May 2013 10:55:55 +0300 6 | -------------------------------------------------------------------------------- /contrib/platform/lanl/darwin/debug-mic: -------------------------------------------------------------------------------- 1 | # (c) 2013 Los Alamos National Security, LLC. All rights reserved. 2 | # Open MPI debug configuration for Darwin v1.7.x/1.8.x 3 | 4 | source ./darwin-common 5 | source ./debug-common 6 | source ./mic-common 7 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/localdefs.in: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | # Append ROMIO library dependencies to the global list 4 | WRAPPER_LIBS="$WRAPPER_LIBS @LIBS@" 5 | 6 | MPI_OFFSET_TYPE="@MPI_OFFSET_TYPE@" 7 | FORTRAN_MPI_OFFSET="@FORTRAN_MPI_OFFSET@" 8 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/test/test_hintfile: -------------------------------------------------------------------------------- 1 | romio_cb_read enable 2 | # multiple info keys are strage but not an error. Note only the first one will 3 | # be processed 4 | ind_rd_buffer_size 49 5 | ind_rd_buffer_size 60 6 | romio_no_indep_rw true 7 | -------------------------------------------------------------------------------- /ompi/mpi/fortran/use-mpi-f08/tests/print_array.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void print_array(int * A, int count) 4 | { 5 | int i; 6 | for (i = 0; i < count; i++) { 7 | printf("%d ", A[i]); 8 | } 9 | printf("\n"); 10 | } 11 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2017-2018 FUJITSU LIMITED. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | SUBDIRS = c mpif-h use-mpi use-mpi-f08 11 | -------------------------------------------------------------------------------- /ompi/mpiext/shortfloat/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2018 FUJITSU LIMITED. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | SUBDIRS = c mpif-h use-mpi use-mpi-f08 11 | -------------------------------------------------------------------------------- /contrib/build-mca-comps-outside-of-tree/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Copyright (c) 2011 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | autoreconf -ivf 11 | -------------------------------------------------------------------------------- /contrib/platform/lanl/darwin/optimized-mic: -------------------------------------------------------------------------------- 1 | # (c) 2013 Los Alamos National Security, LLC. All rights reserved. 2 | # Open MPI optimized configuration for Darwin v1.7.x/1.8.x 3 | 4 | source ./darwin-common 5 | source ./optimized-common 6 | source ./mic-common 7 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/tool/Makefile.include: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2014-2016 Intel, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | sources += \ 11 | tool/pmix_tool.c 12 | -------------------------------------------------------------------------------- /opal/common_sym_whitelist.txt: -------------------------------------------------------------------------------- 1 | # Ignore symbols in libopen-pal that are auto-generated and we can't 2 | # do anything about them (e.g., flex/bison symbols). 3 | opal_show_help_yyleng 4 | opal_show_help_yytext 5 | opal_util_keyval_yyleng 6 | opal_util_keyval_yytext 7 | __curbrk 8 | -------------------------------------------------------------------------------- /opal/mca/event/libevent2022/libevent/test/tinytest_local.h: -------------------------------------------------------------------------------- 1 | 2 | #ifdef WIN32 3 | #include 4 | #endif 5 | 6 | #include "event2/util.h" 7 | #include "util-internal.h" 8 | 9 | #ifdef snprintf 10 | #undef snprintf 11 | #endif 12 | #define snprintf evutil_snprintf 13 | -------------------------------------------------------------------------------- /opal/mca/pmix/ext2x/common_sym_whitelist.txt: -------------------------------------------------------------------------------- 1 | # Ignore symbols in this component that are auto-generated and we 2 | # can't do anything about them (e.g., flex/bison symbols). 3 | pmix_util_keyval_yyleng 4 | pmix_util_keyval_yytext 5 | pmix_show_help_yyleng 6 | pmix_show_help_yytext 7 | -------------------------------------------------------------------------------- /opal/mca/pmix/ext3x/common_sym_whitelist.txt: -------------------------------------------------------------------------------- 1 | # Ignore symbols in this component that are auto-generated and we 2 | # can't do anything about them (e.g., flex/bison symbols). 3 | pmix_util_keyval_yyleng 4 | pmix_util_keyval_yytext 5 | pmix_show_help_yyleng 6 | pmix_show_help_yytext 7 | -------------------------------------------------------------------------------- /opal/mca/pmix/ext4x/common_sym_whitelist.txt: -------------------------------------------------------------------------------- 1 | # Ignore symbols in this component that are auto-generated and we 2 | # can't do anything about them (e.g., flex/bison symbols). 3 | pmix_util_keyval_yyleng 4 | pmix_util_keyval_yytext 5 | pmix_show_help_yyleng 6 | pmix_show_help_yytext 7 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/common_sym_whitelist.txt: -------------------------------------------------------------------------------- 1 | # Ignore symbols in this component that are auto-generated and we 2 | # can't do anything about them (e.g., flex/bison symbols). 3 | pmix_util_keyval_yyleng 4 | pmix_util_keyval_yytext 5 | pmix_show_help_yyleng 6 | pmix_show_help_yytext 7 | -------------------------------------------------------------------------------- /orte/test/mpi/spawn-problem/Makefile: -------------------------------------------------------------------------------- 1 | CC=mpicc 2 | 3 | all: start ch_rec 4 | 5 | 6 | start:start.o 7 | $(CC) -o start start.o 8 | 9 | ch_rec: ch_rec.o 10 | $(CC) -o ch_rec ch_rec.o 11 | 12 | clean: 13 | rm -f *.o ch_rec start 14 | 15 | run: 16 | mpirun -np 1 start 17 | -------------------------------------------------------------------------------- /contrib/build-server/openmpi-update-www.open-mpi.org.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd /l/osl/www/www.open-mpi.org 4 | 5 | # Absolutely ensure that we have a umask of 2 so that others can 6 | # run "svn up" in this tree, too 7 | umask 2 8 | 9 | svn up 10 | 11 | date >> /tmp/bogus-mpiteam 12 | -------------------------------------------------------------------------------- /ompi/util/Makefile.am: -------------------------------------------------------------------------------- 1 | # -*- makefile -*- 2 | # 3 | # Copyright (c) 2017 Mellanox Technologies Ltd. All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | # Source code files 12 | headers += \ 13 | util/timings.h 14 | -------------------------------------------------------------------------------- /orte/test/mpi/init-exit77.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include "mpi.h" 4 | 5 | int main(int argc, char **argv) { 6 | int debugme = 1; 7 | 8 | MPI_Init(&argc, &argv); 9 | printf("init...\n"); 10 | fflush(0); 11 | MPI_Finalize(); 12 | exit(77); 13 | } 14 | -------------------------------------------------------------------------------- /orte/test/system/segfault.c: -------------------------------------------------------------------------------- 1 | /* -*- C -*- 2 | * 3 | * $HEADER$ 4 | * 5 | * A program that just segfaults 6 | */ 7 | 8 | #include 9 | 10 | int main(int argc, char* argv[]) 11 | { 12 | 13 | double pi; 14 | char *dum=NULL; 15 | 16 | pi = (double)*dum; 17 | 18 | } 19 | -------------------------------------------------------------------------------- /contrib/infrastructure/openmpi-update-www.open-mpi.org.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd /l/osl/www/www.open-mpi.org 4 | 5 | # Absolutely ensure that we have a umask of 2 so that others can 6 | # run "svn up" in this tree, too 7 | umask 2 8 | 9 | git pull --rebase origin 10 | 11 | date >> /tmp/bogus-mpiteam 12 | -------------------------------------------------------------------------------- /contrib/platform/lanl/toss/common-optimized: -------------------------------------------------------------------------------- 1 | # (c) 2013-2018 Los Alamos National Security, LLC. All rights reserved. 2 | # Open MPI common optimized configuration for TOSS/TOSS2 v1.7.x/1.8.x 3 | 4 | enable_mem_debug=no 5 | enable_mem_profile=no 6 | enable_debug_symbols=no 7 | enable_picky=no 8 | enable_debug=no 9 | -------------------------------------------------------------------------------- /ompi/mpi/java/Makefile.am: -------------------------------------------------------------------------------- 1 | # -*- makefile -*- 2 | # 3 | # Copyright (c) 2011 Cisco Systems, Inc. All rights reserved. 4 | # Copyright (c) 2014 Intel, Inc. All rights reserved. 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | 12 | SUBDIRS = java c 13 | -------------------------------------------------------------------------------- /contrib/platform/clang/align: -------------------------------------------------------------------------------- 1 | CC=clang 2 | CXX=clang++ 3 | CFLAGS="-g -O1 -fsanitize=alignment" 4 | CXXFLAGS="-O1 -g -fsanitize=alignment" 5 | CCASFLAGS="-O1 -g -fsanitize=alignment" 6 | with_wrapper_cflags="-O1 -g -fsanitize=alignment" 7 | with_wrapper_cxxflags="-O1 -g -fsanitize=alignment" 8 | enable_mpi_fortran=no 9 | -------------------------------------------------------------------------------- /opal/mca/if/bsdx_ipv4/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | noinst_LTLIBRARIES = libmca_if_bsdx_ipv4.la 11 | 12 | libmca_if_bsdx_ipv4_la_SOURCES = if_bsdx.c 13 | -------------------------------------------------------------------------------- /opal/mca/if/bsdx_ipv6/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | noinst_LTLIBRARIES = libmca_if_bsdx_ipv6.la 11 | 12 | libmca_if_bsdx_ipv6_la_SOURCES = if_bsdx_ipv6.c 13 | -------------------------------------------------------------------------------- /opal/mca/if/posix_ipv4/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | noinst_LTLIBRARIES = libmca_if_posix_ipv4.la 11 | 12 | libmca_if_posix_ipv4_la_SOURCES = if_posix.c 13 | -------------------------------------------------------------------------------- /orte/test/mpi/mpi_no_op.c: -------------------------------------------------------------------------------- 1 | /* -*- C -*- 2 | * 3 | * $HEADER$ 4 | * 5 | * The most basic of MPI applications 6 | */ 7 | 8 | #include 9 | #include "mpi.h" 10 | 11 | int main(int argc, char* argv[]) 12 | { 13 | MPI_Init(&argc, &argv); 14 | 15 | MPI_Finalize(); 16 | return 0; 17 | } 18 | -------------------------------------------------------------------------------- /contrib/scaling/mpi_no_op.c: -------------------------------------------------------------------------------- 1 | /* -*- C -*- 2 | * 3 | * $HEADER$ 4 | * 5 | * The most basic of MPI applications 6 | */ 7 | 8 | #include 9 | #include "mpi.h" 10 | 11 | int main(int argc, char* argv[]) 12 | { 13 | MPI_Init(&argc, &argv); 14 | 15 | MPI_Finalize(); 16 | return 0; 17 | } 18 | -------------------------------------------------------------------------------- /opal/mca/btl/template/netpipe-btl-template.txt: -------------------------------------------------------------------------------- 1 | # 2 | # For your btl you may want special mca parameters for a benchmark 3 | # such as netpipe, or better yet, your application, one can always 4 | # dream. 5 | # 6 | 7 | # Example: 8 | 9 | # btl_template_flags=1 10 | # btl_template_eager_limit=4096 11 | 12 | 13 | -------------------------------------------------------------------------------- /contrib/platform/snl/portals4-orte: -------------------------------------------------------------------------------- 1 | with_memory_manager=no 2 | enable_mca_no_build=bml,btl,coll-hierarch,coll-sm,common-sm,mpool,pml-bfo,pml-csum,pml-dr,pml-ob1,osc-rdma,rcache,vprotocol 3 | enable_contrib_no_build=libnbc 4 | enable_heterogeneous=no 5 | enable_mem_debug=no 6 | enable_mem_profile=no 7 | with_gm=no 8 | with_mx=no 9 | -------------------------------------------------------------------------------- /contrib/spread/spread-init.txt: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | case "$1" in 4 | 'start') 5 | mkdir -p /var/run/spread 6 | cd /var/run/spread 7 | 8 | spread& 9 | ;; 10 | 11 | 'stop') 12 | killall spread 2>/dev/null 13 | ;; 14 | 15 | *) 16 | echo "Usage: $0 { start | stop }" 17 | exit 1 18 | ;; 19 | esac 20 | exit 0 21 | -------------------------------------------------------------------------------- /opal/mca/if/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | headers += \ 11 | base/base.h 12 | 13 | libmca_if_la_SOURCES += \ 14 | base/if_base_components.c 15 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile 2 | /.deps 3 | /*.bb 4 | /*.bbg 5 | /*.gcda 6 | /*.gcno 7 | /.libs 8 | /.libstamp* 9 | /*.lo 10 | /.*-cache 11 | .state-cache 12 | romio/version.m4 13 | romio/confdb/._l* 14 | romio/confdb/config.rpath 15 | romio/adio/include/romioconf.h.in 16 | !romio/mpi2-other/**/Makefile.in 17 | -------------------------------------------------------------------------------- /opal/mca/if/solaris_ipv6/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | noinst_LTLIBRARIES = libmca_if_solaris_ipv6.la 11 | 12 | libmca_if_solaris_ipv6_la_SOURCES = if_solaris_ipv6.c 13 | -------------------------------------------------------------------------------- /opal/mca/installdirs/configure.m4: -------------------------------------------------------------------------------- 1 | dnl -*- shell-script -*- 2 | dnl 3 | dnl Copyright (c) 2006-2010 Sandia National Laboratories. All rights reserved. 4 | dnl $COPYRIGHT$ 5 | dnl 6 | dnl Additional copyrights may follow 7 | dnl 8 | dnl $HEADER$ 9 | dnl 10 | 11 | AC_DEFUN([MCA_opal_installdirs_CONFIGURE_MODE], [PRIORITY]) 12 | -------------------------------------------------------------------------------- /opal/mca/event/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | headers += \ 11 | base/base.h 12 | 13 | libmca_event_la_SOURCES += \ 14 | base/event_base_frame.c 15 | 16 | -------------------------------------------------------------------------------- /ompi/mca/hook/configure.m4: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2017 IBM Corporation. All rights reserved. 3 | # 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | AC_DEFUN([MCA_ompi_hook_CONFIG],[ 12 | # configure all the components 13 | MCA_CONFIGURE_FRAMEWORK($1, $2, 1) 14 | ]) 15 | -------------------------------------------------------------------------------- /examples/dtrace/partrace.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Copyright (c) 2006-2008 Sun Microsystems, Inc. All rights reserved. 4 | # Use is subject to license terms. 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | 12 | dtrace -s $1 -c $2 -o $2.$OMPI_COMM_WORLD_RANK.trace 13 | -------------------------------------------------------------------------------- /ompi/mca/rte/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2012-2013 Los Alamos National Security, LLC. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | headers += \ 11 | base/base.h 12 | 13 | libmca_rte_la_SOURCES += \ 14 | base/rte_base_frame.c 15 | 16 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/contrib/perf_tools/pmi2_utils.h: -------------------------------------------------------------------------------- 1 | #ifndef PMI2_UTILS_H 2 | #define PMI2_UTILS_H 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | char *pmi_encode(const void *val, size_t vallen); 9 | uint8_t *pmi_decode (const char *data, size_t *retlen); 10 | 11 | #endif // PMI2_UTILS_H 12 | -------------------------------------------------------------------------------- /orte/test/mpi/mpi_barrier.c: -------------------------------------------------------------------------------- 1 | /* -*- C -*- 2 | * 3 | * $HEADER$ 4 | * 5 | * The most basic of MPI applications 6 | */ 7 | 8 | #include 9 | #include "mpi.h" 10 | 11 | int main(int argc, char* argv[]) 12 | { 13 | MPI_Init(&argc, &argv); 14 | MPI_Barrier(MPI_COMM_WORLD); 15 | MPI_Finalize(); 16 | return 0; 17 | } 18 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/hwloc/Makefile.include: -------------------------------------------------------------------------------- 1 | # -*- makefile -*- 2 | # 3 | # Copyright (c) 2018 Intel, Inc. All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | sources += \ 12 | hwloc/hwloc.c 13 | 14 | headers += \ 15 | hwloc/hwloc-internal.h 16 | -------------------------------------------------------------------------------- /contrib/dist/mofed/debian/rules.in: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | # export DH_VERBOSE=1 4 | 5 | DPKG_EXPORT_BUILDFLAGS = 1 6 | include /usr/share/dpkg/buildflags.mk 7 | 8 | %: 9 | dh $@ --parallel 10 | 11 | override_dh_auto_clean: 12 | 13 | override_dh_auto_configure: 14 | dh_auto_configure -- $(CONFIG_ARGS) 15 | 16 | override_dh_auto_test: 17 | 18 | -------------------------------------------------------------------------------- /contrib/platform/lanl/darwin/optimized-common: -------------------------------------------------------------------------------- 1 | # (c) 2013 Los Alamos National Security, LLC. All rights reserved. 2 | # Open MPI common optimized configuration for Darwin v1.7.x/1.8.x 3 | 4 | enable_mem_debug=no 5 | enable_mem_profile=no 6 | enable_debug_symbols=no 7 | enable_picky=no 8 | enable_debug=no 9 | with_valgrind=no 10 | enable_memchecker=no 11 | -------------------------------------------------------------------------------- /ompi/mpiext/cuda/README.txt: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2015 NVIDIA, Inc. All rights reserved. 2 | 3 | $COPYRIGHT$ 4 | 5 | Rolf vandeVaart 6 | 7 | 8 | This extension provides a macro for compile time check of CUDA aware support. 9 | It also provides a function for runtime check of CUDA aware support. 10 | 11 | See MPIX_Query_cuda_support(3) for more details. 12 | -------------------------------------------------------------------------------- /ompi/mpiext/shortfloat/use-mpi/mpiext_shortfloat_usempi.h: -------------------------------------------------------------------------------- 1 | ! -*- fortran -*- 2 | ! 3 | ! Copyright (c) 2018 FUJITSU LIMITED. All rights reserved. 4 | ! $COPYRIGHT$ 5 | ! 6 | ! Additional copyrights may follow 7 | ! 8 | ! $HEADER$ 9 | ! 10 | 11 | ! This file is needed to put variables defined in mpiext_shortfloat_mpifh.h 12 | ! into the mpi_ext module file. 13 | -------------------------------------------------------------------------------- /orte/test/mpi/thread_init.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | int main(int argc, const char* argv[]) { 4 | int provided = -1; 5 | printf("Calling MPI_Init_thread...\n"); 6 | MPI_Init_thread(NULL, NULL, MPI_THREAD_MULTIPLE, &provided); 7 | printf("MPI_Init_thread returned, provided = %d\n", provided); 8 | MPI_Finalize(); 9 | return 0; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /ompi/mca/hook/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2017 IBM Corporation. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | dist_ompidata_DATA = base/help-mca-hook-base.txt 11 | 12 | headers += \ 13 | base/base.h 14 | 15 | libmca_hook_la_SOURCES += \ 16 | base/hook_base.c 17 | -------------------------------------------------------------------------------- /opal/mca/if/linux_ipv6/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2019 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | dist_opaldata_DATA = help-opal-if-linux-ipv6.txt 11 | 12 | noinst_LTLIBRARIES = libmca_if_linux_ipv6.la 13 | 14 | libmca_if_linux_ipv6_la_SOURCES = if_linux_ipv6.c 15 | -------------------------------------------------------------------------------- /opal/test/reachable/tests: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Copyright (c) 2017 Amazon.com, Inc. or its affiliates. All Rights 3 | # reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | mpirun -np 1 --mca reachable netlink reachable_netlink 12 | mpirun -np 1 --mca reachable weighted reachable_weighted 13 | -------------------------------------------------------------------------------- /orte/mca/routed/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007-2013 Los Alamos National Security, LLC. 3 | # All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | headers += \ 12 | base/base.h 13 | 14 | libmca_routed_la_SOURCES += \ 15 | base/routed_base_frame.c \ 16 | base/routed_base_fns.c 17 | -------------------------------------------------------------------------------- /oshmem/include/oshmem/Makefile.am: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2013 Mellanox Technologies, Inc. 2 | # All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | 9 | 10 | headers += \ 11 | oshmem/constants.h \ 12 | oshmem/frameworks.h \ 13 | oshmem/types.h 14 | 15 | nodist_headers += \ 16 | oshmem/version.h 17 | 18 | -------------------------------------------------------------------------------- /contrib/platform/lanl/darwin/debug-common: -------------------------------------------------------------------------------- 1 | # (c) 2013 Los Alamos National Security, LLC. All rights reserved. 2 | # Open MPI common debug configuration for TOSS/TOSS2 v1.7.x/1.8.x 3 | 4 | enable_mem_debug=yes 5 | enable_mem_profile=yes 6 | enable_debug_symbols=yes 7 | enable_picky=yes 8 | enable_debug=yes 9 | 10 | # Enable the memchecker 11 | enable_memchecker=yes 12 | with_valgrind=yes 13 | -------------------------------------------------------------------------------- /examples/dtrace/myppriv.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. 4 | # Use is subject to license terms. 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | 12 | # run ppriv under a shell so you can get the privileges of the 13 | # process that mprun creates 14 | ppriv $$ 15 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/test/test_cd.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015-2017 Intel, Inc. All rights reserved. 3 | * $COPYRIGHT$ 4 | * 5 | * Additional copyrights may follow 6 | * 7 | * $HEADER$ 8 | * 9 | */ 10 | 11 | #include 12 | #include 13 | 14 | #include "test_common.h" 15 | 16 | int test_connect_disconnect(char *my_nspace, int my_rank); 17 | -------------------------------------------------------------------------------- /opal/test/reachable/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2017 Amazon.com, Inc. or its affiliates. All Rights 2 | # reserved. 3 | # 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | PROGS = reachable_weighted reachable_netlink 12 | 13 | all: $(PROGS) 14 | 15 | CC = ortecc 16 | CFLAGS = -g 17 | 18 | clean: 19 | rm -f $(PROGS) *~ 20 | -------------------------------------------------------------------------------- /orte/mca/schizo/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2015 Intel, Inc. All rights reserved 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | headers += \ 11 | base/base.h 12 | 13 | libmca_schizo_la_SOURCES += \ 14 | base/schizo_base_frame.c \ 15 | base/schizo_base_select.c \ 16 | base/schizo_base_stubs.c 17 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/mpi-io/glue/mpich/Makefile.mk: -------------------------------------------------------------------------------- 1 | ## -*- Mode: Makefile; -*- 2 | ## vim: set ft=automake : 3 | ## 4 | ## (C) 2011 by Argonne National Laboratory. 5 | ## See COPYRIGHT in top-level directory. 6 | ## 7 | 8 | if MPIO_GLUE_MPICH 9 | romio_other_sources += \ 10 | mpi-io/glue/mpich/mpio_file.c \ 11 | mpi-io/glue/mpich/mpio_err.c 12 | endif MPIO_GLUE_MPICH 13 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2018 Research Organization for Information Science 3 | * and Technology (RIST). All rights reserved. 4 | * $COPYRIGHT$ 5 | * 6 | * Additional copyrights may follow 7 | * 8 | * $HEADER$ 9 | * 10 | */ 11 | 12 | void mpiext_pcollreq_dummy(void); 13 | 14 | void mpiext_pcollreq_dummy() { 15 | } 16 | -------------------------------------------------------------------------------- /contrib/scaling/Makefile: -------------------------------------------------------------------------------- 1 | PROGS = orte_no_op mpi_no_op mpi_memprobe 2 | 3 | all: $(PROGS) 4 | 5 | CFLAGS = -O 6 | 7 | orte_no_op: orte_no_op.c 8 | ortecc -o orte_no_op orte_no_op.c 9 | 10 | mpi_no_op: mpi_no_op.c 11 | mpicc -o mpi_no_op mpi_no_op.c 12 | 13 | mpi_memprobe: mpi_memprobe.c 14 | mpicc -o mpi_memprobe mpi_memprobe.c -lopen-pal -lopen-rte 15 | 16 | clean: 17 | rm -f $(PROGS) *~ 18 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/pif/bsdx_ipv4/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # Copyright (c) 2016 Intel, Inc. All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | noinst_LTLIBRARIES = libmca_pif_bsdx_ipv4.la 12 | 13 | libmca_pif_bsdx_ipv4_la_SOURCES = pif_bsdx.c 14 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/test/test_error.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 Intel, Inc. All rights reserved. 3 | * $COPYRIGHT$ 4 | * 5 | * Additional copyrights may follow 6 | * 7 | * $HEADER$ 8 | * 9 | */ 10 | 11 | #include 12 | #include 13 | 14 | #include "test_common.h" 15 | 16 | int test_error(char *my_nspace, int my_rank, test_params params); 17 | -------------------------------------------------------------------------------- /opal/mca/pstat/configure.m4: -------------------------------------------------------------------------------- 1 | dnl -*- shell-script -*- 2 | dnl 3 | dnl Copyright (c) 2007 Los Alamos National Security, LLC. 4 | dnl All rights reserved. 5 | dnl $COPYRIGHT$ 6 | dnl 7 | dnl Additional copyrights may follow 8 | dnl 9 | dnl $HEADER$ 10 | dnl 11 | 12 | dnl we only want those at same priority 13 | m4_define(MCA_opal_pstat_CONFIGURE_MODE, STOP_AT_FIRST_PRIORITY) 14 | -------------------------------------------------------------------------------- /ompi/mca/pml/example/pml_example_proc.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2004-2005 The University of Tennessee and The University 3 | * of Tennessee Research Foundation. All rights 4 | * reserved. 5 | * $COPYRIGHT$ 6 | * 7 | * Additional copyrights may follow 8 | * 9 | * $HEADER$ 10 | */ 11 | 12 | #include "ompi_config.h" 13 | #include "pml_example.h" 14 | 15 | -------------------------------------------------------------------------------- /ompi/mca/pml/example/pml_example_ptl.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2004-2005 The University of Tennessee and The University 3 | * of Tennessee Research Foundation. All rights 4 | * reserved. 5 | * $COPYRIGHT$ 6 | * 7 | * Additional copyrights may follow 8 | * 9 | * $HEADER$ 10 | */ 11 | 12 | #include "ompi_config.h" 13 | #include "pml_example.h" 14 | 15 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/event/Makefile.include: -------------------------------------------------------------------------------- 1 | # -*- makefile -*- 2 | # 3 | # Copyright (c) 2016 Intel, Inc. All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | 10 | 11 | headers += \ 12 | event/pmix_event.h 13 | 14 | sources += \ 15 | event/pmix_event_notification.c \ 16 | event/pmix_event_registration.c 17 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/pif/bsdx_ipv6/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # Copyright (c) 2016 Intel, Inc. All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | noinst_LTLIBRARIES = libmca_pif_bsdx_ipv6.la 12 | 13 | libmca_pif_bsdx_ipv6_la_SOURCES = pif_bsdx_ipv6.c 14 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/pif/posix_ipv4/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # Copyright (c) 2016 Intel, Inc. All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | noinst_LTLIBRARIES = libmca_pif_posix_ipv4.la 12 | 13 | libmca_pif_posix_ipv4_la_SOURCES = pif_posix.c 14 | -------------------------------------------------------------------------------- /ompi/mca/topo/treematch/treematch/tm_mt.h: -------------------------------------------------------------------------------- 1 | void init_genrand(unsigned long s); 2 | void init_by_array(unsigned long init_key[], int key_length); 3 | 4 | /* generates a random number on the interval [0,0x7fffffff] */ 5 | unsigned long genrand_int32(void); 6 | long genrand_int31(void); 7 | double genrand_real1(void); 8 | double genrand_real2(void); 9 | double genrand_real3(void); 10 | double genrand_res53(void); 11 | -------------------------------------------------------------------------------- /opal/mca/dl/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2015 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | headers += \ 11 | base/base.h 12 | 13 | libmca_dl_la_SOURCES += \ 14 | base/dl_base_open.c \ 15 | base/dl_base_close.c \ 16 | base/dl_base_select.c \ 17 | base/dl_base_fns.c 18 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/pif/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # Copyright (c) 2016 Intel, Inc. All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | headers += \ 12 | base/base.h 13 | 14 | libmca_pif_la_SOURCES += \ 15 | base/pif_base_components.c 16 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/pif/linux_ipv6/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # Copyright (c) 2016 Intel, Inc. All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | noinst_LTLIBRARIES = libmca_pif_linux_ipv6.la 12 | 13 | libmca_pif_linux_ipv6_la_SOURCES = pif_linux_ipv6.c 14 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/confdb/aclocal_am.m4: -------------------------------------------------------------------------------- 1 | dnl AM_IGNORE is an extension that tells (a patched) automake not to 2 | dnl include the specified AC_SUBST variable in the Makefile.in that 3 | dnl automake generates. We don't use AC_DEFUN, since aclocal will 4 | dnl then complain that AM_IGNORE is a duplicate (if you are using the 5 | dnl patched automake/aclocal). 6 | m4_ifdef([AM_IGNORE],[],[m4_define([AM_IGNORE],[])]) 7 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/mpi-io/glue/default/Makefile.mk: -------------------------------------------------------------------------------- 1 | ## -*- Mode: Makefile; -*- 2 | ## vim: set ft=automake : 3 | ## 4 | ## (C) 2011 by Argonne National Laboratory. 5 | ## See COPYRIGHT in top-level directory. 6 | ## 7 | 8 | if MPIO_GLUE_DEFAULT 9 | romio_other_sources += \ 10 | mpi-io/glue/default/mpio_file.c \ 11 | mpi-io/glue/default/mpio_err.c 12 | endif MPIO_GLUE_DEFAULT 13 | 14 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/mpi-io/glue/openmpi/Makefile.mk: -------------------------------------------------------------------------------- 1 | ## -*- Mode: Makefile; -*- 2 | ## vim: set ft=automake : 3 | ## 4 | ## (C) 2011 by Argonne National Laboratory. 5 | ## See COPYRIGHT in top-level directory. 6 | ## 7 | 8 | if MPIO_GLUE_OPENMPI 9 | romio_other_sources += \ 10 | mpi-io/glue/openmpi/mpio_file.c \ 11 | mpi-io/glue/openmpi/mpio_err.c 12 | endif MPIO_GLUE_OPENMPI 13 | 14 | -------------------------------------------------------------------------------- /ompi/mpiext/pcollreq/mpif-h/mpiext_pcollreq_mpifh.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2018 Research Organization for Information Science 3 | * and Technology (RIST). All rights reserved. 4 | * $COPYRIGHT$ 5 | * 6 | * Additional copyrights may follow 7 | * 8 | * $HEADER$ 9 | * 10 | */ 11 | 12 | void mpiext_pcollreq_mpifh_dummy(void); 13 | 14 | void mpiext_pcollreq_mpifh_dummy() { 15 | } 16 | -------------------------------------------------------------------------------- /opal/mca/event/libevent2022/libevent/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | if [ -x "`which autoreconf 2>/dev/null`" ] ; then 3 | exec autoreconf -ivf 4 | fi 5 | 6 | LIBTOOLIZE=libtoolize 7 | SYSNAME=`uname` 8 | if [ "x$SYSNAME" = "xDarwin" ] ; then 9 | LIBTOOLIZE=glibtoolize 10 | fi 11 | aclocal -I m4 && \ 12 | autoheader && \ 13 | $LIBTOOLIZE && \ 14 | autoconf && \ 15 | automake --add-missing --force-missing --copy 16 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/pif/solaris_ipv6/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 3 | # Copyright (c) 2016 Intel, Inc. All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | noinst_LTLIBRARIES = libmca_pif_solaris_ipv6.la 12 | 13 | libmca_pif_solaris_ipv6_la_SOURCES = pif_solaris_ipv6.c 14 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/pinstalldirs/configure.m4: -------------------------------------------------------------------------------- 1 | dnl -*- shell-script -*- 2 | dnl 3 | dnl Copyright (c) 2006-2010 Sandia National Laboratories. All rights reserved. 4 | dnl Copyright (c) 2016 Intel, Inc. All rights reserved. 5 | dnl $COPYRIGHT$ 6 | dnl 7 | dnl Additional copyrights may follow 8 | dnl 9 | dnl $HEADER$ 10 | dnl 11 | 12 | AC_DEFUN([MCA_pmix_pinstalldirs_CONFIGURE_MODE], [PRIORITY]) 13 | -------------------------------------------------------------------------------- /oshmem/shmem/help-shmem-api.txt: -------------------------------------------------------------------------------- 1 | # -*- text -*- 2 | # 3 | # Copyright (c) 2013 Mellanox Technologies, Inc. 4 | # All rights reserved. 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | # This is the US/English general help file for Open SHMEM. 12 | # 13 | [shmem-abort] 14 | SHMEM_ABORT was invoked on rank %d (pid %d, host=%s) with errorcode %d. 15 | -------------------------------------------------------------------------------- /oshmem/shmem/Makefile.am: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2013-2015 Mellanox Technologies, Inc. 2 | # All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | EXTRA_DIST = 11 | 12 | headers += shmem/shmem_api_logger.h \ 13 | shmem/shmem_lock.h 14 | 15 | if PROJECT_OSHMEM 16 | dist_oshmemdata_DATA += shmem/help-shmem-api.txt 17 | endif 18 | -------------------------------------------------------------------------------- /orte/mca/state/base/help-state-base.txt: -------------------------------------------------------------------------------- 1 | # -*- text -*- 2 | # 3 | # Copyright (c) 2018 Research Organization for Information Science 4 | # and Technology (RIST). All rights reserved. 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | # 12 | [normal-termination-but] 13 | While %s job %s terminated normally, %d %s. Further examination may be required. 14 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/ad_nfs/ad_nfs_hints.c: -------------------------------------------------------------------------------- 1 | /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */ 2 | /* 3 | * 4 | * Copyright (C) 1997 University of Chicago. 5 | * See COPYRIGHT notice in top-level directory. 6 | */ 7 | 8 | #include "ad_nfs.h" 9 | 10 | void ADIOI_NFS_SetInfo(ADIO_File fd, MPI_Info users_info, int *error_code) 11 | { 12 | ADIOI_GEN_SetInfo(fd, users_info, error_code); 13 | } 14 | -------------------------------------------------------------------------------- /ompi/mca/topo/treematch/treematch/tm_kpartitioning.h: -------------------------------------------------------------------------------- 1 | typedef struct _com_mat_t{ 2 | double **comm; 3 | int n; /*comm is of size n by n the other element are zeroes*/ 4 | 5 | } com_mat_t; 6 | 7 | 8 | int *kpartition(int, com_mat_t*, int, int *, int); 9 | tm_tree_t * kpartition_build_tree_from_topology(tm_topology_t *topology,double **com_mat,int N, int *constraints, int nb_constraints, double *obj_weight, double *com_speed); 10 | -------------------------------------------------------------------------------- /opal/mca/event/libevent2022/libevent/libevent.pc.in: -------------------------------------------------------------------------------- 1 | #libevent pkg-config source file 2 | 3 | prefix=@prefix@ 4 | exec_prefix=@exec_prefix@ 5 | libdir=@libdir@ 6 | includedir=@includedir@ 7 | 8 | Name: libevent 9 | Description: libevent is an asynchronous notification event loop library 10 | Version: @VERSION@ 11 | Requires: 12 | Conflicts: 13 | Libs: -L${libdir} -levent 14 | Libs.private: @LIBS@ 15 | Cflags: -I${includedir} 16 | 17 | -------------------------------------------------------------------------------- /opal/mca/installdirs/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2006 Los Alamos National Security, LLC. All rights 3 | # reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | headers += \ 12 | base/base.h 13 | 14 | libmca_installdirs_la_SOURCES += \ 15 | base/installdirs_base_components.c \ 16 | base/installdirs_base_expand.c 17 | -------------------------------------------------------------------------------- /orte/mca/ess/pmi/ess_pmi.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Cisco Systems, Inc. All rights reserved. 3 | * $COPYRIGHT$ 4 | * 5 | * Additional copyrights may follow 6 | * 7 | * $HEADER$ 8 | */ 9 | 10 | #ifndef ORTE_ESS_PMI_H 11 | #define ORTE_ESS_PMI_H 12 | 13 | BEGIN_C_DECLS 14 | 15 | ORTE_MODULE_DECLSPEC extern orte_ess_base_component_t mca_ess_pmi_component; 16 | 17 | END_C_DECLS 18 | 19 | #endif /* ORTE_ESS_PMI_H */ 20 | -------------------------------------------------------------------------------- /orte/mca/rtc/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2014 Intel, Inc. All rights reserved 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | headers += \ 11 | base/base.h 12 | 13 | libmca_rtc_la_SOURCES += \ 14 | base/rtc_base_frame.c \ 15 | base/rtc_base_select.c \ 16 | base/rtc_base_stubs.c 17 | 18 | dist_ortedata_DATA = base/help-orte-rtc-base.txt 19 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/ad_ufs/Makefile.mk: -------------------------------------------------------------------------------- 1 | ## -*- Mode: Makefile; -*- 2 | ## vim: set ft=automake : 3 | ## 4 | ## (C) 2011 by Argonne National Laboratory. 5 | ## See COPYRIGHT in top-level directory. 6 | ## 7 | 8 | if BUILD_AD_UFS 9 | 10 | noinst_HEADERS += adio/ad_ufs/ad_ufs.h 11 | 12 | romio_other_sources += \ 13 | adio/ad_ufs/ad_ufs.c \ 14 | adio/ad_ufs/ad_ufs_open.c 15 | 16 | endif BUILD_AD_UFS 17 | 18 | -------------------------------------------------------------------------------- /oshmem/mca/scoll/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2013 Mellanox Technologies, Inc. 3 | # All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | headers += \ 12 | base/base.h 13 | 14 | libmca_scoll_la_SOURCES += \ 15 | base/scoll_base_frame.c \ 16 | base/scoll_base_available.c \ 17 | base/scoll_base_select.c 18 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/pdl/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2015 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | headers += \ 11 | base/base.h 12 | 13 | libmca_pdl_la_SOURCES += \ 14 | base/pdl_base_open.c \ 15 | base/pdl_base_close.c \ 16 | base/pdl_base_select.c \ 17 | base/pdl_base_fns.c 18 | -------------------------------------------------------------------------------- /oshmem/mca/atomic/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2013 Mellanox Technologies, Inc. 3 | # All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | headers += \ 12 | base/base.h 13 | 14 | libmca_atomic_la_SOURCES += \ 15 | base/atomic_base_frame.c \ 16 | base/atomic_base_available.c \ 17 | base/atomic_base_select.c 18 | -------------------------------------------------------------------------------- /oshmem/op/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2013 Mellanox Technologies, Inc. 3 | # All rights reserved. 4 | # # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | # 11 | # This makefile.am does not stand on its own - it is included from oshmem/Makefile.am 12 | 13 | 14 | headers += \ 15 | op/op.h 16 | 17 | liboshmem_la_SOURCES += \ 18 | op/op.c 19 | 20 | -------------------------------------------------------------------------------- /oshmem/shmem/fortran/shmem_fortran_pointer.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2013 Mellanox Technologies, Inc. 3 | * All rights reserved. 4 | * $COPYRIGHT$ 5 | * 6 | * Additional copyrights may follow 7 | * 8 | * $HEADER$ 9 | */ 10 | 11 | #ifndef SHMEM_FORTRAN_POINTER_H 12 | #define SHMEM_FORTRAN_POINTER_H 13 | 14 | #define FORTRAN_POINTER_T uintptr_t 15 | #define FPTR_2_VOID_PTR(a) ((void *)(a)) 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /oshmem/mca/scoll/mpi/help-oshmem-scoll-mpi.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2015 Mellanox Technologies, Inc. 3 | # All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | [module_enable:fatal] 11 | scoll:mpi module reports issue during module enabling phase. 12 | Try to use scoll:mpi component with anoter one 13 | for example scoll:basic 14 | 15 | Error: %s 16 | # 17 | -------------------------------------------------------------------------------- /ompi/mca/vprotocol/pessimist/vprotocol_pessimist_event.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2004-2007 The Trustees of the University of Tennessee. 3 | * All rights reserved. 4 | * $COPYRIGHT$ 5 | * 6 | * Additional copyrights may follow 7 | * 8 | * $HEADER$ 9 | */ 10 | 11 | #include "ompi_config.h" 12 | #include "vprotocol_pessimist_event.h" 13 | 14 | OBJ_CLASS_INSTANCE(mca_vprotocol_pessimist_event_t, opal_list_item_t, NULL, NULL); 15 | -------------------------------------------------------------------------------- /orte/test/mpi/nonzero.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | int main(int argc, char **argv) 6 | { 7 | int rank; 8 | 9 | if(argc < 2) { 10 | return 0; 11 | } 12 | MPI_Init(&argc, &argv); 13 | MPI_Comm_rank(MPI_COMM_WORLD,&rank); 14 | 15 | int i = atoi(argv[1]); 16 | 17 | MPI_Finalize(); 18 | 19 | if (i != rank) { 20 | sleep(1); 21 | } 22 | return i; 23 | } 24 | -------------------------------------------------------------------------------- /orte/test/mpi/sio.c: -------------------------------------------------------------------------------- 1 | /* -*- C -*- 2 | * 3 | * $HEADER$ 4 | * 5 | * The most basic of MPI applications 6 | */ 7 | 8 | #include 9 | #include "mpi.h" 10 | 11 | int main(int argc, char* argv[]) 12 | { 13 | int i; 14 | 15 | MPI_Init(&argc, &argv); 16 | 17 | for (i=0; i < 100; i++) { 18 | printf("some output from mpitest to test the xml problem: %d\n", i); 19 | } 20 | 21 | MPI_Finalize(); 22 | return 0; 23 | } 24 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/test/test_internal.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Mellanox Technologies, Inc. 3 | * All rights reserved. 4 | * $COPYRIGHT$ 5 | * 6 | * Additional copyrights may follow 7 | * 8 | * $HEADER$ 9 | * 10 | */ 11 | 12 | #include 13 | #include 14 | 15 | #include "test_common.h" 16 | 17 | int test_internal(char *my_nspace, pmix_rank_t my_rank, test_params params); 18 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/test/test_replace.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Mellanox Technologies, Inc. 3 | * All rights reserved. 4 | * $COPYRIGHT$ 5 | * 6 | * Additional copyrights may follow 7 | * 8 | * $HEADER$ 9 | * 10 | */ 11 | 12 | #include 13 | #include 14 | 15 | #include "test_common.h" 16 | 17 | int test_replace(char *my_nspace, pmix_rank_t my_rank, test_params params); 18 | -------------------------------------------------------------------------------- /oshmem/info/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2015 Mellanox Technologies, Inc. 3 | # All rights reserved. 4 | # # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | # 11 | 12 | # This makefile.am does not stand on its own - it is included from ompi/Makefile.am 13 | 14 | headers += \ 15 | info/info.h 16 | 17 | liboshmem_la_SOURCES += \ 18 | info/info.c 19 | -------------------------------------------------------------------------------- /examples/dtrace/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. 3 | # Use is subject to license terms. 4 | # 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | 12 | 13 | BINS = mpicommleak 14 | 15 | all: $(BINS) 16 | 17 | mpicommleak: mpicommleak.c 18 | mpicc mpicommleak.c -o mpicommleak 19 | 20 | clean: 21 | /bin/rm -f *.o 22 | 23 | clobber: 24 | /bin/rm -f $(BINS) *.o 25 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/pinstalldirs/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2006 Los Alamos National Security, LLC. All rights 3 | # reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | headers += \ 12 | base/base.h 13 | 14 | libmca_pinstalldirs_la_SOURCES += \ 15 | base/pinstalldirs_base_components.c \ 16 | base/pinstalldirs_base_expand.c 17 | -------------------------------------------------------------------------------- /oshmem/util/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2014 Mellanox Technologies, Inc. 3 | # All rights reserved. 4 | # # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | # 11 | # This makefile.am does not stand on its own - it is included from oshmem/Makefile.am 12 | 13 | 14 | headers += \ 15 | util/oshmem_util.h 16 | 17 | liboshmem_la_SOURCES += \ 18 | util/oshmem_util.c 19 | 20 | -------------------------------------------------------------------------------- /examples/dtrace/mpitrace.d: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. 3 | * Use is subject to license terms. 4 | * $COPYRIGHT$ 5 | * 6 | * Additional copyrights may follow 7 | * 8 | * $HEADER$ 9 | */ 10 | 11 | pid$target:libmpi:MPI_*:entry 12 | { 13 | printf("Entered %s...", probefunc); 14 | } 15 | 16 | pid$target:libmpi:MPI_*:return 17 | { 18 | printf("exiting, return value = %d\n", arg1); 19 | } 20 | -------------------------------------------------------------------------------- /ompi/mca/mtl/configure.m4: -------------------------------------------------------------------------------- 1 | # -*- shell-script -*- 2 | # 3 | # Copyright (c) 2013 Sandia National Laboratories. All rights reserved. 4 | # 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | 12 | AC_DEFUN([MCA_ompi_mtl_CONFIG],[ 13 | # configure all the components 14 | MCA_CONFIGURE_FRAMEWORK($1, $2, 1) 15 | 16 | # this is a direct callable component, so set that up. 17 | MCA_SETUP_DIRECT_CALL($1, $2) 18 | ]) 19 | -------------------------------------------------------------------------------- /ompi/mca/pml/configure.m4: -------------------------------------------------------------------------------- 1 | # -*- shell-script -*- 2 | # 3 | # Copyright (c) 2013 Sandia National Laboratories. All rights reserved. 4 | # 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | 12 | AC_DEFUN([MCA_ompi_pml_CONFIG],[ 13 | # configure all the components 14 | MCA_CONFIGURE_FRAMEWORK($1, $2, 1) 15 | 16 | # this is a direct callable component, so set that up. 17 | MCA_SETUP_DIRECT_CALL($1, $2) 18 | ]) 19 | -------------------------------------------------------------------------------- /opal/mca/btl/usnic/btl_usnic_hwloc.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2013-2019 Cisco Systems, Inc. All rights reserved. 3 | * $COPYRIGHT$ 4 | * 5 | * Additional copyrights may follow 6 | * 7 | * $HEADER$ 8 | */ 9 | 10 | #ifndef BTL_USNIC_HWLOC_H 11 | #define BTL_USNIC_HWLOC_H 12 | 13 | #include "opal_config.h" 14 | 15 | #include "btl_usnic_module.h" 16 | 17 | 18 | int opal_btl_usnic_hwloc_distance(opal_btl_usnic_module_t *module); 19 | 20 | #endif /* BTL_USNIC_HWLOC_H */ 21 | -------------------------------------------------------------------------------- /opal/mca/event/libevent2022/libevent/libevent_openssl.pc.in: -------------------------------------------------------------------------------- 1 | #libevent pkg-config source file 2 | 3 | prefix=@prefix@ 4 | exec_prefix=@exec_prefix@ 5 | libdir=@libdir@ 6 | includedir=@includedir@ 7 | 8 | Name: libevent_openssl 9 | Description: libevent_openssl adds openssl-based TLS support to libevent 10 | Version: @VERSION@ 11 | Requires: libevent 12 | Conflicts: 13 | Libs: -L${libdir} -levent_openssl 14 | Libs.private: @LIBS@ -lssl -lcrypto 15 | Cflags: -I${includedir} 16 | 17 | -------------------------------------------------------------------------------- /test/dss/Makefile.am: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2016 Research Organization for Information Science 2 | # and Technology (RIST). All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | TESTS = dss_buffer dss_cmp dss_payload dss_print 11 | 12 | check_PROGRAMS = $(TESTS) $(MPI_CHECKS) 13 | 14 | LDFLAGS = $(OPAL_PKG_CONFIG_LDFLAGS) 15 | LDADD = $(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la 16 | -------------------------------------------------------------------------------- /contrib/platform/embedded/build_embedded.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | # 3 | 4 | if (( $# < 2 )) ; then 5 | echo "usage ./contrib/platform/embedded/build_embedded.sh prefix debug|optimized" 6 | exit 1 7 | fi 8 | 9 | prefix=$1 10 | shift 1 11 | platform=$1 12 | 13 | ./configure --prefix="${prefix}" --with-platform=contrib/platform/embedded/"${platform}" 14 | make clean > /dev/null 15 | make -j2 all > /dev/null 16 | make -j2 install > /dev/null 17 | 18 | # All done 19 | exit 0 20 | -------------------------------------------------------------------------------- /ompi/dpm/Makefile.am: -------------------------------------------------------------------------------- 1 | # -*- makefile -*- 2 | # 3 | # Copyright (c) 2015 Intel, Inc. All rights reserved. 4 | # Copyright (c) 2016 IBM Corporation. All rights reserved. 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | 12 | # This makefile.am does not stand on its own - it is included from ompi/Makefile.am 13 | 14 | headers += \ 15 | dpm/dpm.h 16 | 17 | lib@OMPI_LIBMPI_NAME@_la_SOURCES += \ 18 | dpm/dpm.c 19 | 20 | -------------------------------------------------------------------------------- /ompi/mca/pml/example/pml_example_progress.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2004-2005 The University of Tennessee and The University 3 | * of Tennessee Research Foundation. All rights 4 | * reserved. 5 | * $COPYRIGHT$ 6 | * 7 | * Additional copyrights may follow 8 | * 9 | * $HEADER$ 10 | */ 11 | 12 | #include "ompi_config.h" 13 | #include "pml_example.h" 14 | 15 | int mca_pml_example_progress(void) 16 | { 17 | return 0; 18 | } 19 | -------------------------------------------------------------------------------- /opal/mca/memcpy/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2004-2005 The University of Tennessee and The University 3 | # of Tennessee Research Foundation. All rights 4 | # reserved. 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | 12 | headers += \ 13 | base/base.h \ 14 | base/memcpy_base_default.h 15 | 16 | libmca_memcpy_la_SOURCES += \ 17 | base/memcpy_base_open.c 18 | -------------------------------------------------------------------------------- /oshmem/request/Makefile.am: -------------------------------------------------------------------------------- 1 | # -*- makefile -*- 2 | # 3 | # Copyright (c) 2013 Mellanox Technologies, Inc. 4 | # All rights reserved. 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | # This makefile.am does not stand on its own - it is included from oshmem/Makefile.am 12 | 13 | 14 | headers += \ 15 | request/request.h \ 16 | request/request_dbg.h 17 | 18 | liboshmem_la_SOURCES += \ 19 | request/request.c 20 | -------------------------------------------------------------------------------- /ompi/mca/pml/v/configure.m4: -------------------------------------------------------------------------------- 1 | # -*- shell-script -*- 2 | # 3 | # Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. 4 | # 5 | # Additional copyrights may follow. 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | AC_DEFUN([MCA_ompi_pml_v_COMPILE_MODE], [ 11 | AC_MSG_CHECKING([for MCA component $2:$3 compile mode]) 12 | $4="static" 13 | AC_MSG_RESULT([$$4]) 14 | ]) 15 | 16 | AC_DEFUN([MCA_ompi_pml_v_CONFIG], [ 17 | AC_CONFIG_FILES([ompi/mca/pml/v/Makefile]) 18 | $1 19 | ]) 20 | -------------------------------------------------------------------------------- /opal/mca/event/libevent2022/libevent/strlcpy-internal.h: -------------------------------------------------------------------------------- 1 | #ifndef _STRLCPY_INTERNAL_H_ 2 | #define _STRLCPY_INTERNAL_H_ 3 | 4 | #ifdef __cplusplus 5 | extern "C" { 6 | #endif 7 | 8 | #include "event2/event-config.h" 9 | #include "event2/util.h" 10 | 11 | #ifndef _EVENT_HAVE_STRLCPY 12 | #include 13 | size_t _event_strlcpy(char *dst, const char *src, size_t siz); 14 | #define strlcpy _event_strlcpy 15 | #endif 16 | 17 | #ifdef __cplusplus 18 | } 19 | #endif 20 | 21 | #endif 22 | 23 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/contrib/perf_tools/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | OMPI_BASE=/install/ 4 | PMIX_LIB=/lib/ 5 | #LIBEVENT=/hpc/mtr_scrap/users/artemp/PMIx_paper/libevent-2.0.22-stable/install/lib/ 6 | #HWLOC=/hpc/mtr_scrap/users/artemp/PMIx_paper/hwloc-1.11.3/install/lib/ 7 | 8 | export PATH="$OMPI_BASE/bin:$PATH" 9 | export LD_LIBRARY_PATH="$OMPI_BASE/lib:$PMIX_LIB:$LD_LIBRARY_PATH" 10 | 11 | np=$1 12 | shift 13 | mpirun -np $np `pwd`/pmix_intra_perf $@ 14 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/test/test_spawn.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 Intel, Inc. All rights reserved. 3 | * Copyright (c) 2015 Mellanox Technologies, Inc. 4 | * All rights reserved. 5 | * $COPYRIGHT$ 6 | * 7 | * Additional copyrights may follow 8 | * 9 | * $HEADER$ 10 | * 11 | */ 12 | 13 | #include 14 | #include 15 | 16 | #include "test_common.h" 17 | 18 | int test_spawn(char *my_nspace, int my_rank); 19 | -------------------------------------------------------------------------------- /contrib/infrastructure/crontab-mpiteam-at-lion.crest.iu.edu: -------------------------------------------------------------------------------- 1 | ######################### 2 | # Update the OSL FT webpage 3 | # 4 | # Everyday @ 1:00 am 5 | # 6 | 0 1 * * * (cd /l/osl/www/www.osl.iu.edu/research/ft && svn up ) 1> /dev/null 2> /dev/null 7 | ######################### 8 | 9 | 10 | ########################## 11 | # Official Open MPI repo mirrors 12 | ########################## 13 | # 14 | # 15 | # Update the ompi hg repository 16 | # 17 | 10,25,40,55 * * * * /home/ompi-hg/update-hg-svn.sh 18 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/include/mpiu_greq.h: -------------------------------------------------------------------------------- 1 | /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */ 2 | /* 3 | * 4 | * (C) 2003 by Argonne National Laboratory. 5 | * See COPYRIGHT in top-level directory. 6 | */ 7 | 8 | #ifndef _MPIU_GREQUEST_H 9 | #define _MPIU_GREQUEST_H 10 | 11 | int MPIU_Greq_query_fn(void *extra_state, MPI_Status *status); 12 | int MPIU_Greq_free_fn(void *extra_state); 13 | int MPIU_Greq_cancel_fn(void *extra_state, int complete); 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/README_OMPI: -------------------------------------------------------------------------------- 1 | Please note that this is *NOT* a vanilla MPICH v3.2b1 2 | distribution of the ROMIO package from Argonne National Labs. 3 | Various customizations had to be applied to the configuration process. 4 | More to the point -- if replace this copy of ROMIO with a newer version, 5 | it will likely not work. :-( 6 | 7 | - The Open MPI Team 8 | 9 | ----------------------------------------------------------------------------- 10 | 11 | Local modifications are in ompi.patch 12 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/mpi-io/glue/Makefile.mk: -------------------------------------------------------------------------------- 1 | ## -*- Mode: Makefile; -*- 2 | ## vim: set ft=automake : 3 | ## 4 | ## (C) 2011 by Argonne National Laboratory. 5 | ## See COPYRIGHT in top-level directory. 6 | ## 7 | 8 | include $(top_srcdir)/mpi-io/glue/default/Makefile.mk 9 | include $(top_srcdir)/mpi-io/glue/mpich/Makefile.mk 10 | include $(top_srcdir)/mpi-io/glue/openmpi/Makefile.mk 11 | 12 | if !BUILD_ROMIO_EMBEDDED 13 | romio_other_sources += \ 14 | mpi-io/glue/large_count.c 15 | endif 16 | -------------------------------------------------------------------------------- /ompi/mca/osc/pt2pt/help-osc-pt2pt.txt: -------------------------------------------------------------------------------- 1 | # -*- text -*- 2 | # 3 | # Copyright (c) 2016 Los Alamos National Security, LLC. All rights 4 | # reserved. 5 | # 6 | # $COPYRIGHT$ 7 | # 8 | # Additional copyrights may follow 9 | # 10 | # $HEADER$ 11 | # 12 | [mpi-thread-multiple-not-supported] 13 | The OSC pt2pt component does not support MPI_THREAD_MULTIPLE in this release. 14 | Workarounds are to run on a single node, or to use a system with an RDMA 15 | capable network such as Infiniband. 16 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/psquash/base/Makefile.include: -------------------------------------------------------------------------------- 1 | # -*- makefile -*- 2 | # 3 | # Copyright (c) 2019 IBM Corporation. All rights reserved. 4 | # $COPYRIGHT$ 5 | # 6 | # Additional copyrights may follow 7 | # 8 | # $HEADER$ 9 | # 10 | 11 | # This makefile.am does not stand on its own - it is included from 12 | # src/Makefile.am 13 | 14 | headers += \ 15 | base/base.h 16 | 17 | sources += \ 18 | base/psquash_base_frame.c \ 19 | base/psquash_base_select.c 20 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/test/test_publish.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 Intel, Inc. All rights reserved. 3 | * Copyright (c) 2015 Mellanox Technologies, Inc. 4 | * All rights reserved. 5 | * $COPYRIGHT$ 6 | * 7 | * Additional copyrights may follow 8 | * 9 | * $HEADER$ 10 | * 11 | */ 12 | 13 | #include 14 | #include 15 | 16 | #include "test_common.h" 17 | 18 | int test_publish_lookup(char *my_nspace, int my_rank); 19 | -------------------------------------------------------------------------------- /contrib/platform/embedded/gen_embedded.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | # 3 | 4 | if (( $# < 2 )) ; then 5 | echo "usage ./contrib/platform/embedded/gen_embedded.sh prefix debug|optimized" 6 | exit 1 7 | fi 8 | 9 | prefix=$1 10 | shift 1 11 | platform=$1 12 | 13 | ./autogen.pl -no-ompi 14 | ./configure --prefix="${prefix}" --with-platform=contrib/platform/embedded/"${platform}" 15 | make clean > /dev/null 16 | make -j2 all > /dev/null 17 | make -j2 install > /dev/null 18 | 19 | # All done 20 | exit 0 21 | -------------------------------------------------------------------------------- /ompi/mca/pml/example/pml_example_ptl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2004-2005 The University of Tennessee and The University 3 | * of Tennessee Research Foundation. All rights 4 | * reserved. 5 | * $COPYRIGHT$ 6 | * 7 | * Additional copyrights may follow 8 | * 9 | * $HEADER$ 10 | */ 11 | 12 | #ifndef PML_EXAMPLE_PTL_H_HAS_BEEN_INCLUDED 13 | #define PML_EXAMPLE_PTL_H_HAS_BEEN_INCLUDED 14 | 15 | 16 | 17 | #endif /* PML_EXAMPLE_PTL_H_HAS_BEEN_INCLUDED */ 18 | -------------------------------------------------------------------------------- /opal/mca/event/libevent2022/libevent/libevent_pthreads.pc.in: -------------------------------------------------------------------------------- 1 | #libevent pkg-config source file 2 | 3 | prefix=@prefix@ 4 | exec_prefix=@exec_prefix@ 5 | libdir=@libdir@ 6 | includedir=@includedir@ 7 | 8 | Name: libevent_pthreads 9 | Description: libevent_pthreads adds pthreads-based threading support to libevent 10 | Version: @VERSION@ 11 | Requires: libevent 12 | Conflicts: 13 | Libs: -L${libdir} -levent_pthreads 14 | Libs.private: @LIBS@ @PTHREAD_LIBS@ 15 | Cflags: -I${includedir} @PTHREAD_CFLAGS@ 16 | 17 | -------------------------------------------------------------------------------- /opal/mca/memchecker/base/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2004-2007 High Performance Computing Center Stuttgart, 3 | # University of Stuttgart. All rights reserved. 4 | # 5 | # $COPYRIGHT$ 6 | # 7 | # Additional copyrights may follow 8 | # 9 | # $HEADER$ 10 | # 11 | 12 | headers += \ 13 | base/base.h 14 | 15 | libmca_memchecker_la_SOURCES += \ 16 | base/memchecker_base_open.c \ 17 | base/memchecker_base_select.c \ 18 | base/memchecker_base_wrappers.c 19 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/ad_gpfs/pe/Makefile.mk: -------------------------------------------------------------------------------- 1 | ## -*- Mode: Makefile; -*- 2 | ## vim: set ft=automake : 3 | ## 4 | ## (C) 2012 by Argonne National Laboratory. 5 | ## See COPYRIGHT in top-level directory. 6 | ## 7 | 8 | if BUILD_AD_PE 9 | 10 | noinst_HEADERS += \ 11 | adio/ad_gpfs/pe/ad_pe_aggrs.h 12 | 13 | romio_other_sources += \ 14 | adio/ad_gpfs/pe/ad_pe_aggrs.c 15 | 16 | endif BUILD_AD_PE 17 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/adio/ad_sfs/Makefile.mk: -------------------------------------------------------------------------------- 1 | ## -*- Mode: Makefile; -*- 2 | ## vim: set ft=automake : 3 | ## 4 | ## (C) 2011 by Argonne National Laboratory. 5 | ## See COPYRIGHT in top-level directory. 6 | ## 7 | 8 | if BUILD_AD_SFS 9 | 10 | noinst_HEADERS += adio/ad_sfs/ad_sfs.h 11 | 12 | romio_other_sources += \ 13 | adio/ad_sfs/ad_sfs_open.c \ 14 | adio/ad_sfs/ad_sfs_fcntl.c \ 15 | adio/ad_sfs/ad_sfs_flush.c \ 16 | adio/ad_sfs/ad_sfs.c 17 | 18 | endif BUILD_AD_SFS 19 | 20 | -------------------------------------------------------------------------------- /ompi/mca/io/romio321/romio/test/.codingcheck: -------------------------------------------------------------------------------- 1 | # 2 | # We allow these routines for the romio test programs 3 | %romioTestRoutines = ( 4 | 'printf' => sys, 'fprintf' => sys , 'sprintf' => sys, 'vprintf' => sys, 5 | 'strcpy' => sys, 'strncpy' => sys, 'strcat' => sys, 6 | 'malloc' => sys, 'free' => sys, 'calloc' => sys, 'strdup' => sys, 7 | 'assert' => sys, 'snprintf' => sys, 8 | ); 9 | if (defined(&PushAllowFuncNames)) { 10 | &PushAllowFuncNames( "romioTestRoutines", "tree", "add" ); 11 | } 12 | 13 | 1; 14 | -------------------------------------------------------------------------------- /ompi/mca/pml/example/pml_example_proc.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2004-2005 The University of Tennessee and The University 3 | * of Tennessee Research Foundation. All rights 4 | * reserved. 5 | * $COPYRIGHT$ 6 | * 7 | * Additional copyrights may follow 8 | * 9 | * $HEADER$ 10 | */ 11 | 12 | #ifndef PML_EXAMPLE_PROC_H_HAS_BEEN_INCLUDED 13 | #define PML_EXAMPLE_PROC_H_HAS_BEEN_INCLUDED 14 | 15 | 16 | 17 | #endif /* PML_EXAMPLE_PROC_H_HAS_BEEN_INCLUDED */ 18 | -------------------------------------------------------------------------------- /oshmem/mca/memheap/configure.m4: -------------------------------------------------------------------------------- 1 | # -*- shell-script -*- 2 | # 3 | # Copyright (c) 2014 Mellanox Technologies, Inc. 4 | # All rights reserved. 5 | # 6 | # $COPYRIGHT$ 7 | # 8 | # Additional copyrights may follow 9 | # 10 | # $HEADER$ 11 | # 12 | 13 | AC_DEFUN([MCA_oshmem_memheap_CONFIG],[ 14 | # configure all the components 15 | MCA_CONFIGURE_FRAMEWORK($1, $2, 1) 16 | 17 | # this is a direct callable component, so set that up. 18 | MCA_SETUP_DIRECT_CALL($1, $2) 19 | ]) 20 | -------------------------------------------------------------------------------- /ompi/mca/pml/example/pml_example_start.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2004-2005 The University of Tennessee and The University 3 | * of Tennessee Research Foundation. All rights 4 | * reserved. 5 | * $COPYRIGHT$ 6 | * 7 | * Additional copyrights may follow 8 | * 9 | * $HEADER$ 10 | */ 11 | 12 | #include "ompi_config.h" 13 | #include "pml_example.h" 14 | 15 | int mca_pml_example_start(size_t count, ompi_request_t** requests) 16 | { 17 | return OMPI_SUCCESS; 18 | } 19 | -------------------------------------------------------------------------------- /ompi/mpiext/example/use-mpi/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2011-2012 Cisco Systems, Inc. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | # There's nothing to build or install for the "use mpi" bindings for 11 | # this MPI extension. However, we must list the header file that will 12 | # be slurped up to be part of the mpi_ext Fortran module so that it is 13 | # included in dist tarballs. 14 | 15 | noinst_HEADERS = mpiext_example_usempi.h 16 | -------------------------------------------------------------------------------- /ompi/mpiext/shortfloat/use-mpi/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2018 FUJITSU LIMITED. All rights reserved. 3 | # $COPYRIGHT$ 4 | # 5 | # Additional copyrights may follow 6 | # 7 | # $HEADER$ 8 | # 9 | 10 | # There's nothing to build or install for the "use mpi" bindings for 11 | # this MPI extension. However, we must list the header file that will 12 | # be slurped up to be part of the mpi_ext Fortran module so that it is 13 | # included in dist tarballs. 14 | 15 | noinst_HEADERS = mpiext_shortfloat_usempi.h 16 | -------------------------------------------------------------------------------- /opal/mca/pmix/pmix4x/openpmix/src/mca/gds/ds21/gds_ds21_file.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2018 Mellanox Technologies, Inc. 3 | * All rights reserved. 4 | * $COPYRIGHT$ 5 | * 6 | * Additional copyrights may follow 7 | * 8 | * $HEADER$ 9 | */ 10 | 11 | #ifndef GDS_DS21_FILE_H 12 | #define GDS_DS21_FILE_H 13 | 14 | #include 15 | #include 16 | 17 | extern pmix_common_dstore_file_cbs_t pmix_ds21_file_module; 18 | 19 | #endif // GDS_DS21_FILE_H 20 | --------------------------------------------------------------------------------