├── .circleci └── config.yml ├── .clang-format ├── .gitattributes ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .lgtm.yml ├── .mailmap ├── .readthedocs.yaml ├── .zenodo.json ├── CHANGES ├── CITATION.cff ├── CMakeLists.txt ├── LICENSE ├── NOTICE ├── README.ampi ├── README.charm4py ├── README.md ├── benchmarks ├── Makefile ├── ampi │ ├── Makefile │ ├── alltoall │ │ ├── Makefile │ │ ├── allgather.c │ │ ├── alltoall.c │ │ ├── alltoall_VPtest.c │ │ └── mpibench.c │ ├── isomalloc │ │ ├── Makefile │ │ └── test.C │ ├── onesided │ │ ├── GetPutTest.C │ │ ├── IgetTest.C │ │ └── Makefile │ ├── pingpong │ │ ├── Makefile │ │ ├── pingpong-1way.c │ │ ├── pingpong-2way.c │ │ ├── pingpong-cachemiss.c │ │ └── pingpong-pipeline.c │ └── speed │ │ ├── Makefile │ │ ├── hello.C │ │ ├── hello.ci │ │ ├── msgspeed.c │ │ ├── msgspeed.h │ │ ├── standalone_mpi.c │ │ └── test_mpi.c ├── charm++ │ ├── Makefile │ ├── communication_overhead │ │ ├── Makefile │ │ ├── overhead_test.C │ │ └── overhead_test.ci │ ├── cuda │ │ ├── Makefile │ │ └── gpudirect │ │ │ ├── Makefile │ │ │ ├── bandwidth │ │ │ ├── Makefile │ │ │ ├── bandwidth.C │ │ │ └── bandwidth.ci │ │ │ ├── latency-persistent │ │ │ ├── Makefile │ │ │ ├── latency.C │ │ │ └── latency.ci │ │ │ └── latency │ │ │ ├── Makefile │ │ │ ├── latency.C │ │ │ └── latency.ci │ ├── googlebenchmark │ │ └── simplering │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── simplering.C │ │ │ └── simplering.ci │ ├── kNeighbor │ │ ├── Makefile │ │ ├── README │ │ ├── kNeighbor.C │ │ └── kNeighbor.ci │ ├── migrate │ │ ├── Makefile │ │ ├── README │ │ ├── migrateHello.C │ │ └── migrateHello.ci │ ├── pingpong │ │ ├── Makefile │ │ ├── pingpong.C │ │ └── pingpong.ci │ ├── queueperf │ │ ├── Makefile │ │ ├── msgqtest.C │ │ ├── pgm.C │ │ └── test.ci │ ├── streamingAllToAll │ │ ├── Makefile │ │ ├── README │ │ ├── ataDatatype.h │ │ ├── ataTest.C │ │ └── ataTest.ci │ ├── taskSpawn │ │ ├── Makefile │ │ ├── taskSpawn.C │ │ └── taskSpawn.ci │ ├── taskSpawnRecursive │ │ ├── Makefile │ │ ├── taskSpawn.C │ │ └── taskSpawn.ci │ ├── xcastredn │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── convMsgHandlers.C │ │ ├── convMsgHandlers.h │ │ ├── myChareArray.C │ │ ├── myChareArray.h │ │ ├── reductionBenchmark.ci │ │ ├── reductionBenchmark.h │ │ ├── testController.C │ │ └── testController.h │ └── zerocopy │ │ ├── Makefile │ │ ├── bcastPingAll │ │ ├── Makefile │ │ ├── ping_all.C │ │ └── ping_all.ci │ │ ├── direct_api │ │ ├── Makefile │ │ ├── prereg │ │ │ ├── Makefile │ │ │ └── pingpong │ │ │ │ ├── Makefile │ │ │ │ ├── pingpong.C │ │ │ │ └── pingpong.ci │ │ ├── reg │ │ │ ├── Makefile │ │ │ └── pingpong │ │ │ │ ├── Makefile │ │ │ │ ├── pingpong.C │ │ │ │ └── pingpong.ci │ │ └── unreg │ │ │ ├── Makefile │ │ │ └── pingpong │ │ │ ├── Makefile │ │ │ ├── pingpong.C │ │ │ └── pingpong.ci │ │ ├── entry_method_api │ │ ├── Makefile │ │ ├── prereg │ │ │ ├── Makefile │ │ │ └── pingpong │ │ │ │ ├── Makefile │ │ │ │ ├── pingpong.C │ │ │ │ └── pingpong.ci │ │ ├── reg │ │ │ ├── Makefile │ │ │ └── pingpong │ │ │ │ ├── Makefile │ │ │ │ ├── pingpong.C │ │ │ │ └── pingpong.ci │ │ └── unreg │ │ │ ├── Makefile │ │ │ └── pingpong │ │ │ ├── Makefile │ │ │ ├── pingpong.C │ │ │ └── pingpong.ci │ │ ├── entry_method_bcast_api │ │ ├── Makefile │ │ └── reg │ │ │ ├── Makefile │ │ │ └── ping_all │ │ │ ├── Makefile │ │ │ ├── ping_all.C │ │ │ └── ping_all.ci │ │ ├── entry_method_bcast_post_api │ │ ├── Makefile │ │ ├── prereg │ │ │ ├── Makefile │ │ │ └── ping_all │ │ │ │ ├── Makefile │ │ │ │ ├── ping_all.C │ │ │ │ └── ping_all.ci │ │ ├── reg │ │ │ ├── Makefile │ │ │ └── ping_all │ │ │ │ ├── Makefile │ │ │ │ ├── ping_all.C │ │ │ │ └── ping_all.ci │ │ └── unreg │ │ │ ├── Makefile │ │ │ └── ping_all │ │ │ ├── Makefile │ │ │ ├── ping_all.C │ │ │ └── ping_all.ci │ │ ├── entry_method_post_api │ │ ├── Makefile │ │ ├── prereg │ │ │ ├── Makefile │ │ │ └── pingpong │ │ │ │ ├── Makefile │ │ │ │ ├── pingpong.C │ │ │ │ └── pingpong.ci │ │ ├── reg │ │ │ ├── Makefile │ │ │ └── pingpong │ │ │ │ ├── Makefile │ │ │ │ ├── pingpong.C │ │ │ │ └── pingpong.ci │ │ └── unreg │ │ │ ├── Makefile │ │ │ └── pingpong │ │ │ ├── Makefile │ │ │ ├── pingpong.C │ │ │ └── pingpong.ci │ │ ├── p2pPingpong │ │ ├── Makefile │ │ ├── megaZCPingpong.C │ │ └── megaZCPingpong.ci │ │ └── readonlyBcast │ │ ├── Makefile │ │ ├── readonlyBcast.C │ │ └── readonlyBcast.ci ├── common.mk └── converse │ ├── Makefile │ ├── commbench │ ├── Makefile │ ├── broadcast.c │ ├── commbench.c │ ├── commbench.h │ ├── ctxt.c │ ├── flood.c │ ├── memoryAccess.c │ ├── overhead.c │ ├── pingpong-cachemiss.c │ ├── pingpong.c │ ├── proc.c │ ├── reduction.c │ ├── smputil.c │ └── timer.c │ ├── cthtest │ ├── Makefile │ └── pgm.C │ ├── kNeighbors │ ├── Makefile │ └── kNeighbors.C │ ├── machinetest │ ├── Makefile │ ├── multiping.C │ └── pingall.C │ ├── ping_ack │ ├── Makefile │ ├── README.md │ └── ping_ack.cpp │ ├── pingpong │ ├── Makefile │ ├── pingpong.C │ └── pingpong_multipairs.C │ ├── pingpong_multi │ ├── Makefile │ └── pingpong.C │ ├── randomttl │ ├── Makefile │ └── randomttl.C │ └── selfsend │ ├── Makefile │ └── self_send.cpp ├── cmake ├── Makefile.tests ├── Makefile.tests.common ├── README.md ├── ci-files.cmake ├── converse.cmake ├── detect-features-c.cmake ├── detect-features-cxx.cmake ├── detect-features-fortran.cmake ├── detect-features.cmake ├── hwloc.cmake └── templates │ └── CharmConfig.cmake.in ├── contrib ├── charmc.cmake ├── ci.snippets ├── ci.vim ├── hwloc │ ├── AUTHORS │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── VERSION │ ├── aclocal.m4 │ ├── config │ │ ├── ar-lib │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── distscript.sh │ │ ├── hwloc.m4 │ │ ├── hwloc_check_attributes.m4 │ │ ├── hwloc_check_vendor.m4 │ │ ├── hwloc_check_visibility.m4 │ │ ├── hwloc_components.m4 │ │ ├── hwloc_get_version.sh │ │ ├── hwloc_internal.m4 │ │ ├── hwloc_pkg.m4 │ │ ├── install-sh │ │ ├── libtool-big-sur-fixup.patch │ │ ├── libtool.m4 │ │ ├── ltmain.sh │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── missing │ │ └── test-driver │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── completion │ │ │ └── Makefile.in │ │ ├── hwloc-ps.www │ │ │ └── Makefile.in │ │ ├── hwloc-valgrind.supp │ │ ├── misc │ │ │ └── Makefile.in │ │ ├── systemd │ │ │ └── Makefile.in │ │ └── windows │ │ │ └── Makefile.in │ ├── doc │ │ ├── Makefile.in │ │ ├── doxygen-config.cfg.in │ │ └── examples │ │ │ └── Makefile.in │ ├── hwloc.pc.in │ ├── hwloc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── base64.c │ │ ├── bind.c │ │ ├── bitmap.c │ │ ├── components.c │ │ ├── cpukinds.c │ │ ├── diff.c │ │ ├── distances.c │ │ ├── hwloc.dtd │ │ ├── hwloc2-diff.dtd │ │ ├── hwloc2.dtd │ │ ├── memattrs.c │ │ ├── misc.c │ │ ├── pci-common.c │ │ ├── shmem.c │ │ ├── topology-aix.c │ │ ├── topology-bgq.c │ │ ├── topology-cuda.c │ │ ├── topology-darwin.c │ │ ├── topology-fake.c │ │ ├── topology-freebsd.c │ │ ├── topology-gl.c │ │ ├── topology-hardwired.c │ │ ├── topology-hpux.c │ │ ├── topology-levelzero.c │ │ ├── topology-linux.c │ │ ├── topology-netbsd.c │ │ ├── topology-noos.c │ │ ├── topology-nvml.c │ │ ├── topology-opencl.c │ │ ├── topology-pci.c │ │ ├── topology-rsmi.c │ │ ├── topology-solaris-chiptype.c │ │ ├── topology-solaris.c │ │ ├── topology-synthetic.c │ │ ├── topology-windows.c │ │ ├── topology-x86.c │ │ ├── topology-xml-libxml.c │ │ ├── topology-xml-nolibxml.c │ │ ├── topology-xml.c │ │ ├── topology.c │ │ └── traversal.c │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── hwloc.h │ │ ├── hwloc │ │ │ ├── autogen │ │ │ │ └── config.h.in │ │ │ ├── bitmap.h │ │ │ ├── cpukinds.h │ │ │ ├── cuda.h │ │ │ ├── cudart.h │ │ │ ├── deprecated.h │ │ │ ├── diff.h │ │ │ ├── distances.h │ │ │ ├── export.h │ │ │ ├── gl.h │ │ │ ├── glibc-sched.h │ │ │ ├── helper.h │ │ │ ├── inlines.h │ │ │ ├── levelzero.h │ │ │ ├── linux-libnuma.h │ │ │ ├── linux.h │ │ │ ├── memattrs.h │ │ │ ├── nvml.h │ │ │ ├── opencl.h │ │ │ ├── openfabrics-verbs.h │ │ │ ├── plugins.h │ │ │ ├── rename.h │ │ │ ├── rsmi.h │ │ │ ├── shmem.h │ │ │ └── windows.h │ │ └── private │ │ │ ├── autogen │ │ │ └── config.h.in │ │ │ ├── components.h │ │ │ ├── cpuid-x86.h │ │ │ ├── debug.h │ │ │ ├── internal-components.h │ │ │ ├── misc.h │ │ │ ├── private.h │ │ │ ├── solaris-chiptype.h │ │ │ ├── windows.h │ │ │ └── xml.h │ ├── tests │ │ ├── Makefile.in │ │ ├── hwloc │ │ │ ├── Makefile.in │ │ │ ├── linux │ │ │ │ ├── Makefile.in │ │ │ │ ├── allowed │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── test-topology.sh.in │ │ │ │ ├── gather │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── test-gather-topology.sh.in │ │ │ │ └── test-topology.sh.in │ │ │ ├── ports │ │ │ │ └── Makefile.in │ │ │ ├── rename │ │ │ │ └── Makefile.in │ │ │ ├── wrapper.sh.in │ │ │ ├── x86+linux │ │ │ │ ├── Makefile.in │ │ │ │ └── test-topology.sh.in │ │ │ ├── x86 │ │ │ │ ├── Makefile.in │ │ │ │ └── test-topology.sh.in │ │ │ └── xml │ │ │ │ ├── Makefile.in │ │ │ │ └── test-topology.sh.in │ │ └── netloc │ │ │ ├── Makefile.in │ │ │ └── tests.sh.in │ └── utils │ │ ├── Makefile.in │ │ ├── hwloc │ │ ├── Makefile.in │ │ ├── hwloc-compress-dir.in │ │ ├── hwloc-gather-topology.in │ │ ├── test-build-custom-topology.sh.in │ │ ├── test-fake-plugin.sh.in │ │ ├── test-hwloc-annotate.sh.in │ │ ├── test-hwloc-calc.sh.in │ │ ├── test-hwloc-compress-dir.sh.in │ │ ├── test-hwloc-diffpatch.sh.in │ │ ├── test-hwloc-distrib.sh.in │ │ ├── test-hwloc-dump-hwdata │ │ │ ├── Makefile.in │ │ │ └── test-hwloc-dump-hwdata.sh.in │ │ ├── test-hwloc-info.sh.in │ │ └── test-parsing-flags.sh.in │ │ ├── lstopo │ │ ├── Makefile.in │ │ ├── lstopo-android.c │ │ ├── lstopo-windows.c │ │ ├── test-lstopo-shmem.sh.in │ │ └── test-lstopo.sh.in │ │ └── netloc │ │ ├── draw │ │ └── Makefile.in │ │ ├── infiniband │ │ ├── Makefile.in │ │ └── netloc_ib_gather_raw.in │ │ ├── mpi │ │ └── Makefile.in │ │ └── scotch │ │ └── Makefile.in └── update-hwloc.sh ├── coverage ├── ck-convcore-summary.C ├── coverage.sh └── tests.desc ├── doc ├── .gitignore ├── Makefile ├── README.rst ├── ampi │ ├── 01-introduction.rst │ ├── 02-building.rst │ ├── 03-using.rst │ ├── 04-extensions.rst │ ├── 05-examples.rst │ ├── figs │ │ ├── migrate.png │ │ ├── prac.png │ │ └── virtualization.png │ └── manual.rst ├── charisma │ └── manual.rst ├── charm++ │ ├── fig │ │ ├── ckgraph.png │ │ ├── pup.fig │ │ └── pup.png │ ├── kmeans.cpp │ └── manual.rst ├── conf.py ├── converse │ ├── code │ │ ├── cth-tutorial │ │ │ ├── Makefile │ │ │ └── pgm.C │ │ ├── msgs │ │ │ ├── Makefile │ │ │ └── interNodeMsg.C │ │ └── pingpong.pseudo │ └── manual.rst ├── convext │ └── manual.rst ├── debugger │ ├── figs │ │ ├── arrayelement.png │ │ ├── convert.sh │ │ ├── memoryInspector.png │ │ ├── memoryLeaking.png │ │ ├── memoryStatistics.png │ │ ├── memoryView.png │ │ ├── menu.png │ │ ├── snapshot1.png │ │ ├── snapshot2.png │ │ ├── snapshot3.png │ │ ├── snapshot4-crop.png │ │ ├── snapshot4.png │ │ ├── test_output │ │ └── test_output1 │ └── manual.rst ├── doxygen │ ├── Makefile │ ├── README │ ├── charm.conf │ ├── header.html │ ├── index.html │ └── src │ │ ├── code_guidelines.C │ │ └── main_page.C ├── f90charm │ └── manual.rst ├── faq │ └── manual.rst ├── index.rst ├── libraries │ └── manual.rst ├── license.rst ├── mblock │ ├── fig │ │ ├── decompose.fig │ │ ├── decompose.png │ │ ├── ghostwidth.fig │ │ ├── ghostwidth.png │ │ ├── indexing.fig │ │ ├── indexing.png │ │ ├── nodeloc.fig │ │ ├── nodeloc.pdf │ │ ├── terminology.fig │ │ └── terminology.png │ └── manual.rst ├── parfum │ ├── fig │ │ ├── parfum_structure.graffle │ │ └── parfum_structure.png │ └── manual.rst ├── pose │ ├── figures │ │ ├── base_struct.fig │ │ ├── newsys.fig │ │ ├── oldsys.fig │ │ ├── oopdex.fig │ │ ├── opt_struct.fig │ │ └── pose_struct.fig │ └── manual.rst ├── projections │ ├── fig │ │ ├── NoiseMiner1.png │ │ ├── NoiseMiner2.png │ │ ├── animation.png │ │ ├── apoa1_128_userEventsView.png │ │ ├── apoa1_512_CommProcessorProfile.png │ │ ├── apoa1_512_CommTimeProfile.png │ │ ├── apoa1_512_outlierWithClusters.png │ │ ├── apoa1_512_overview.png │ │ ├── apoa1_512_overviewEPColored.png │ │ ├── commhistogram.png │ │ ├── front-with-summary.png │ │ ├── graph.png │ │ ├── histogram.png │ │ ├── mainwindow.png │ │ ├── outlier_dialog.jpg │ │ ├── overview.png │ │ ├── performancecounters.png │ │ ├── piechart.png │ │ ├── standard_dialog.png │ │ ├── timeline.png │ │ ├── timeprofile.png │ │ ├── usageprofile.png │ │ ├── userevent.png │ │ └── viewlog.png │ └── manual.rst ├── quickstart.rst ├── requirements.txt └── tcharm │ └── manual.rst ├── examples ├── Makefile ├── ParFUM │ ├── 2Dexample │ │ ├── Makefile │ │ ├── mesh1.node │ │ ├── mesh1.tri │ │ ├── pgm.C │ │ └── pgm.h │ ├── Makefile │ ├── TOPS_TorusTest │ │ ├── Makefile │ │ ├── input.txt │ │ ├── input2.txt │ │ └── main.C │ ├── TOPS_simple2D │ │ ├── Makefile │ │ └── pgm.C │ ├── billion2D │ │ ├── Makefile │ │ ├── pgm.C │ │ ├── pgm.h │ │ ├── run.qsub │ │ ├── vector2d.h │ │ ├── xxx.1.ele │ │ ├── xxx.1.node │ │ └── xxx.poly │ ├── globalExample │ │ ├── Makefile │ │ ├── pgm.C │ │ └── pgm.h │ └── simple2D │ │ ├── Makefile │ │ ├── README │ │ ├── cst_nl.C │ │ ├── pgm.C │ │ ├── pgm.h │ │ ├── vector2d.h │ │ ├── xxx.1.ele │ │ ├── xxx.1.node │ │ └── xxx.poly ├── ampi │ ├── Cjacobi3D │ │ ├── Makefile │ │ ├── jacobi-cpp.C │ │ ├── jacobi-get.C │ │ └── jacobi.C │ ├── Makefile │ ├── creduce │ │ ├── Makefile │ │ └── test.C │ └── cuda │ │ ├── Makefile │ │ └── simple │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── simple-cuda.cu │ │ └── simple.C ├── amr │ ├── cfd │ │ ├── Makefile │ │ ├── cfd.h │ │ ├── cfdAMR.C │ │ ├── cfdAMR.ci │ │ └── cfdAMR.h │ ├── jacobi2D │ │ ├── Makefile │ │ ├── jacobi2DAMR.C │ │ ├── jacobi2DAMR.ci │ │ └── jacobi2DAMR.h │ └── jacobi2Dthesis │ │ ├── Makefile │ │ ├── jacobi2DAMR.C │ │ ├── jacobi2DAMR.ci │ │ └── jacobi2DAMR.h ├── charm++ │ ├── AMPI-interop │ │ ├── AmpiInterop.C │ │ ├── AmpiInterop.ci │ │ ├── AmpiInterop.h │ │ ├── Makefile │ │ ├── README │ │ ├── exampleMpi.C │ │ ├── hello.C │ │ └── hello.ci │ ├── Makefile │ ├── Molecular2D │ │ ├── Compute.C │ │ ├── Compute.h │ │ ├── Makefile │ │ ├── Patch.C │ │ ├── Patch.ci │ │ ├── Patch.h │ │ └── common.h │ ├── NQueen │ │ ├── Makefile │ │ ├── counter.C │ │ ├── counter.ci │ │ ├── counter.h │ │ ├── main.C │ │ ├── main.ci │ │ ├── main.h │ │ ├── nqueen.C │ │ └── nqueen.h │ ├── PICS │ │ └── ping │ │ │ ├── Makefile │ │ │ ├── ping.C │ │ │ └── ping.ci │ ├── PUP │ │ ├── HeapPUP │ │ │ ├── HeapObject.h │ │ │ ├── Makefile │ │ │ ├── SimplePUP.C │ │ │ ├── SimplePUP.ci │ │ │ └── SimplePUP.h │ │ ├── Makefile │ │ ├── README │ │ ├── STLPUP │ │ │ ├── HeapObjectSTL.h │ │ │ ├── Makefile │ │ │ ├── SimplePUP.C │ │ │ ├── SimplePUP.ci │ │ │ └── SimplePUP.h │ │ ├── SimpleObject.h │ │ ├── SimplePUP.C │ │ ├── SimplePUP.ci │ │ ├── SimplePUP.h │ │ ├── pupDisk │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── pupDisk.C │ │ │ ├── pupDisk.ci │ │ │ ├── pupDisk.h │ │ │ └── someData.h │ │ └── seekBlock │ │ │ ├── Makefile │ │ │ ├── seek_block.C │ │ │ ├── seek_block.ci │ │ │ └── seek_block.h │ ├── TRAM │ │ ├── Makefile │ │ ├── aggregateRandomAccessArray │ │ │ ├── Makefile │ │ │ ├── randomAccess.C │ │ │ └── randomAccess.ci │ │ ├── aggregateRandomAccessGroup │ │ │ ├── Makefile │ │ │ ├── randomAccess.C │ │ │ └── randomAccess.ci │ │ ├── randomAccessArray │ │ │ ├── Makefile │ │ │ ├── randomAccess.C │ │ │ └── randomAccess.ci │ │ └── randomAccessGroup │ │ │ ├── Makefile │ │ │ ├── randomAccess.C │ │ │ └── randomAccess.ci │ ├── X10 │ │ ├── Makefile │ │ ├── X10_lib.C │ │ ├── X10_lib.ci │ │ ├── X10_lib.h │ │ └── X10_test2.C │ ├── allGather │ │ ├── Makefile │ │ ├── user.C │ │ ├── user.ci │ │ └── user.h │ ├── allToAll │ │ ├── Makefile │ │ ├── allToAll.C │ │ └── allToAll.ci │ ├── array │ │ ├── Makefile │ │ ├── pgm.C │ │ └── pgm.ci │ ├── array_map │ │ ├── Makefile │ │ ├── array_map.C │ │ └── array_map.ci │ ├── arraysection │ │ ├── Makefile │ │ ├── check1d.C │ │ ├── check1d.ci │ │ ├── check2d.C │ │ └── check2d.ci │ ├── ckcallback │ │ ├── Makefile │ │ ├── reftest.C │ │ └── reftest.ci │ ├── ckloop │ │ ├── dotProd │ │ │ ├── Makefile │ │ │ ├── dotProd.C │ │ │ └── dotProd.ci │ │ ├── fft-trans │ │ │ ├── Makefile │ │ │ ├── README.cklooplib │ │ │ ├── fft1d.C │ │ │ ├── fft1d.ci │ │ │ ├── fft_bench.cpp │ │ │ ├── fft_ref.cpp │ │ │ ├── fftmacro.h │ │ │ ├── fileio.h │ │ │ ├── test │ │ │ └── test.sh │ │ └── simpleLoopBench │ │ │ ├── Makefile │ │ │ ├── hello.C │ │ │ ├── hello.ci │ │ │ └── hello.h │ ├── cksequence │ │ ├── Makefile │ │ ├── cksequence_test.C │ │ └── cksequence_test.ci │ ├── commlib │ │ ├── Makefile │ │ └── multicast │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── pgm.C │ │ │ ├── pgm.ci │ │ │ └── pgm.h │ ├── completion │ │ ├── Makefile │ │ ├── comp.C │ │ └── comp.ci │ ├── cuda │ │ ├── Makefile │ │ ├── busywait │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── busywait.C │ │ │ ├── busywait.ci │ │ │ └── busywait.cu │ │ ├── gpudirect │ │ │ ├── jacobi2d │ │ │ │ ├── Makefile │ │ │ │ ├── jacobi2d.C │ │ │ │ ├── jacobi2d.ci │ │ │ │ ├── jacobi2d.cu │ │ │ │ └── jacobi2d.h │ │ │ ├── jacobi3d │ │ │ │ ├── Makefile │ │ │ │ ├── jacobi3d.C │ │ │ │ ├── jacobi3d.ci │ │ │ │ ├── jacobi3d.cu │ │ │ │ └── jacobi3d.h │ │ │ ├── persistent │ │ │ │ ├── Makefile │ │ │ │ ├── persistent.C │ │ │ │ ├── persistent.ci │ │ │ │ └── persistent.cu │ │ │ ├── sdag │ │ │ │ ├── Makefile │ │ │ │ ├── sdag.C │ │ │ │ ├── sdag.ci │ │ │ │ └── sdag.cu │ │ │ └── verify │ │ │ │ ├── Makefile │ │ │ │ ├── verify.C │ │ │ │ ├── verify.ci │ │ │ │ └── verify.cu │ │ ├── hello │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── hello.C │ │ │ ├── hello.ci │ │ │ └── hello.cu │ │ ├── matmul │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── matmul.C │ │ │ ├── matmul.ci │ │ │ └── matmul.cu │ │ ├── mempool │ │ │ ├── Makefile │ │ │ ├── mempool.C │ │ │ ├── mempool.ci │ │ │ └── mempool.cu │ │ ├── qdtest │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── qdtest.C │ │ │ ├── qdtest.ci │ │ │ └── qdtest.cu │ │ ├── resume_thread │ │ │ ├── Makefile │ │ │ ├── hello.C │ │ │ ├── hello.ci │ │ │ └── hello.cu │ │ ├── stencil2d │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── stencil2d.C │ │ │ ├── stencil2d.ci │ │ │ └── stencil2d.cu │ │ └── vecadd │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── vecadd.C │ │ │ ├── vecadd.ci │ │ │ └── vecadd.cu │ ├── f90charm │ │ ├── Makefile │ │ ├── hello │ │ │ ├── Makefile │ │ │ ├── hello.C │ │ │ ├── hello.ci │ │ │ └── hellof.f90 │ │ ├── hello2D │ │ │ ├── Makefile │ │ │ ├── hello.C │ │ │ ├── hello.ci │ │ │ └── hellof.f90 │ │ ├── ldbDemo │ │ │ ├── Makefile │ │ │ ├── ldbDemo.C │ │ │ ├── ldbDemo.ci │ │ │ └── ldbDemof.f90 │ │ ├── ldbRedDemo │ │ │ ├── Makefile │ │ │ ├── ldbRedDemo.C │ │ │ ├── ldbRedDemo.ci │ │ │ └── ldbRedDemof.f90 │ │ └── sdag-case │ │ │ ├── Makefile │ │ │ ├── caseTest.C │ │ │ ├── caseTest.ci │ │ │ └── caseTestf.f90 │ ├── fib │ │ ├── Makefile │ │ ├── fib.C │ │ └── fib.ci │ ├── future │ │ ├── Makefile │ │ ├── fib.C │ │ └── fib.ci │ ├── gaussSeidel3D │ │ ├── Makefile │ │ ├── gaussSeidel3d.C │ │ └── gaussSeidel3d.ci │ ├── groupsection │ │ ├── Makefile │ │ ├── check.C │ │ └── check.ci │ ├── hello │ │ ├── 1darray │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── 1darraymsg │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── 3darray │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── 3dmultiarrays │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── 4darray │ │ │ ├── Makefile │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── Makefile │ │ ├── README │ │ ├── darray │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── dgroup │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── dllarray │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── fancyarray │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── group │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── hello.C │ │ ├── hello.ci │ │ ├── hello.h │ │ ├── local │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── nodegroup │ │ │ ├── Makefile │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── sdag │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── stl_array │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ └── xarraySection │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.C │ │ │ └── hello.ci │ ├── histogram_group │ │ ├── Makefile │ │ ├── pgm.C │ │ └── pgm.ci │ ├── immediateEntryMethod │ │ ├── Makefile │ │ ├── immediateEM.C │ │ └── immediateEM.ci │ ├── integrate │ │ ├── Makefile │ │ ├── README │ │ ├── pgm.C │ │ ├── pgm.ci │ │ └── pgm.h │ ├── integrateArray │ │ ├── Makefile │ │ ├── README │ │ ├── pgm.C │ │ ├── pgm.ci │ │ └── pgm.h │ ├── integratePUPable │ │ ├── Makefile │ │ ├── README │ │ ├── pgm.C │ │ ├── pgm.ci │ │ └── pgm.h │ ├── jacobi2d-1d-decomposition │ │ ├── Makefile │ │ ├── README │ │ ├── jacobi1d.C │ │ └── jacobi1d.ci │ ├── jacobi2d-2d-decomposition │ │ ├── Makefile │ │ ├── README │ │ ├── jacobi2d.C │ │ └── jacobi2d.ci │ ├── jacobi3d-2d-decomposition │ │ ├── Makefile │ │ ├── README │ │ ├── jacobi3d.C │ │ └── jacobi3d.ci │ ├── kmeans │ │ ├── Makefile │ │ ├── kmeans.C │ │ ├── kmeans.ci │ │ └── util.h │ ├── leanmd │ │ ├── Cell.C │ │ ├── Cell.h │ │ ├── Compute.C │ │ ├── Compute.h │ │ ├── Main.C │ │ ├── Main.h │ │ ├── Makefile │ │ ├── README │ │ ├── defs.h │ │ ├── leanmd.ci │ │ └── physics.h │ ├── load_balancing │ │ ├── Makefile │ │ ├── hello │ │ │ ├── Makefile │ │ │ ├── hello.C │ │ │ └── hello.ci │ │ ├── kNeighbor │ │ │ ├── Makefile │ │ │ ├── kNeighbor.C │ │ │ └── kNeighbor.ci │ │ └── stencil3d │ │ │ ├── Makefile │ │ │ ├── stencil3d.C │ │ │ └── stencil3d.ci │ ├── lvServer │ │ ├── Makefile │ │ ├── README.txt │ │ ├── lvServer.C │ │ ├── lvServer.ci │ │ └── run_server.sh │ ├── manyToMany │ │ ├── Makefile │ │ ├── manyToMany.C │ │ └── manyToMany.ci │ ├── matmul │ │ ├── Makefile │ │ ├── matmul.C │ │ └── matmul.ci │ ├── mpi-charmcollide │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── collidelib │ │ │ ├── Makefile │ │ │ ├── mpiCollisionClient.h │ │ │ ├── mpicollide.C │ │ │ ├── mpicollide.ci │ │ │ └── mpicollide.h │ │ └── multirun.cpp │ ├── mpi-coexist │ │ ├── Makefile │ │ ├── libs │ │ │ ├── Makefile │ │ │ ├── hello │ │ │ │ ├── Makefile │ │ │ │ ├── hello.C │ │ │ │ ├── hello.ci │ │ │ │ └── hello.h │ │ │ ├── hi │ │ │ │ ├── Makefile │ │ │ │ ├── hi.C │ │ │ │ ├── hi.ci │ │ │ │ └── hi.h │ │ │ └── kNeighbor │ │ │ │ ├── Makefile │ │ │ │ ├── kNeighbor.C │ │ │ │ ├── kNeighbor.ci │ │ │ │ └── kNeighbor.h │ │ ├── multirun.cpp │ │ └── multirun_time.cpp │ ├── namespace │ │ ├── A.C │ │ ├── A.ci │ │ ├── A.h │ │ ├── B.C │ │ ├── B.ci │ │ ├── B.h │ │ ├── C.C │ │ ├── C.ci │ │ ├── C.h │ │ ├── Inherit.C │ │ ├── Inherit.ci │ │ ├── Inherit.h │ │ ├── Makefile │ │ └── README │ ├── openmp │ │ └── simpleLoopBench │ │ │ ├── Makefile │ │ │ ├── hello.C │ │ │ ├── hello.ci │ │ │ └── hello.h │ ├── piArray │ │ ├── Makefile │ │ ├── pgm.C │ │ ├── pgm.ci │ │ └── pgm.h │ ├── prio │ │ ├── Makefile │ │ ├── pgm.C │ │ └── pgm.ci │ ├── reductions │ │ ├── Makefile │ │ ├── allReduce │ │ │ ├── AllReduce.C │ │ │ ├── AllReduce.ci │ │ │ ├── AllReduce.h │ │ │ └── Makefile │ │ ├── simple_reduction │ │ │ ├── Makefile │ │ │ ├── simple_reduction.C │ │ │ ├── simple_reduction.ci │ │ │ └── simple_reduction.h │ │ └── typed_reduction │ │ │ ├── Makefile │ │ │ ├── TypedReduction.C │ │ │ ├── TypedReduction.ci │ │ │ └── TypedReduction.h │ ├── ring │ │ ├── Makefile │ │ ├── ring.C │ │ ├── ring.ci │ │ └── ring.h │ ├── rings │ │ ├── Makefile │ │ ├── rings.C │ │ ├── rings.ci │ │ └── rings.h │ ├── satisfiability │ │ ├── Makefile │ │ ├── TNM │ │ │ ├── TNM.C │ │ │ ├── TNM.h │ │ │ ├── TNM.pdf │ │ │ ├── adaptnoisebis1at5.C │ │ │ └── inputbis.C │ │ ├── example │ │ │ ├── example.cnf │ │ │ ├── example_100.cnf │ │ │ ├── example_1000.cnf │ │ │ ├── example_4000.cnf │ │ │ ├── example_6000.cnf │ │ │ ├── example_8000.cnf │ │ │ └── example_simple.cnf │ │ ├── main.C │ │ ├── main.ci │ │ ├── main.h │ │ ├── minisat │ │ │ ├── Solver.C │ │ │ ├── Solver.h │ │ │ ├── SolverTypes.h │ │ │ └── mtl │ │ │ │ ├── Alg.h │ │ │ │ ├── BasicHeap.h │ │ │ │ ├── BoxedVec.h │ │ │ │ ├── Map.h │ │ │ │ ├── Queue.h │ │ │ │ ├── Sort.h │ │ │ │ ├── Vec.h │ │ │ │ └── minisatHeap.h │ │ ├── par_Solver.C │ │ ├── par_Solver.h │ │ ├── par_SolverTypes.h │ │ └── verify │ │ │ ├── Makefile │ │ │ └── verify.C │ ├── shared_runtimes │ │ ├── kokkos │ │ │ ├── Makefile.common │ │ │ ├── hello │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── hello.C │ │ │ │ └── hello.ci │ │ │ └── vecadd │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── vecadd.ci │ │ │ │ ├── vecadd.h │ │ │ │ ├── vecadd_charm.C │ │ │ │ └── vecadd_kokkos.cpp │ │ ├── openmp-offload │ │ │ └── vecadd │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── vecadd.C │ │ │ │ └── vecadd.ci │ │ └── raja │ │ │ ├── Makefile.common │ │ │ ├── hello │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hello.ci │ │ │ ├── hello.h │ │ │ ├── hello_charm.C │ │ │ └── hello_raja.cpp │ │ │ └── vecadd │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── vecadd.ci │ │ │ ├── vecadd.h │ │ │ ├── vecadd_charm.C │ │ │ └── vecadd_raja.cpp │ ├── shrink_expand │ │ ├── Makefile │ │ ├── README │ │ ├── client.C │ │ └── jacobi2d-iter │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── jacobi2d.C │ │ │ └── jacobi2d.ci │ ├── speeds │ │ ├── Makefile │ │ ├── speed.C │ │ ├── speed.ci │ │ └── speed.h │ ├── state_space_searchengine │ │ ├── 3SAT │ │ │ ├── Makefile │ │ │ ├── defines.h │ │ │ ├── main.C │ │ │ ├── main.ci │ │ │ ├── minisat │ │ │ │ ├── Makefile │ │ │ │ ├── Solver.C │ │ │ │ ├── Solver.h │ │ │ │ ├── SolverTypes.h │ │ │ │ ├── depend.mk │ │ │ │ └── mtl │ │ │ │ │ ├── Alg.h │ │ │ │ │ ├── BasicHeap.h │ │ │ │ │ ├── BoxedVec.h │ │ │ │ │ ├── Map.h │ │ │ │ │ ├── Queue.h │ │ │ │ │ ├── Sort.h │ │ │ │ │ ├── Vec.h │ │ │ │ │ ├── minisatHeap.h │ │ │ │ │ └── template.mk │ │ │ ├── searchEngineAPI.C │ │ │ ├── searchEngineAPI.h │ │ │ ├── soln-checker.py │ │ │ ├── solvers_convertor.C │ │ │ ├── solvers_convertor.h │ │ │ ├── uf125-01.cnf │ │ │ └── uf200-055.cnf │ │ ├── BalancedTree │ │ │ ├── Makefile │ │ │ ├── main.C │ │ │ ├── main.ci │ │ │ └── searchEngineAPI.C │ │ ├── Hamiltonian_SE │ │ │ ├── Makefile │ │ │ ├── data │ │ │ │ ├── alb1000.hcp │ │ │ │ ├── ham300.hcp │ │ │ │ ├── imp0020.hcp │ │ │ │ ├── imp0048.hcp │ │ │ │ ├── imp0105.hcp │ │ │ │ ├── knights-tour-30.hcp │ │ │ │ ├── knights-tour-48.hcp │ │ │ │ ├── mytest.hcp │ │ │ │ └── sgl0010.hcp │ │ │ ├── hamiltonian.h │ │ │ ├── main.C │ │ │ ├── main.ci │ │ │ ├── searchEngineAPI.C │ │ │ └── searchEngineAPI.h │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NQueens │ │ │ ├── Makefile │ │ │ ├── main.C │ │ │ ├── main.ci │ │ │ └── searchEngineAPI.C │ │ ├── README │ │ ├── TSP_SE │ │ │ ├── Makefile │ │ │ ├── data │ │ │ │ └── dj38.tsp │ │ │ ├── exampleTsp.h │ │ │ ├── main.C │ │ │ ├── main.ci │ │ │ └── searchEngineAPI.C │ │ └── UnbalancedTreeSearch_SE │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── main.C │ │ │ ├── main.ci │ │ │ ├── rng │ │ │ ├── alfg.c │ │ │ ├── alfg.h │ │ │ ├── brg_endian.h │ │ │ ├── brg_sha1.c │ │ │ ├── brg_sha1.h │ │ │ ├── brg_types.h │ │ │ └── rng.h │ │ │ ├── sample_trees.sh │ │ │ ├── searchEngineAPI.C │ │ │ ├── uts.C │ │ │ └── uts.h │ ├── sync_square │ │ ├── Makefile │ │ ├── sync_square.C │ │ ├── sync_square.ci │ │ └── sync_square.h │ ├── threaded_ring │ │ ├── Makefile │ │ ├── threaded_ring.C │ │ ├── threaded_ring.ci │ │ └── threaded_ring.h │ ├── topology │ │ ├── jacobi2d │ │ │ ├── Makefile │ │ │ ├── jacobi2d.C │ │ │ └── jacobi2d.ci │ │ ├── jacobi3d │ │ │ ├── Makefile │ │ │ ├── jacobi3d.C │ │ │ └── jacobi3d.ci │ │ ├── matmul2d │ │ │ ├── Makefile │ │ │ ├── matmul2d.C │ │ │ ├── matmul2d.ci │ │ │ └── matmul2d.h │ │ └── matmul3d │ │ │ ├── Makefile │ │ │ ├── matmul3d.C │ │ │ ├── matmul3d.ci │ │ │ └── matmul3d.h │ ├── user-driven-interop │ │ ├── Makefile │ │ ├── hello_user.ci │ │ └── hello_user.cpp │ ├── wave2d │ │ ├── Makefile │ │ ├── paper.tex │ │ ├── runserver.sh │ │ ├── screenshot.png │ │ ├── wave2d.C │ │ └── wave2d.ci │ ├── whenidle │ │ ├── Makefile │ │ ├── idlework.C │ │ ├── idlework.ci │ │ └── idlework.h │ └── zerocopy │ │ ├── Makefile │ │ ├── direct_api │ │ ├── Makefile │ │ ├── misc │ │ │ ├── Makefile │ │ │ └── zcpy_immediate │ │ │ │ ├── Makefile │ │ │ │ ├── zcpy_immediate.C │ │ │ │ └── zcpy_immediate.ci │ │ ├── prereg │ │ │ ├── Makefile │ │ │ ├── get_put_pingpong │ │ │ │ ├── Makefile │ │ │ │ ├── get_put_pingpong.C │ │ │ │ └── get_put_pingpong.ci │ │ │ ├── simple_get │ │ │ │ ├── Makefile │ │ │ │ ├── simple_get.C │ │ │ │ └── simple_get.ci │ │ │ └── simple_put │ │ │ │ ├── Makefile │ │ │ │ ├── simple_put.C │ │ │ │ └── simple_put.ci │ │ ├── reg │ │ │ ├── Makefile │ │ │ ├── get_put_pingpong │ │ │ │ ├── Makefile │ │ │ │ ├── get_put_pingpong.C │ │ │ │ └── get_put_pingpong.ci │ │ │ ├── simple_get │ │ │ │ ├── Makefile │ │ │ │ ├── simple_get.C │ │ │ │ └── simple_get.ci │ │ │ └── simple_put │ │ │ │ ├── Makefile │ │ │ │ ├── simple_put.C │ │ │ │ └── simple_put.ci │ │ └── unreg │ │ │ ├── Makefile │ │ │ ├── get_put_pingpong │ │ │ ├── Makefile │ │ │ ├── get_put_pingpong.C │ │ │ └── get_put_pingpong.ci │ │ │ ├── simple_get │ │ │ ├── Makefile │ │ │ ├── simple_get.C │ │ │ └── simple_get.ci │ │ │ └── simple_put │ │ │ ├── Makefile │ │ │ ├── simple_put.C │ │ │ └── simple_put.ci │ │ ├── entry_method_api │ │ ├── Makefile │ │ ├── misc │ │ │ ├── Makefile │ │ │ └── simpleVec │ │ │ │ ├── Makefile │ │ │ │ ├── simpleZCVec.C │ │ │ │ └── simpleZCVec.ci │ │ ├── prereg │ │ │ ├── Makefile │ │ │ ├── simpleZeroCopy │ │ │ │ ├── Makefile │ │ │ │ ├── simpleZeroCopy.C │ │ │ │ └── simpleZeroCopy.ci │ │ │ └── stencil3d │ │ │ │ ├── Makefile │ │ │ │ ├── stencil3d.C │ │ │ │ └── stencil3d.ci │ │ ├── reg │ │ │ ├── Makefile │ │ │ ├── simpleZeroCopy │ │ │ │ ├── Makefile │ │ │ │ ├── simpleZeroCopy.C │ │ │ │ └── simpleZeroCopy.ci │ │ │ └── stencil3d │ │ │ │ ├── Makefile │ │ │ │ ├── stencil3d.C │ │ │ │ └── stencil3d.ci │ │ └── unreg │ │ │ ├── Makefile │ │ │ ├── simpleZeroCopy │ │ │ ├── Makefile │ │ │ ├── simpleZeroCopy.C │ │ │ └── simpleZeroCopy.ci │ │ │ └── stencil3d │ │ │ ├── Makefile │ │ │ ├── stencil3d.C │ │ │ └── stencil3d.ci │ │ ├── entry_method_bcast_api │ │ ├── Makefile │ │ ├── prereg │ │ │ ├── Makefile │ │ │ └── simpleBcast │ │ │ │ ├── Makefile │ │ │ │ ├── simpleBcast.C │ │ │ │ └── simpleBcast.ci │ │ ├── reg │ │ │ ├── Makefile │ │ │ └── simpleBcast │ │ │ │ ├── Makefile │ │ │ │ ├── simpleBcast.C │ │ │ │ └── simpleBcast.ci │ │ └── unreg │ │ │ ├── Makefile │ │ │ └── simpleBcast │ │ │ ├── Makefile │ │ │ ├── simpleBcast.C │ │ │ └── simpleBcast.ci │ │ ├── entry_method_bcast_post_api │ │ ├── Makefile │ │ ├── prereg │ │ │ ├── Makefile │ │ │ └── simpleBcastPost │ │ │ │ ├── Makefile │ │ │ │ ├── simpleBcastPost.C │ │ │ │ └── simpleBcastPost.ci │ │ ├── reg │ │ │ ├── Makefile │ │ │ └── simpleBcastPost │ │ │ │ ├── Makefile │ │ │ │ ├── simpleBcastPost.C │ │ │ │ └── simpleBcastPost.ci │ │ └── unreg │ │ │ ├── Makefile │ │ │ └── simpleBcastPost │ │ │ ├── Makefile │ │ │ ├── simpleBcastPost.C │ │ │ └── simpleBcastPost.ci │ │ ├── entry_method_post_api │ │ ├── Makefile │ │ ├── prereg │ │ │ ├── Makefile │ │ │ ├── nodegroupTest │ │ │ │ ├── Makefile │ │ │ │ ├── nodegroupTest.C │ │ │ │ └── nodegroupTest.ci │ │ │ └── simpleZeroCopy │ │ │ │ ├── Makefile │ │ │ │ ├── simpleZeroCopy.C │ │ │ │ └── simpleZeroCopy.ci │ │ ├── reg │ │ │ ├── Makefile │ │ │ ├── multiplePostedBuffers │ │ │ │ ├── Makefile │ │ │ │ ├── multiplePostedBuffers.C │ │ │ │ └── multiplePostedBuffers.ci │ │ │ ├── nodegroupTest │ │ │ │ ├── Makefile │ │ │ │ ├── nodegroupTest.C │ │ │ │ └── nodegroupTest.ci │ │ │ └── simpleZeroCopy │ │ │ │ ├── Makefile │ │ │ │ ├── simpleZeroCopy.C │ │ │ │ └── simpleZeroCopy.ci │ │ └── unreg │ │ │ ├── Makefile │ │ │ ├── nodegroupTest │ │ │ ├── Makefile │ │ │ ├── nodegroupTest.C │ │ │ └── nodegroupTest.ci │ │ │ └── simpleZeroCopy │ │ │ ├── Makefile │ │ │ ├── simpleZeroCopy.C │ │ │ └── simpleZeroCopy.ci │ │ └── large_readonly │ │ ├── Makefile │ │ ├── readonly.C │ │ └── readonly.ci ├── collide │ ├── Makefile │ ├── collidecharm │ │ ├── Makefile │ │ ├── hello.C │ │ └── hello.ci │ └── collidethread │ │ ├── Makefile │ │ ├── hello.C │ │ └── hello.ci ├── common.mk ├── converse │ ├── Makefile │ └── ccstest │ │ ├── Makefile │ │ ├── README │ │ ├── client.C │ │ └── server.C ├── multiphaseSharedArrays │ ├── Makefile │ ├── Makefile_common │ ├── histogram │ │ ├── Makefile │ │ ├── headers │ │ ├── histogram.C │ │ ├── histogram.ci │ │ └── run.sh │ ├── matmul │ │ ├── Makefile │ │ ├── mm_sequential.C │ │ ├── nepp.h │ │ ├── params.h │ │ ├── run.sh │ │ ├── sequential │ │ │ ├── Makefile │ │ │ ├── maxflops.c │ │ │ ├── mm1.C │ │ │ ├── mm1mkn.C │ │ │ ├── mm2.C │ │ │ ├── mm2mkn.C │ │ │ └── params.h │ │ ├── t2d.C │ │ ├── t2d.ci │ │ ├── test.C │ │ └── test.ci │ ├── moldyn │ │ ├── Makefile │ │ ├── moldyn.C │ │ ├── moldyn.ci │ │ ├── nepp.h │ │ └── params.h │ ├── simpleTestVarsize │ │ ├── Makefile │ │ ├── params.h │ │ ├── t3.C │ │ ├── t3.ci │ │ └── testV.C │ └── simpletest │ │ ├── Makefile │ │ ├── params.h │ │ ├── run.sh │ │ ├── t3.C │ │ └── t3.ci └── pose │ ├── ASIM │ ├── Makefile │ ├── Worker.C │ ├── Worker.ci │ ├── Worker.h │ ├── pgm.C │ ├── pgm.ci │ └── pgm.h │ ├── ChunkSim │ ├── Makefile │ ├── Worker.C │ ├── Worker.ci │ ├── Worker.h │ ├── pgm.C │ ├── pgm.ci │ └── pgm.h │ ├── LBSim │ ├── Makefile │ ├── README │ ├── SchedSIM.C │ ├── SchedSIM.ci │ ├── SchedSIM.h │ ├── edgelist.c │ ├── generate.c │ ├── graph16C5 │ │ ├── graph0 │ │ ├── graph1 │ │ ├── graph10 │ │ ├── graph11 │ │ ├── graph12 │ │ ├── graph13 │ │ ├── graph14 │ │ ├── graph15 │ │ ├── graph2 │ │ ├── graph3 │ │ ├── graph4 │ │ ├── graph5 │ │ ├── graph6 │ │ ├── graph7 │ │ ├── graph8 │ │ └── graph9 │ ├── plotsim.p │ ├── queueing.h │ ├── sample-data1.txt │ ├── sample-graph.pdf │ ├── sample-graph.ps │ ├── sample-out1.txt │ ├── sample-out2.txt │ ├── saveplot │ ├── sched.C │ ├── sched.ci │ ├── sched.h │ ├── stat-anly.c │ ├── statcoll.c │ ├── topology.C │ ├── topology.h │ └── typedefs.h │ ├── MiniNet │ ├── Makefile │ ├── Node.C │ ├── Node.ci │ ├── Node.h │ ├── mininet.C │ ├── mininet.ci │ └── mininet.h │ ├── PHOLD │ ├── Makefile │ ├── README │ ├── Worker.C │ ├── Worker.ci │ ├── Worker.h │ ├── phold.C │ ├── phold.ci │ └── phold.h │ ├── PatternGen │ ├── Makefile │ ├── README │ ├── Worker.C │ ├── Worker.ci │ ├── Worker.h │ ├── defs.h │ ├── pgm.C │ ├── pgm.ci │ └── pgm.h │ ├── Ring │ ├── Makefile │ ├── Worker.C │ ├── Worker.ci │ ├── Worker.h │ ├── pgm.C │ ├── pgm.ci │ └── pgm.h │ └── SimBenchmark │ ├── Makefile │ ├── Worker.C │ ├── Worker.ci │ ├── Worker.h │ ├── pgm.C │ ├── pgm.ci │ └── pgm.h ├── package-tarball.sh ├── relink.script ├── smart-build.pl ├── src ├── QuickThreads │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── configure │ ├── copyright.h │ ├── doc │ │ └── qt.ps │ ├── md │ │ ├── axp.README │ │ ├── axp.h │ │ ├── axp.s │ │ ├── axp_b.s │ │ ├── hppa.h │ │ ├── hppa.s │ │ ├── hppa_b.s │ │ ├── i386.README │ │ ├── i386.h │ │ ├── i386.s │ │ ├── i386_b.s │ │ ├── ksr1.h │ │ ├── ksr1.s │ │ ├── ksr1_b.s │ │ ├── m88k.README │ │ ├── m88k.c │ │ ├── m88k.h │ │ ├── m88k.s │ │ ├── m88k_b.s │ │ ├── mips-irix5.s │ │ ├── mips.h │ │ ├── mips.s │ │ ├── mips_b.s │ │ ├── mipspro.h │ │ ├── mipspro.s │ │ ├── mipspro_b.s │ │ ├── setjmp.c │ │ ├── setjmp64.c │ │ ├── setjmp64_.c │ │ ├── setjmp_b.c │ │ ├── setjmp_d.h │ │ ├── setjmp_m.c │ │ ├── setjmp_u.h │ │ ├── sjalloca.c │ │ ├── sparc.h │ │ ├── sparc.s │ │ ├── sparc_b.s │ │ ├── stub.c │ │ ├── stub.h │ │ ├── stub_b.c │ │ ├── t3e.h │ │ ├── t3e.s │ │ ├── t3e_b.s │ │ ├── vax.h │ │ ├── vax.s │ │ └── vax_b.s │ ├── meas.c │ ├── mkfiles │ │ ├── aix │ │ ├── aix-light │ │ ├── aix-light64 │ │ ├── aix32-gcc │ │ ├── aix64 │ │ ├── aix64-light │ │ ├── asci-red │ │ ├── axp-gcc │ │ ├── axp-osf1-cc │ │ ├── axp-osf2-cc │ │ ├── convex │ │ ├── cray-t3e-cc │ │ ├── generic │ │ ├── generic-light │ │ ├── generic-mic64 │ │ ├── generic64 │ │ ├── generic64-light │ │ ├── generic_alloca │ │ ├── hpux-cc │ │ ├── hpux-gcc │ │ ├── i386-gcc │ │ ├── i386-gcc-ss │ │ ├── irix5-cc │ │ ├── irix5-gcc │ │ ├── ksr1-cc │ │ ├── linux-smp │ │ ├── linux-smp-32 │ │ ├── meerkat │ │ ├── none │ │ ├── origin │ │ ├── solaris-cc │ │ ├── solaris-cc64 │ │ ├── solaris-gcc │ │ ├── stub-gcc │ │ ├── sunos-gcc │ │ └── vax-cc │ ├── qt.c │ ├── qt.h │ ├── qtb.h │ ├── stp.c │ ├── stp.h │ └── time │ │ ├── README.time │ │ ├── assim │ │ ├── cswap │ │ ├── go │ │ ├── init │ │ ├── prim │ │ └── raw ├── arch │ ├── .gitignore │ ├── common │ │ ├── cc-clang.h │ │ ├── cc-clang.sh │ │ ├── cc-craycc.h │ │ ├── cc-craycc.sh │ │ ├── cc-gcc.h │ │ ├── cc-gcc.sh │ │ ├── cc-icc.h │ │ ├── cc-icc.sh │ │ ├── cc-iccstatic.h │ │ ├── cc-iccstatic.sh │ │ ├── cc-icx.h │ │ ├── cc-icx.sh │ │ ├── cc-mpiopts.sh │ │ ├── cc-msvc.h │ │ ├── cc-msvc.sh │ │ ├── cc-nvhpc.h │ │ ├── cc-nvhpc.sh │ │ ├── cc-pgcc.h │ │ ├── cc-pgcc.sh │ │ ├── cc-xlc.h │ │ ├── cc-xlc.sh │ │ ├── cc-xlc64.h │ │ ├── cc-xlc64.sh │ │ ├── conv-mach-common.h │ │ ├── conv-mach-craype.sh │ │ ├── conv-mach-cuda.h │ │ ├── conv-mach-cuda.sh │ │ ├── conv-mach-darwin.sh │ │ ├── conv-mach-flang.h │ │ ├── conv-mach-flang.sh │ │ ├── conv-mach-gfortran.h │ │ ├── conv-mach-gfortran.sh │ │ ├── conv-mach-ifort.h │ │ ├── conv-mach-ifort.sh │ │ ├── conv-mach-ifx.h │ │ ├── conv-mach-ifx.sh │ │ ├── conv-mach-nolb.h │ │ ├── conv-mach-nolb.sh │ │ ├── conv-mach-nvfortran.h │ │ ├── conv-mach-nvfortran.sh │ │ ├── conv-mach-omp.h │ │ ├── conv-mach-omp.sh │ │ ├── conv-mach-ooc.h │ │ ├── conv-mach-ooc.sh │ │ ├── conv-mach-papi.h │ │ ├── conv-mach-papi.sh │ │ ├── conv-mach-perftools.h │ │ ├── conv-mach-perftools.sh │ │ ├── conv-mach-persistent.h │ │ ├── conv-mach-persistent.sh │ │ ├── conv-mach-pgf90.h │ │ ├── conv-mach-pgf90.sh │ │ ├── conv-mach-syncft.sh │ │ ├── conv-mach-tsan.h │ │ ├── conv-mach-tsan.sh │ │ └── special.sh │ ├── cuda │ │ └── hybridAPI │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── buddy_allocator.cpp │ │ │ ├── buddy_allocator.h │ │ │ ├── devicemanager.h │ │ │ ├── gpumanager.h │ │ │ ├── hapi.h │ │ │ ├── hapi_functions.h │ │ │ ├── hapi_impl.cpp │ │ │ ├── hapi_impl.h │ │ │ └── hapi_nvtx.h │ ├── gni-crayxc │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── gni-crayxe │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── gni │ │ ├── Makefile.machine │ │ ├── charmrun │ │ ├── conv-common.h │ │ ├── conv-common.sh │ │ ├── conv-mach-hugepages.h │ │ ├── conv-mach-hugepages.sh │ │ ├── conv-mach-papi.h │ │ ├── conv-mach-papi.sh │ │ ├── conv-mach-pxshm.h │ │ ├── conv-mach-pxshm.sh │ │ ├── conv-mach-regularpages.h │ │ ├── conv-mach-regularpages.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach-syncft.h │ │ ├── conv-mach-xpmem.h │ │ ├── conv-mach-xpmem.sh │ │ ├── machine-onesided.C │ │ ├── machine-onesided.h │ │ ├── machine-persistent.C │ │ ├── machine-persistent.h │ │ └── machine.C │ ├── mpi-crayshasta │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi-crayxc │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi-crayxe │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi-darwin-arm8 │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi-darwin-x86_64 │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi-linux-arm7 │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi-linux-arm8 │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi-linux-i386 │ │ ├── conv-mach-gm.h │ │ ├── conv-mach-gm2.h │ │ ├── conv-mach-gm2.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi-linux-ppc64le │ │ ├── cc-mpicxx.h │ │ ├── cc-mpicxx.sh │ │ ├── cc-xlc64.h │ │ ├── cc-xlc64.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi-linux-x86_64 │ │ ├── cc-mpicxx.h │ │ ├── cc-mpicxx.sh │ │ ├── cc-pathscale.h │ │ ├── cc-pathscale.sh │ │ ├── conv-mach-gm2.h │ │ ├── conv-mach-gm2.sh │ │ ├── conv-mach-mic.h │ │ ├── conv-mach-mic.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi-win-x86_64 │ │ ├── charmrun │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── mpi │ │ ├── Makefile.machine │ │ ├── charmrun │ │ ├── conv-common.h │ │ ├── conv-common.sh │ │ ├── conv-mach-pthreads.h │ │ ├── conv-mach-pthreads.sh │ │ ├── conv-mach-syncft.h │ │ ├── machine-ctrlmsg.C │ │ ├── machine-onesided.C │ │ ├── machine-onesided.h │ │ └── machine.C │ ├── multicore-darwin-arm8 │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── multicore-darwin-x86_64 │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── multicore-linux-arm7 │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── multicore-linux-arm8 │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── multicore-linux-i386 │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── multicore-linux-ppc64le │ │ ├── cc-xlc.h │ │ ├── cc-xlc.sh │ │ ├── cc-xlc64.h │ │ ├── cc-xlc64.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── multicore-linux-x86_64 │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── multicore-win-x86_64 │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── multicore │ │ ├── charmrun │ │ └── gdir_link │ ├── netlrts-darwin-arm8 │ │ ├── conv-mach-pxshm.h │ │ ├── conv-mach-pxshm.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── netlrts-darwin-x86_64 │ │ ├── conv-mach-pxshm.h │ │ ├── conv-mach-pxshm.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── netlrts-linux-arm7 │ │ ├── conv-mach-pthreads.h │ │ ├── conv-mach-pthreads.sh │ │ ├── conv-mach-pxshm.h │ │ ├── conv-mach-pxshm.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach-sysvshm.h │ │ ├── conv-mach-sysvshm.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── netlrts-linux-arm8 │ │ ├── conv-mach-pthreads.h │ │ ├── conv-mach-pthreads.sh │ │ ├── conv-mach-pxshm.h │ │ ├── conv-mach-pxshm.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach-sysvshm.h │ │ ├── conv-mach-sysvshm.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── netlrts-linux-i386 │ │ ├── conv-mach-pxshm.h │ │ ├── conv-mach-pxshm.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach-sysvshm.h │ │ ├── conv-mach-sysvshm.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── netlrts-linux-ppc64le │ │ ├── cc-xlc.h │ │ ├── cc-xlc.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── netlrts-linux-x86_64 │ │ ├── conv-mach-pxshm.h │ │ ├── conv-mach-pxshm.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach-sysvshm.h │ │ ├── conv-mach-sysvshm.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── netlrts-win-x86_64 │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── netlrts │ │ ├── Makefile.machine │ │ ├── conv-common.h │ │ ├── conv-common.sh │ │ ├── conv-mach-local.h │ │ ├── conv-mach-local.sh │ │ ├── conv-mach-syncft.h │ │ ├── conv-mach-tcp.h │ │ ├── conv-mach-tcp.sh │ │ ├── machine-dgram.C │ │ ├── machine-eth.C │ │ ├── machine-persistent.C │ │ ├── machine-recover.C │ │ ├── machine-tcp.C │ │ └── machine.C │ ├── ofi-crayshasta │ │ ├── conv-mach-cxi.h │ │ ├── conv-mach-cxi.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── ofi-linux-x86_64 │ │ ├── conv-mach-cxi.h │ │ ├── conv-mach-cxi.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── ofi │ │ ├── LICENSE │ │ ├── Makefile.machine │ │ ├── README │ │ ├── charmrun │ │ ├── conv-common.h │ │ ├── conv-common.sh │ │ ├── conv-mach-ompipmix.h │ │ ├── conv-mach-ompipmix.sh │ │ ├── conv-mach-openpmix.h │ │ ├── conv-mach-openpmix.sh │ │ ├── conv-mach-simplepmi.h │ │ ├── conv-mach-simplepmi.sh │ │ ├── conv-mach-slurmpmi.h │ │ ├── conv-mach-slurmpmi.sh │ │ ├── conv-mach-slurmpmi2.h │ │ ├── conv-mach-slurmpmi2.sh │ │ ├── conv-mach-slurmpmi2cray.h │ │ ├── conv-mach-slurmpmi2cray.sh │ │ ├── conv-mach-slurmpmicray.h │ │ ├── conv-mach-slurmpmicray.sh │ │ ├── conv-mach-xpmem.h │ │ ├── conv-mach-xpmem.sh │ │ ├── machine-onesided.C │ │ ├── machine-onesided.h │ │ ├── machine.C │ │ └── request.h │ ├── pami-linux-ppc64le │ │ ├── cc-gcc.h │ │ ├── cc-gcc.sh │ │ ├── cc-xlc.h │ │ ├── cc-xlc.sh │ │ ├── charmrun │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── pami │ │ ├── Makefile.machine │ │ ├── conv-common.h │ │ ├── conv-common.sh │ │ ├── conv-mach-async.h │ │ ├── conv-mach-async.sh │ │ └── machine.C │ ├── pamilrts-linux-ppc64le │ │ ├── cc-gcc.h │ │ ├── cc-gcc.sh │ │ ├── cc-xlc.h │ │ ├── cc-xlc.sh │ │ ├── charmrun │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── pamilrts │ │ ├── Makefile.machine │ │ ├── conv-common.h │ │ ├── conv-common.sh │ │ ├── conv-mach-async.h │ │ ├── conv-mach-async.sh │ │ ├── machine-onesided.C │ │ ├── machine-onesided.h │ │ ├── machine-persistent.C │ │ ├── machine-persistent.h │ │ └── machine.C │ ├── template │ │ ├── README │ │ ├── conv-common.h │ │ ├── conv-mach.h │ │ ├── conv-mach.sh │ │ ├── machine-TEMPLATE.C │ │ └── machine.C │ ├── ucx-linux-arm8 │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── ucx-linux-ppc64le │ │ ├── cc-gcc.h │ │ ├── cc-gcc.sh │ │ ├── cc-xlc.h │ │ ├── cc-xlc.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── ucx-linux-x86_64 │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── ucx │ │ ├── LICENSE │ │ ├── Makefile.machine │ │ ├── charmrun │ │ ├── conv-common.h │ │ ├── conv-common.sh │ │ ├── conv-mach-ompipmix.h │ │ ├── conv-mach-ompipmix.sh │ │ ├── conv-mach-openpmix.h │ │ ├── conv-mach-openpmix.sh │ │ ├── conv-mach-simplepmi.h │ │ ├── conv-mach-simplepmi.sh │ │ ├── conv-mach-slurmpmi.h │ │ ├── conv-mach-slurmpmi.sh │ │ ├── conv-mach-slurmpmi2.h │ │ ├── conv-mach-slurmpmi2.sh │ │ ├── machine-onesided.C │ │ ├── machine-onesided.h │ │ └── machine.C │ ├── util │ │ ├── PPCAtomicMutex.h │ │ ├── PPCAtomicQueue.h │ │ ├── cmiqueue.h │ │ ├── compress-external.C │ │ ├── compress.C │ │ ├── compress.h │ │ ├── default_ppcq.h │ │ ├── immediate.C │ │ ├── lrts-common.h │ │ ├── lrtslock.h │ │ ├── lz4.c │ │ ├── lz4.h │ │ ├── machine-broadcast.C │ │ ├── machine-cma.C │ │ ├── machine-common-core.C │ │ ├── machine-commthd-util.C │ │ ├── machine-lrts.h │ │ ├── machine-pxshm.C │ │ ├── machine-rdma.h │ │ ├── machine-smp.C │ │ ├── machine-smp.h │ │ ├── machine-xpmem.C │ │ ├── machine.h │ │ ├── memalloc.C │ │ ├── mempool.C │ │ ├── mempool.h │ │ ├── pcqueue.h │ │ ├── persist-comm.C │ │ ├── proc_management │ │ │ ├── runtime-codec.h │ │ │ ├── runtime-craypmi.C │ │ │ ├── runtime-craypmi2.C │ │ │ ├── runtime-pmi.C │ │ │ ├── runtime-pmi2.C │ │ │ ├── runtime-pmix.C │ │ │ ├── runtime.h │ │ │ └── simple_pmi │ │ │ │ ├── LICENSE-MPICH │ │ │ │ ├── LICENSE-SandiaOpenSHMEM │ │ │ │ ├── README │ │ │ │ ├── mpl.h │ │ │ │ ├── pmi.h │ │ │ │ ├── simple_pmi.C │ │ │ │ ├── simple_pmiutil.C │ │ │ │ └── simple_pmiutil.h │ │ └── zlib-compress.C │ ├── verbs-linux-arm8 │ │ ├── conv-mach-ibud.h │ │ ├── conv-mach-ibud.sh │ │ ├── conv-mach-pxshm.h │ │ ├── conv-mach-pxshm.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── verbs-linux-ppc64le │ │ ├── cc-xlc.h │ │ ├── cc-xlc.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── verbs-linux-x86_64 │ │ ├── conv-mach-ibud.h │ │ ├── conv-mach-ibud.sh │ │ ├── conv-mach-pxshm.h │ │ ├── conv-mach-pxshm.sh │ │ ├── conv-mach-smp.h │ │ ├── conv-mach-smp.sh │ │ ├── conv-mach.h │ │ └── conv-mach.sh │ ├── verbs │ │ ├── Makefile.machine │ │ ├── conv-common.h │ │ ├── conv-common.sh │ │ ├── conv-mach-local.h │ │ ├── conv-mach-local.sh │ │ ├── conv-mach-syncft.h │ │ ├── machine-dgram.C │ │ ├── machine-ibud.C │ │ ├── machine-ibverbs.C │ │ ├── machine-onesided.C │ │ ├── machine-onesided.h │ │ ├── machine-persistent.C │ │ ├── machine-recover.C │ │ └── machine.C │ └── win │ │ ├── createlink.cpp │ │ ├── gatherflat.local │ │ ├── gathertree.local │ │ ├── system_ln │ │ ├── unistd.h │ │ ├── unix2nt_ar │ │ ├── unix2nt_cc │ │ └── vsenv.sh ├── ck-core │ ├── CMakeLists.txt │ ├── XArraySectionReducer.h │ ├── charm++.h │ ├── charm++_type_traits.h │ ├── charm-api.h │ ├── charm.h │ ├── charmf.C │ ├── charmf.h │ ├── charmmod.f90 │ ├── ck.C │ ├── ck.h │ ├── ckIgetControl.C │ ├── ckIgetControl.h │ ├── ckarray.C │ ├── ckarray.ci │ ├── ckarray.h │ ├── ckarrayindex.h │ ├── ckarrayoptions.C │ ├── ckarrayoptions.h │ ├── ckcallback-ccs.h │ ├── ckcallback.C │ ├── ckcallback.ci │ ├── ckcallback.h │ ├── ckcheckpoint.C │ ├── ckcheckpoint.ci │ ├── ckcheckpoint.h │ ├── ckcheckpointstatus.ci │ ├── ckfutures.C │ ├── ckfutures.ci │ ├── ckfutures.h │ ├── cklocation.C │ ├── cklocation.ci │ ├── cklocation.h │ ├── cklocrec.h │ ├── ckmarshall.ci │ ├── ckmarshall.h │ ├── ckmemcheckpoint.C │ ├── ckmemcheckpoint.ci │ ├── ckmemcheckpoint.h │ ├── ckmessage.h │ ├── ckmigratable.h │ ├── ckmulticast.C │ ├── ckmulticast.ci │ ├── ckmulticast.h │ ├── ckobjQ.C │ ├── ckobjQ.h │ ├── ckrdma.C │ ├── ckrdma.h │ ├── ckrdmadevice.C │ ├── ckrdmadevice.h │ ├── ckreduction.C │ ├── ckreduction.ci │ ├── ckreduction.h │ ├── cksection.h │ ├── ckstream.h │ ├── cksyncbarrier.C │ ├── cksyncbarrier.ci │ ├── cksyncbarrier.h │ ├── debug-charm.C │ ├── debug-charm.h │ ├── debug-message.C │ ├── envelope-path.h │ ├── envelope.h │ ├── init.C │ ├── init.h │ ├── main.C │ ├── mainf.f90 │ ├── middle-conv.h │ ├── middle.h │ ├── modifyScheduler.C │ ├── mpi-interoperate.C │ ├── mpi-interoperate.h │ ├── mpi-mainmodule.C │ ├── mpi-mainmodule.ci │ ├── msgalloc.C │ ├── objid.h │ ├── qd.C │ ├── qd.h │ ├── readonly.h │ ├── register.C │ ├── register.h │ ├── sdag.C │ ├── sdag.h │ ├── stats.h │ ├── waitqd.C │ ├── waitqd.ci │ └── waitqd.h ├── ck-cp │ ├── API-generator │ │ ├── cp_effects.C │ │ ├── cp_effects.h │ │ ├── cp_effects.pl │ │ └── cp_effects.txt │ ├── NelderMeadStateDiagram.pdf │ ├── arrayRedistributor.C │ ├── arrayRedistributor.h │ ├── controlPoints.C │ ├── controlPoints.ci │ ├── controlPoints.h │ ├── controlPointsNoTrace.ci │ ├── controlPointsf.h │ ├── pathHistory.C │ ├── pathHistory.ci │ └── pathHistory.h ├── ck-ldb │ ├── BaseLB.C │ ├── BaseLB.ci │ ├── BaseLB.h │ ├── CentralLB.C │ ├── CentralLB.ci │ ├── CentralLB.h │ ├── CentralLBMsg.h │ ├── CentralPredictor.C │ ├── CommonLBs.C │ ├── CommonLBs.ci │ ├── DistBaseLB.C │ ├── DistBaseLB.ci │ ├── DistBaseLB.h │ ├── DistributedLB.C │ ├── DistributedLB.ci │ ├── DistributedLB.h │ ├── EveryLB.C │ ├── EveryLB.ci │ ├── HybridBaseLB.C │ ├── HybridBaseLB.ci │ ├── HybridBaseLB.h │ ├── HybridLBMsg.h │ ├── LBComm.C │ ├── LBComm.h │ ├── LBDatabase.C │ ├── LBDatabase.h │ ├── LBMachineUtil.C │ ├── LBMachineUtil.h │ ├── LBManager.C │ ├── LBManager.ci │ ├── LBManager.h │ ├── LBOM.h │ ├── LBObj.C │ ├── LBObj.h │ ├── LBSimulation.C │ ├── LBSimulation.h │ ├── LButil.C │ ├── Make.lb │ ├── Makefile_lb.sh │ ├── MetaBalancer.C │ ├── MetaBalancer.ci │ ├── MetaBalancer.h │ ├── MetisLB.C │ ├── MetisLB.ci │ ├── MetisLB.h │ ├── RandomForestModel.h │ ├── RecBipartLB.C │ ├── RecBipartLB.ci │ ├── RecBipartLB.h │ ├── Refiner.C │ ├── Refiner.h │ ├── RefinerTemp.C │ ├── RefinerTemp.h │ ├── ScotchLB.C │ ├── ScotchLB.ci │ ├── ScotchLB.h │ ├── ScotchRefineLB.C │ ├── ScotchRefineLB.ci │ ├── ScotchRefineLB.h │ ├── ScotchTopoLB.C │ ├── ScotchTopoLB.ci │ ├── ScotchTopoLB.h │ ├── TempAwareRefineLB.C │ ├── TempAwareRefineLB.ci │ ├── TempAwareRefineLB.h │ ├── TreeBuilder.h │ ├── TreeLB.C │ ├── TreeLB.ci │ ├── TreeLB.h │ ├── TreeLevel.ci │ ├── TreeLevel.h │ ├── TreeStrategyBase.h │ ├── TreeStrategyFactory.h │ ├── ZoltanLB.C │ ├── ZoltanLB.ci │ ├── ZoltanLB.h │ ├── ckgraph.C │ ├── ckgraph.h │ ├── ckheap.C │ ├── ckheap.h │ ├── ckset.C │ ├── ckset.h │ ├── elements.h │ ├── forestTest.C │ ├── greedy.h │ ├── idm.h │ ├── lbdb.h │ ├── lbdbf.C │ ├── libmoduleCommonLBs.dep │ ├── libmoduleEveryLB.dep │ ├── libmoduleScotchLB.dep │ ├── manager.C │ ├── manager.h │ ├── pheap.h │ ├── readmodel.C │ ├── refine.h │ ├── rf_model │ │ ├── big_leafdist.txt.gz │ │ └── big_weakmodel.txt.gz │ ├── treeTest.C │ └── weakTest.C ├── ck-perf │ ├── CMakeLists.txt │ ├── trace-all.C │ ├── trace-common.C │ ├── trace-common.h │ ├── trace-controlPoints.C │ ├── trace-controlPoints.ci │ ├── trace-controlPoints.h │ ├── trace-controlPointsBOC.h │ ├── trace-converse.C │ ├── trace-counter.C │ ├── trace-counter.h │ ├── trace-memory.C │ ├── trace-memory.h │ ├── trace-projections.C │ ├── trace-projections.ci │ ├── trace-projections.h │ ├── trace-projectionsBOC.h │ ├── trace-projector.C │ ├── trace-projector.h │ ├── trace-simple.C │ ├── trace-simple.ci │ ├── trace-simple.h │ ├── trace-simpleBOC.h │ ├── trace-summary.C │ ├── trace-summary.ci │ ├── trace-summary.h │ ├── trace-summaryBOC.h │ ├── trace-utilization.C │ ├── trace-utilization.ci │ ├── trace-utilization.h │ ├── trace.h │ ├── tracec.C │ ├── tracec.h │ ├── tracef.C │ └── tracef_f.f90 ├── ck-pics │ ├── CMakeLists.txt │ ├── picsautoperf.C │ ├── picsautoperf.ci │ ├── picsautoperf.h │ ├── picsautoperfAPI.C │ ├── picsautoperfAPI.h │ ├── picsautoperfAPIC.h │ ├── picsdecisiontree.C │ ├── picsdecisiontree.h │ ├── picsdefs.h │ ├── picsdefscpp.h │ ├── picstreenode.C │ ├── picstreenode.h │ ├── trace-perf.C │ └── trace-perf.h ├── conv-ccs │ ├── ccs-auth.C │ ├── ccs-auth.h │ ├── ccs-builtins.C │ ├── ccs-builtins.h │ ├── ccs-client.C │ ├── ccs-client.h │ ├── ccs-server.C │ ├── ccs-server.h │ ├── conv-ccs.C │ ├── conv-ccs.h │ └── middle-ccs.C ├── conv-core │ ├── CMakeLists.txt │ ├── cmibacktrace.C │ ├── cmidemangle.h │ ├── cmipool.C │ ├── cmipool.h │ ├── cmishmem.h │ ├── conv-conds.C │ ├── conv-config.h │ ├── conv-cpath.h │ ├── conv-cpm.h │ ├── conv-header.h │ ├── conv-interoperate.C │ ├── conv-ooc.h │ ├── conv-qd.h │ ├── conv-random.h │ ├── conv-rdma.C │ ├── conv-rdma.h │ ├── conv-rdmadevice.C │ ├── conv-rdmadevice.h │ ├── conv-static.c │ ├── conv-taskQ.C │ ├── conv-taskQ.h │ ├── conv-trace.h │ ├── convcore.C │ ├── converse.h │ ├── cpath.C │ ├── cpm.C │ ├── cpthreads.C │ ├── cpthreads.h │ ├── cpuaffinity.C │ ├── cputopology.C │ ├── debug-conv++.C │ ├── debug-conv++.h │ ├── debug-conv.C │ ├── debug-conv.h │ ├── futures.C │ ├── global-elfgot.C │ ├── global-macho.C │ ├── global-nop.C │ ├── hrctimer.C │ ├── hrctimer.h │ ├── isomalloc.C │ ├── mem-arena.C │ ├── mem-arena.h │ ├── memory-charmdebug.C │ ├── memory-darwin-clang.C │ ├── memory-gnu-internal.C │ ├── memory-gnu-threads.h │ ├── memory-gnu.C │ ├── memory-isomalloc.C │ ├── memory-isomalloc.h │ ├── memory-leak.C │ ├── memory-lock.C │ ├── memory-os-wrapper.C │ ├── memory-paranoid.C │ ├── memory-record.C │ ├── memory-verbose.C │ ├── memory.C │ ├── memoryaffinity.C │ ├── msgmgr.C │ ├── msgq.h │ ├── persistent.h │ ├── queueing.C │ ├── queueing.h │ ├── quiescence.C │ ├── quiescence.h │ ├── random.C │ ├── shmem │ │ ├── cmi-shmem-common.h │ │ ├── cmishm.C │ │ ├── cmishmem.C │ │ └── cmixpmem.C │ ├── taskqueue.h │ └── threads.C ├── conv-ldb │ ├── cldb.C │ ├── cldb.h │ ├── cldb.neighbor.C │ ├── cldb.neighbor.h │ ├── cldb.none.C │ ├── cldb.prioritycentralized.C │ ├── cldb.prioritycentralized.h │ ├── cldb.rand.C │ ├── cldb.spray.C │ ├── cldb.test.C │ ├── cldb.workstealing.C │ ├── cldb.workstealing.h │ ├── edgelist.C │ ├── generate.C │ ├── graphdefs.h │ ├── priorityqueue.C │ ├── topology.C │ └── topology.h ├── conv-perf │ ├── README.conv-perf │ ├── allEvents.h │ ├── charmEvents.h │ ├── charmProjections.C │ ├── charmProjections.h │ ├── converseEvents.h │ ├── converseProjections.C │ ├── converseProjections.h │ ├── machineEvents.h │ ├── machineProjections.C │ ├── machineProjections.h │ ├── threadEvents.h │ ├── traceCore.C │ ├── traceCore.h │ ├── traceCoreAPI.h │ ├── traceCoreCommon.C │ └── traceCoreCommon.h ├── langs │ ├── f90charm │ │ ├── f90main.C │ │ ├── f90main.ci │ │ └── f90main.h │ ├── pvmc │ │ ├── pvm3.h │ │ ├── pvmc.h │ │ ├── pvmc_buf.C │ │ ├── pvmc_comm.C │ │ ├── pvmc_conv.C │ │ ├── pvmc_groups.C │ │ ├── pvmc_main.C │ │ ├── pvmc_pack.C │ │ └── pvmctest.C │ ├── sdag │ │ ├── doc │ │ │ ├── example1 │ │ │ │ ├── Makefile.html │ │ │ │ ├── index.html │ │ │ │ ├── main.C.html │ │ │ │ ├── main.ci.html │ │ │ │ ├── main.h.html │ │ │ │ ├── test.C.html │ │ │ │ ├── test.ci.html │ │ │ │ ├── test.h.html │ │ │ │ └── test.sdag.html │ │ │ └── grammar.html │ │ └── examples │ │ │ ├── ex0 │ │ │ └── ex0.sdag │ │ │ ├── ex1 │ │ │ └── ex1.sdag │ │ │ ├── ex2 │ │ │ └── ex2.sdag │ │ │ ├── ex3 │ │ │ └── ex3.sdag │ │ │ ├── ex4 │ │ │ └── ex4.sdag │ │ │ ├── ex5 │ │ │ └── ex5.sdag │ │ │ ├── lu │ │ │ └── lu.sdag │ │ │ └── ring │ │ │ └── ring.sdag │ └── simplemsg │ │ ├── simplemsg.C │ │ ├── simplemsg.h │ │ ├── sm.C │ │ └── sm.h ├── libs │ ├── Makefile │ ├── ck-libs │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── MeshStreamer │ │ │ ├── Makefile │ │ │ ├── MeshStreamer.C │ │ │ ├── MeshStreamer.ci │ │ │ └── MeshStreamer.h │ │ ├── NDMeshStreamer │ │ │ ├── DataItemTypes.h │ │ │ ├── Make.depends │ │ │ ├── Makefile │ │ │ ├── NDMeshStreamer.C │ │ │ ├── NDMeshStreamer.ci │ │ │ ├── NDMeshStreamer.h │ │ │ ├── VirtualRouter.h │ │ │ └── libmoduleNDMeshStreamer.dep │ │ ├── ParFUM-Iterators │ │ │ ├── Makefile │ │ │ ├── ParFUM-Iterators.doxy │ │ │ ├── ParFUM_Iterators.cc │ │ │ ├── ParFUM_Iterators.ci │ │ │ ├── ParFUM_Iterators.h │ │ │ ├── ParFUM_Iterators_CPU.cc │ │ │ ├── ParFUM_Iterators_CUDA.cu │ │ │ ├── ParFUM_Iterators_CUDA.h │ │ │ ├── ParFUM_Iterators_Types.h │ │ │ └── libmoduleParFUM_Iterators.dep │ │ ├── ParFUM-Tops-Dev │ │ │ ├── Makefile │ │ │ ├── Makefile-CUDA │ │ │ ├── ParFUM-Tops.doxy │ │ │ ├── ParFUM_TOPS.cc │ │ │ ├── ParFUM_TOPS.ci │ │ │ ├── ParFUM_TOPS.h │ │ │ ├── ParFUM_TOPS_CUDA.cu │ │ │ ├── ParFUM_TOPS_CUDA.h │ │ │ ├── ParFUM_TOPS_Iterators.cc │ │ │ ├── ParFUM_TOPS_Types.h │ │ │ └── libmoduleParFUM_TOPS.dep │ │ ├── ParFUM-Tops │ │ │ ├── Makefile │ │ │ ├── ParFUM-Tops.doxy │ │ │ ├── ParFUM_TOPS.cc │ │ │ ├── ParFUM_TOPS.ci │ │ │ ├── ParFUM_TOPS.h │ │ │ ├── ParFUM_TOPS_CUDA.cu │ │ │ ├── ParFUM_TOPS_CUDA.h │ │ │ ├── ParFUM_TOPS_Iterators.cc │ │ │ ├── ParFUM_TOPS_Types.h │ │ │ └── libmoduleParFUM_TOPS.dep │ │ ├── ParFUM │ │ │ ├── ElemList.h │ │ │ ├── Makefile │ │ │ ├── MsaHashtable.C │ │ │ ├── MsaHashtable.h │ │ │ ├── ParFUM.C │ │ │ ├── ParFUM.ci │ │ │ ├── ParFUM.doxy │ │ │ ├── ParFUM.h │ │ │ ├── ParFUM_Adapt.h │ │ │ ├── ParFUM_Adapt_Algs.h │ │ │ ├── ParFUM_Interpolate.h │ │ │ ├── ParFUM_Mesh_Modify.h │ │ │ ├── ParFUM_SA.C │ │ │ ├── ParFUM_SA.ci │ │ │ ├── ParFUM_SA.h │ │ │ ├── ParFUM_Types.h │ │ │ ├── ParFUM_internals.h │ │ │ ├── ParFUM_locking.h │ │ │ ├── ParFUMf.h │ │ │ ├── README.txt │ │ │ ├── adapt.C │ │ │ ├── adapt_adj.C │ │ │ ├── adapt_adj.h │ │ │ ├── adapt_algs.C │ │ │ ├── adapt_if.C │ │ │ ├── adapt_lock.C │ │ │ ├── bulk_adapt.C │ │ │ ├── bulk_adapt.h │ │ │ ├── bulk_adapt_ops.C │ │ │ ├── bulk_adapt_ops.h │ │ │ ├── call_init.c │ │ │ ├── collide.C │ │ │ ├── compat.C │ │ │ ├── compat_driver.c │ │ │ ├── compat_fdriver.c │ │ │ ├── compat_finit.c │ │ │ ├── compat_init.c │ │ │ ├── derive_shared.C │ │ │ ├── global_numbering.C │ │ │ ├── import.C │ │ │ ├── import.h │ │ │ ├── interpolate.C │ │ │ ├── libmoduleParFUM.dep │ │ │ ├── lock.C │ │ │ ├── lock_node.C │ │ │ ├── main.C │ │ │ ├── map.C │ │ │ ├── mesh.C │ │ │ ├── mesh_adjacency.C │ │ │ ├── mesh_feature_detect.C │ │ │ ├── mesh_modify.C │ │ │ ├── mesh_modify.ci │ │ │ ├── parallel_part.C │ │ │ ├── partition.C │ │ │ ├── symmetries.C │ │ │ └── util.C │ │ ├── allGather │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── allGather.C │ │ │ ├── allGather.ci │ │ │ └── allGather.h │ │ ├── ampi │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ampi-interoperate.h │ │ │ ├── ampi.C │ │ │ ├── ampi.ci │ │ │ ├── ampi.h │ │ │ ├── ampiCC │ │ │ ├── ampiMisc.C │ │ │ ├── ampiOneSided.C │ │ │ ├── ampi_funcptr.h │ │ │ ├── ampi_funcptr_loader.C │ │ │ ├── ampi_funcptr_loader.h │ │ │ ├── ampi_funcptr_loader_stub.C │ │ │ ├── ampi_funcptr_shim.C │ │ │ ├── ampi_funcptr_shim_fmpimain.C │ │ │ ├── ampi_funcptr_shim_main.C │ │ │ ├── ampi_functions.h │ │ │ ├── ampi_globals_fs.C │ │ │ ├── ampi_globals_pie.C │ │ │ ├── ampi_globals_pip.C │ │ │ ├── ampi_mpix.C │ │ │ ├── ampi_noimpl.C │ │ │ ├── ampif.C │ │ │ ├── ampif.h │ │ │ ├── ampif77 │ │ │ ├── ampif90 │ │ │ ├── ampiimpl.h │ │ │ ├── ampimod.f90 │ │ │ ├── ampirun │ │ │ ├── compat_ampicpp.C │ │ │ ├── compat_ampifm.C │ │ │ ├── compat_ampim.C │ │ │ ├── compat_ampins.C │ │ │ ├── compat_ampirs.C │ │ │ ├── ddt.C │ │ │ ├── ddt.h │ │ │ ├── libmoduleampi.dep │ │ │ ├── libmoduleampif.dep │ │ │ ├── mpich-alltoall.C │ │ │ ├── nm_globals.sh │ │ │ ├── pathstub.sh │ │ │ ├── romio-stub │ │ │ │ ├── mpio.h │ │ │ │ ├── mpio_functions.h │ │ │ │ ├── mpio_globals.h │ │ │ │ └── mpiof.h │ │ │ └── romio │ │ │ │ ├── .codingcheck │ │ │ │ ├── .config_params │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── README.AMPI │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── adio │ │ │ │ ├── Makefile.mk │ │ │ │ ├── ad_gpfs │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_gpfs.c │ │ │ │ │ ├── ad_gpfs.h │ │ │ │ │ ├── ad_gpfs_aggrs.c │ │ │ │ │ ├── ad_gpfs_aggrs.h │ │ │ │ │ ├── ad_gpfs_close.c │ │ │ │ │ ├── ad_gpfs_flush.c │ │ │ │ │ ├── ad_gpfs_hints.c │ │ │ │ │ ├── ad_gpfs_open.c │ │ │ │ │ ├── ad_gpfs_rdcoll.c │ │ │ │ │ ├── ad_gpfs_tuning.c │ │ │ │ │ ├── ad_gpfs_tuning.h │ │ │ │ │ ├── ad_gpfs_wrcoll.c │ │ │ │ │ ├── bg │ │ │ │ │ │ ├── .state-cache │ │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ │ ├── ad_bg_aggrs.c │ │ │ │ │ │ ├── ad_bg_aggrs.h │ │ │ │ │ │ ├── ad_bg_pset.c │ │ │ │ │ │ └── ad_bg_pset.h │ │ │ │ │ └── pe │ │ │ │ │ │ ├── .state-cache │ │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ │ ├── ad_pe_aggrs.c │ │ │ │ │ │ └── ad_pe_aggrs.h │ │ │ │ ├── ad_gridftp │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_gridftp.c │ │ │ │ │ ├── ad_gridftp.h │ │ │ │ │ ├── ad_gridftp_close.c │ │ │ │ │ ├── ad_gridftp_delete.c │ │ │ │ │ ├── ad_gridftp_fcntl.c │ │ │ │ │ ├── ad_gridftp_features.c │ │ │ │ │ ├── ad_gridftp_flush.c │ │ │ │ │ ├── ad_gridftp_hints.c │ │ │ │ │ ├── ad_gridftp_open.c │ │ │ │ │ ├── ad_gridftp_read.c │ │ │ │ │ ├── ad_gridftp_resize.c │ │ │ │ │ ├── ad_gridftp_write.c │ │ │ │ │ └── globus_routines.c │ │ │ │ ├── ad_hfs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── README │ │ │ │ │ ├── ad_hfs.c │ │ │ │ │ ├── ad_hfs.h │ │ │ │ │ ├── ad_hfs_fcntl.c │ │ │ │ │ ├── ad_hfs_open.c │ │ │ │ │ ├── ad_hfs_read.c │ │ │ │ │ ├── ad_hfs_resize.c │ │ │ │ │ └── ad_hfs_write.c │ │ │ │ ├── ad_lustre │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── README │ │ │ │ │ ├── ad_lustre.c │ │ │ │ │ ├── ad_lustre.h │ │ │ │ │ ├── ad_lustre_aggregate.c │ │ │ │ │ ├── ad_lustre_fcntl.c │ │ │ │ │ ├── ad_lustre_hints.c │ │ │ │ │ ├── ad_lustre_open.c │ │ │ │ │ ├── ad_lustre_rwcontig.c │ │ │ │ │ ├── ad_lustre_wrcoll.c │ │ │ │ │ └── ad_lustre_wrstr.c │ │ │ │ ├── ad_nfs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_nfs.c │ │ │ │ │ ├── ad_nfs.h │ │ │ │ │ ├── ad_nfs_done.c │ │ │ │ │ ├── ad_nfs_fcntl.c │ │ │ │ │ ├── ad_nfs_features.c │ │ │ │ │ ├── ad_nfs_getsh.c │ │ │ │ │ ├── ad_nfs_hints.c │ │ │ │ │ ├── ad_nfs_iread.c │ │ │ │ │ ├── ad_nfs_iwrite.c │ │ │ │ │ ├── ad_nfs_open.c │ │ │ │ │ ├── ad_nfs_read.c │ │ │ │ │ ├── ad_nfs_resize.c │ │ │ │ │ ├── ad_nfs_setsh.c │ │ │ │ │ ├── ad_nfs_wait.c │ │ │ │ │ └── ad_nfs_write.c │ │ │ │ ├── ad_ntfs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── ad_ntfs.c │ │ │ │ │ ├── ad_ntfs.h │ │ │ │ │ ├── ad_ntfs_close.c │ │ │ │ │ ├── ad_ntfs_done.c │ │ │ │ │ ├── ad_ntfs_fcntl.c │ │ │ │ │ ├── ad_ntfs_feature.c │ │ │ │ │ ├── ad_ntfs_flush.c │ │ │ │ │ ├── ad_ntfs_iread.c │ │ │ │ │ ├── ad_ntfs_iwrite.c │ │ │ │ │ ├── ad_ntfs_open.c │ │ │ │ │ ├── ad_ntfs_read.c │ │ │ │ │ ├── ad_ntfs_resize.c │ │ │ │ │ ├── ad_ntfs_wait.c │ │ │ │ │ └── ad_ntfs_write.c │ │ │ │ ├── ad_panfs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_panfs.c │ │ │ │ │ ├── ad_panfs.h │ │ │ │ │ ├── ad_panfs_hints.c │ │ │ │ │ ├── ad_panfs_open.c │ │ │ │ │ ├── ad_panfs_open6.c │ │ │ │ │ ├── ad_panfs_read.c │ │ │ │ │ ├── ad_panfs_resize.c │ │ │ │ │ └── ad_panfs_write.c │ │ │ │ ├── ad_pfs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_pfs.c │ │ │ │ │ ├── ad_pfs.h │ │ │ │ │ ├── ad_pfs_done.c │ │ │ │ │ ├── ad_pfs_fcntl.c │ │ │ │ │ ├── ad_pfs_flush.c │ │ │ │ │ ├── ad_pfs_hints.c │ │ │ │ │ ├── ad_pfs_iread.c │ │ │ │ │ ├── ad_pfs_iwrite.c │ │ │ │ │ ├── ad_pfs_open.c │ │ │ │ │ ├── ad_pfs_read.c │ │ │ │ │ ├── ad_pfs_wait.c │ │ │ │ │ └── ad_pfs_write.c │ │ │ │ ├── ad_piofs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── README │ │ │ │ │ ├── ad_piofs.c │ │ │ │ │ ├── ad_piofs.h │ │ │ │ │ ├── ad_piofs_fcntl.c │ │ │ │ │ ├── ad_piofs_features.c │ │ │ │ │ ├── ad_piofs_hints.c │ │ │ │ │ ├── ad_piofs_open.c │ │ │ │ │ ├── ad_piofs_read.c │ │ │ │ │ └── ad_piofs_write.c │ │ │ │ ├── ad_pvfs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_pvfs.c │ │ │ │ │ ├── ad_pvfs.h │ │ │ │ │ ├── ad_pvfs_close.c │ │ │ │ │ ├── ad_pvfs_delete.c │ │ │ │ │ ├── ad_pvfs_fcntl.c │ │ │ │ │ ├── ad_pvfs_flush.c │ │ │ │ │ ├── ad_pvfs_hints.c │ │ │ │ │ ├── ad_pvfs_open.c │ │ │ │ │ ├── ad_pvfs_read.c │ │ │ │ │ ├── ad_pvfs_resize.c │ │ │ │ │ └── ad_pvfs_write.c │ │ │ │ ├── ad_pvfs2 │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_pvfs2.c │ │ │ │ │ ├── ad_pvfs2.h │ │ │ │ │ ├── ad_pvfs2_aio.c │ │ │ │ │ ├── ad_pvfs2_close.c │ │ │ │ │ ├── ad_pvfs2_common.c │ │ │ │ │ ├── ad_pvfs2_common.h │ │ │ │ │ ├── ad_pvfs2_delete.c │ │ │ │ │ ├── ad_pvfs2_fcntl.c │ │ │ │ │ ├── ad_pvfs2_features.c │ │ │ │ │ ├── ad_pvfs2_flush.c │ │ │ │ │ ├── ad_pvfs2_hints.c │ │ │ │ │ ├── ad_pvfs2_io.h │ │ │ │ │ ├── ad_pvfs2_io_dtype.c │ │ │ │ │ ├── ad_pvfs2_io_list.c │ │ │ │ │ ├── ad_pvfs2_open.c │ │ │ │ │ ├── ad_pvfs2_read.c │ │ │ │ │ ├── ad_pvfs2_read_list_classic.c │ │ │ │ │ ├── ad_pvfs2_resize.c │ │ │ │ │ ├── ad_pvfs2_write.c │ │ │ │ │ └── ad_pvfs2_write_list_classic.c │ │ │ │ ├── ad_sfs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── README │ │ │ │ │ ├── ad_sfs.c │ │ │ │ │ ├── ad_sfs.h │ │ │ │ │ ├── ad_sfs_fcntl.c │ │ │ │ │ ├── ad_sfs_flush.c │ │ │ │ │ └── ad_sfs_open.c │ │ │ │ ├── ad_testfs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_testfs.c │ │ │ │ │ ├── ad_testfs.h │ │ │ │ │ ├── ad_testfs_close.c │ │ │ │ │ ├── ad_testfs_delete.c │ │ │ │ │ ├── ad_testfs_done.c │ │ │ │ │ ├── ad_testfs_fcntl.c │ │ │ │ │ ├── ad_testfs_flush.c │ │ │ │ │ ├── ad_testfs_getsh.c │ │ │ │ │ ├── ad_testfs_hints.c │ │ │ │ │ ├── ad_testfs_iread.c │ │ │ │ │ ├── ad_testfs_iwrite.c │ │ │ │ │ ├── ad_testfs_open.c │ │ │ │ │ ├── ad_testfs_rdcoll.c │ │ │ │ │ ├── ad_testfs_read.c │ │ │ │ │ ├── ad_testfs_resize.c │ │ │ │ │ ├── ad_testfs_seek.c │ │ │ │ │ ├── ad_testfs_setsh.c │ │ │ │ │ ├── ad_testfs_wait.c │ │ │ │ │ ├── ad_testfs_wrcoll.c │ │ │ │ │ └── ad_testfs_write.c │ │ │ │ ├── ad_ufs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_ufs.c │ │ │ │ │ ├── ad_ufs.h │ │ │ │ │ └── ad_ufs_open.c │ │ │ │ ├── ad_xfs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_xfs.c │ │ │ │ │ ├── ad_xfs.h │ │ │ │ │ ├── ad_xfs_fcntl.c │ │ │ │ │ ├── ad_xfs_hints.c │ │ │ │ │ ├── ad_xfs_open.c │ │ │ │ │ ├── ad_xfs_read.c │ │ │ │ │ ├── ad_xfs_resize.c │ │ │ │ │ └── ad_xfs_write.c │ │ │ │ ├── ad_zoidfs │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_zoidfs.c │ │ │ │ │ ├── ad_zoidfs.h │ │ │ │ │ ├── ad_zoidfs_close.c │ │ │ │ │ ├── ad_zoidfs_common.c │ │ │ │ │ ├── ad_zoidfs_common.h │ │ │ │ │ ├── ad_zoidfs_delete.c │ │ │ │ │ ├── ad_zoidfs_fcntl.c │ │ │ │ │ ├── ad_zoidfs_features.c │ │ │ │ │ ├── ad_zoidfs_flush.c │ │ │ │ │ ├── ad_zoidfs_io.c │ │ │ │ │ ├── ad_zoidfs_open.c │ │ │ │ │ ├── ad_zoidfs_read_list.c │ │ │ │ │ ├── ad_zoidfs_resize.c │ │ │ │ │ └── ad_zoidfs_write_list.c │ │ │ │ ├── common │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── ad_aggregate.c │ │ │ │ │ ├── ad_aggregate_new.c │ │ │ │ │ ├── ad_close.c │ │ │ │ │ ├── ad_coll_build_req_new.c │ │ │ │ │ ├── ad_coll_exch_new.c │ │ │ │ │ ├── ad_darray.c │ │ │ │ │ ├── ad_delete.c │ │ │ │ │ ├── ad_done.c │ │ │ │ │ ├── ad_done_fake.c │ │ │ │ │ ├── ad_end.c │ │ │ │ │ ├── ad_fcntl.c │ │ │ │ │ ├── ad_features.c │ │ │ │ │ ├── ad_flush.c │ │ │ │ │ ├── ad_fstype.c │ │ │ │ │ ├── ad_get_sh_fp.c │ │ │ │ │ ├── ad_hints.c │ │ │ │ │ ├── ad_init.c │ │ │ │ │ ├── ad_io_coll.c │ │ │ │ │ ├── ad_iopen.c │ │ │ │ │ ├── ad_iread.c │ │ │ │ │ ├── ad_iread_coll.c │ │ │ │ │ ├── ad_iread_coll.pdf │ │ │ │ │ ├── ad_iread_fake.c │ │ │ │ │ ├── ad_iwrite.c │ │ │ │ │ ├── ad_iwrite_coll.c │ │ │ │ │ ├── ad_iwrite_coll.pdf │ │ │ │ │ ├── ad_iwrite_fake.c │ │ │ │ │ ├── ad_open.c │ │ │ │ │ ├── ad_opencoll.c │ │ │ │ │ ├── ad_opencoll_failsafe.c │ │ │ │ │ ├── ad_opencoll_scalable.c │ │ │ │ │ ├── ad_prealloc.c │ │ │ │ │ ├── ad_read.c │ │ │ │ │ ├── ad_read_coll.c │ │ │ │ │ ├── ad_read_str.c │ │ │ │ │ ├── ad_read_str_naive.c │ │ │ │ │ ├── ad_resize.c │ │ │ │ │ ├── ad_seek.c │ │ │ │ │ ├── ad_set_sh_fp.c │ │ │ │ │ ├── ad_set_view.c │ │ │ │ │ ├── ad_subarray.c │ │ │ │ │ ├── ad_threaded_io.c │ │ │ │ │ ├── ad_wait.c │ │ │ │ │ ├── ad_wait_fake.c │ │ │ │ │ ├── ad_write.c │ │ │ │ │ ├── ad_write_coll.c │ │ │ │ │ ├── ad_write_nolock.c │ │ │ │ │ ├── ad_write_str.c │ │ │ │ │ ├── ad_write_str_naive.c │ │ │ │ │ ├── adi_close.c │ │ │ │ │ ├── async_list.c │ │ │ │ │ ├── byte_offset.c │ │ │ │ │ ├── cb_config_list.c │ │ │ │ │ ├── eof_offset.c │ │ │ │ │ ├── error.c │ │ │ │ │ ├── flatten.c │ │ │ │ │ ├── get_fp_posn.c │ │ │ │ │ ├── greq_fns.c │ │ │ │ │ ├── heap-sort.c │ │ │ │ │ ├── hint_fns.c │ │ │ │ │ ├── iscontig.c │ │ │ │ │ ├── lock.c │ │ │ │ │ ├── malloc.c │ │ │ │ │ ├── onesided_aggregation.c │ │ │ │ │ ├── p2p_aggregation.c │ │ │ │ │ ├── req_malloc.c │ │ │ │ │ ├── shfp_fname.c │ │ │ │ │ ├── status_setb.c │ │ │ │ │ ├── strfns.c │ │ │ │ │ ├── system_hints.c │ │ │ │ │ └── utils.c │ │ │ │ └── include │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── BaseIOErrMsgs.msg │ │ │ │ │ ├── adio.h │ │ │ │ │ ├── adio_cb_config_list.h │ │ │ │ │ ├── adio_extern.h │ │ │ │ │ ├── adioi.h │ │ │ │ │ ├── adioi_errmsg.h │ │ │ │ │ ├── adioi_error.h │ │ │ │ │ ├── adioi_fs_proto.h │ │ │ │ │ ├── heap-sort.h │ │ │ │ │ ├── hint_fns.h │ │ │ │ │ ├── mpio_error.h │ │ │ │ │ ├── mpipr.h │ │ │ │ │ ├── mpiu_external32.h │ │ │ │ │ ├── mpiu_greq.h │ │ │ │ │ ├── nopackage.h │ │ │ │ │ └── romioconf.h.in │ │ │ │ ├── autogen.sh │ │ │ │ ├── confdb │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── aclocal_am.m4 │ │ │ │ ├── aclocal_atomic.m4 │ │ │ │ ├── aclocal_attr_alias.m4 │ │ │ │ ├── aclocal_bugfix.m4 │ │ │ │ ├── aclocal_cache.m4 │ │ │ │ ├── aclocal_cc.m4 │ │ │ │ ├── aclocal_coverage.m4 │ │ │ │ ├── aclocal_cxx.m4 │ │ │ │ ├── aclocal_f77.m4 │ │ │ │ ├── aclocal_f77old.m4 │ │ │ │ ├── aclocal_fc.m4 │ │ │ │ ├── aclocal_libs.m4 │ │ │ │ ├── aclocal_make.m4 │ │ │ │ ├── aclocal_mpi.m4 │ │ │ │ ├── aclocal_romio.m4 │ │ │ │ ├── aclocal_runlog.m4 │ │ │ │ ├── aclocal_shl.m4 │ │ │ │ ├── aclocal_shm.m4 │ │ │ │ ├── aclocal_subcfg.m4 │ │ │ │ ├── aclocal_util.m4 │ │ │ │ ├── ar-lib │ │ │ │ ├── ax_prefix_config_h.m4 │ │ │ │ ├── ax_tls.m4 │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.rpath │ │ │ │ ├── config.sub │ │ │ │ ├── depcomp │ │ │ │ ├── install-sh │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltmain.sh │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ └── missing │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── doc │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── makepubpage.sh │ │ │ │ ├── pubs.bib │ │ │ │ ├── romio.bib │ │ │ │ ├── source-guide.tex │ │ │ │ ├── users-guide.pdf │ │ │ │ └── users-guide.tex │ │ │ │ ├── include │ │ │ │ ├── mpio.h.in │ │ │ │ ├── mpio_functions.h │ │ │ │ └── mpiof.h.in │ │ │ │ ├── localdefs.in │ │ │ │ ├── mpi-io │ │ │ │ ├── .state-cache │ │ │ │ ├── Makefile.mk │ │ │ │ ├── close.c │ │ │ │ ├── delete.c │ │ │ │ ├── file_c2f.c │ │ │ │ ├── file_f2c.c │ │ │ │ ├── fortran │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── closef.c │ │ │ │ │ ├── deletef.c │ │ │ │ │ ├── fsyncf.c │ │ │ │ │ ├── get_amodef.c │ │ │ │ │ ├── get_atomf.c │ │ │ │ │ ├── get_bytofff.c │ │ │ │ │ ├── get_errhf.c │ │ │ │ │ ├── get_extentf.c │ │ │ │ │ ├── get_groupf.c │ │ │ │ │ ├── get_infof.c │ │ │ │ │ ├── get_posn_shf.c │ │ │ │ │ ├── get_posnf.c │ │ │ │ │ ├── get_sizef.c │ │ │ │ │ ├── get_viewf.c │ │ │ │ │ ├── iotestf.c │ │ │ │ │ ├── iowaitf.c │ │ │ │ │ ├── iread_atf.c │ │ │ │ │ ├── iread_shf.c │ │ │ │ │ ├── ireadf.c │ │ │ │ │ ├── iwrite_atf.c │ │ │ │ │ ├── iwrite_shf.c │ │ │ │ │ ├── iwritef.c │ │ │ │ │ ├── openf.c │ │ │ │ │ ├── preallocf.c │ │ │ │ │ ├── rd_atallbf.c │ │ │ │ │ ├── rd_atallef.c │ │ │ │ │ ├── read_allbf.c │ │ │ │ │ ├── read_allef.c │ │ │ │ │ ├── read_allf.c │ │ │ │ │ ├── read_atallf.c │ │ │ │ │ ├── read_atf.c │ │ │ │ │ ├── read_ordbf.c │ │ │ │ │ ├── read_ordef.c │ │ │ │ │ ├── read_ordf.c │ │ │ │ │ ├── read_shf.c │ │ │ │ │ ├── readf.c │ │ │ │ │ ├── romio_fortran.c │ │ │ │ │ ├── romio_fortran.h │ │ │ │ │ ├── seek_shf.c │ │ │ │ │ ├── seekf.c │ │ │ │ │ ├── set_atomf.c │ │ │ │ │ ├── set_errhf.c │ │ │ │ │ ├── set_infof.c │ │ │ │ │ ├── set_sizef.c │ │ │ │ │ ├── set_viewf.c │ │ │ │ │ ├── wr_atallbf.c │ │ │ │ │ ├── wr_atallef.c │ │ │ │ │ ├── write_allbf.c │ │ │ │ │ ├── write_allef.c │ │ │ │ │ ├── write_allf.c │ │ │ │ │ ├── write_atallf.c │ │ │ │ │ ├── write_atf.c │ │ │ │ │ ├── write_ordbf.c │ │ │ │ │ ├── write_ordef.c │ │ │ │ │ ├── write_ordf.c │ │ │ │ │ ├── write_shf.c │ │ │ │ │ └── writef.c │ │ │ │ ├── fsync.c │ │ │ │ ├── get_amode.c │ │ │ │ ├── get_atom.c │ │ │ │ ├── get_bytoff.c │ │ │ │ ├── get_errh.c │ │ │ │ ├── get_extent.c │ │ │ │ ├── get_group.c │ │ │ │ ├── get_info.c │ │ │ │ ├── get_posn.c │ │ │ │ ├── get_posn_sh.c │ │ │ │ ├── get_size.c │ │ │ │ ├── get_view.c │ │ │ │ ├── glue │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ ├── default │ │ │ │ │ │ ├── .state-cache │ │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ │ ├── mpio_err.c │ │ │ │ │ │ └── mpio_file.c │ │ │ │ │ ├── large_count.c │ │ │ │ │ ├── mpich │ │ │ │ │ │ ├── .state-cache │ │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ │ ├── mpio_err.c │ │ │ │ │ │ └── mpio_file.c │ │ │ │ │ └── openmpi │ │ │ │ │ │ ├── .state-cache │ │ │ │ │ │ ├── Makefile.mk │ │ │ │ │ │ ├── mpio_err.c │ │ │ │ │ │ └── mpio_file.c │ │ │ │ ├── ioreq_c2f.c │ │ │ │ ├── ioreq_f2c.c │ │ │ │ ├── iotest.c │ │ │ │ ├── iotestall.c │ │ │ │ ├── iotestany.c │ │ │ │ ├── iotestsome.c │ │ │ │ ├── iowait.c │ │ │ │ ├── iowaitall.c │ │ │ │ ├── iowaitany.c │ │ │ │ ├── iowaitsome.c │ │ │ │ ├── iread.c │ │ │ │ ├── iread_all.c │ │ │ │ ├── iread_at.c │ │ │ │ ├── iread_atall.c │ │ │ │ ├── iread_sh.c │ │ │ │ ├── iwrite.c │ │ │ │ ├── iwrite_all.c │ │ │ │ ├── iwrite_at.c │ │ │ │ ├── iwrite_atall.c │ │ │ │ ├── iwrite_sh.c │ │ │ │ ├── mpich_fileutil.c │ │ │ │ ├── mpioimpl.h │ │ │ │ ├── mpioprof.h │ │ │ │ ├── mpir-mpioinit.c │ │ │ │ ├── mpiu_external32.c │ │ │ │ ├── mpiu_greq.c │ │ │ │ ├── open.c │ │ │ │ ├── prealloc.c │ │ │ │ ├── rd_atallb.c │ │ │ │ ├── rd_atalle.c │ │ │ │ ├── read.c │ │ │ │ ├── read_all.c │ │ │ │ ├── read_allb.c │ │ │ │ ├── read_alle.c │ │ │ │ ├── read_at.c │ │ │ │ ├── read_atall.c │ │ │ │ ├── read_ord.c │ │ │ │ ├── read_ordb.c │ │ │ │ ├── read_orde.c │ │ │ │ ├── read_sh.c │ │ │ │ ├── register_datarep.c │ │ │ │ ├── seek.c │ │ │ │ ├── seek_sh.c │ │ │ │ ├── set_atom.c │ │ │ │ ├── set_errh.c │ │ │ │ ├── set_info.c │ │ │ │ ├── set_size.c │ │ │ │ ├── set_view.c │ │ │ │ ├── wr_atallb.c │ │ │ │ ├── wr_atalle.c │ │ │ │ ├── write.c │ │ │ │ ├── write_all.c │ │ │ │ ├── write_allb.c │ │ │ │ ├── write_alle.c │ │ │ │ ├── write_at.c │ │ │ │ ├── write_atall.c │ │ │ │ ├── write_ord.c │ │ │ │ ├── write_ordb.c │ │ │ │ ├── write_orde.c │ │ │ │ └── write_sh.c │ │ │ │ ├── mpi2-other │ │ │ │ ├── array │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── darray.c │ │ │ │ │ ├── fortran │ │ │ │ │ │ ├── .state-cache │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── darrayf.c │ │ │ │ │ │ └── subarrayf.c │ │ │ │ │ └── subarray.c │ │ │ │ └── info │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── fortran │ │ │ │ │ ├── .state-cache │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── info_createf.c │ │ │ │ │ ├── info_deletef.c │ │ │ │ │ ├── info_dupf.c │ │ │ │ │ ├── info_freef.c │ │ │ │ │ ├── info_getf.c │ │ │ │ │ ├── info_getnksf.c │ │ │ │ │ ├── info_getnthf.c │ │ │ │ │ ├── info_getvlnf.c │ │ │ │ │ └── info_setf.c │ │ │ │ │ ├── info_c2f.c │ │ │ │ │ ├── info_create.c │ │ │ │ │ ├── info_delete.c │ │ │ │ │ ├── info_dup.c │ │ │ │ │ ├── info_f2c.c │ │ │ │ │ ├── info_free.c │ │ │ │ │ ├── info_get.c │ │ │ │ │ ├── info_getnks.c │ │ │ │ │ ├── info_getnth.c │ │ │ │ │ ├── info_getvln.c │ │ │ │ │ └── info_set.c │ │ │ │ ├── test-internal │ │ │ │ ├── .state-cache │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── file_realms_test.c │ │ │ │ ├── heap_test.c │ │ │ │ └── io_bounds_test.c │ │ │ │ ├── test │ │ │ │ ├── .codingcheck │ │ │ │ ├── .state-cache │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Mfile.in │ │ │ │ ├── README │ │ │ │ ├── aggregation1.c │ │ │ │ ├── aggregation2.c │ │ │ │ ├── async-multiple.c │ │ │ │ ├── async.c │ │ │ │ ├── atomicity.c │ │ │ │ ├── big_extents.c │ │ │ │ ├── coll_perf.c │ │ │ │ ├── coll_test.c │ │ │ │ ├── creat_excl.c │ │ │ │ ├── darray_read.c │ │ │ │ ├── error.c │ │ │ │ ├── excl.c │ │ │ │ ├── external32.c │ │ │ │ ├── fcoll_test.f.in │ │ │ │ ├── file_info.c │ │ │ │ ├── fmisc.f.in │ │ │ │ ├── fperf.f.in │ │ │ │ ├── hindexed.c │ │ │ │ ├── i_noncontig.c │ │ │ │ ├── large_array.c │ │ │ │ ├── large_file.c.in │ │ │ │ ├── misc.c.in │ │ │ │ ├── noncontig.c │ │ │ │ ├── noncontig_coll.c │ │ │ │ ├── noncontig_coll2.c │ │ │ │ ├── ordered_fp.c │ │ │ │ ├── perf.c │ │ │ │ ├── pfcoll_test.f.in │ │ │ │ ├── psimple.c │ │ │ │ ├── rtest.in │ │ │ │ ├── runtests.in │ │ │ │ ├── shared_fp.c │ │ │ │ ├── simple.c │ │ │ │ ├── split_coll.c │ │ │ │ ├── status.c │ │ │ │ ├── syshints.c │ │ │ │ ├── test_hintfile │ │ │ │ └── types_with_zeros.c │ │ │ │ ├── util │ │ │ │ ├── .state-cache │ │ │ │ ├── nfslock.c │ │ │ │ ├── romioinstall.in │ │ │ │ └── tarch │ │ │ │ └── version.m4 │ │ ├── amr │ │ │ ├── Makefile │ │ │ ├── amr.C │ │ │ ├── amr.ci │ │ │ ├── amr.h │ │ │ ├── bitvec.h │ │ │ ├── fifo.C │ │ │ ├── fifo.h │ │ │ ├── statcoll.C │ │ │ └── statcoll.h │ │ ├── barrier │ │ │ ├── Makefile │ │ │ ├── barrier.C │ │ │ ├── barrier.ci │ │ │ └── barrier.h │ │ ├── boomarray │ │ │ └── BoomArray.h │ │ ├── cache │ │ │ ├── CkCache.C │ │ │ ├── CkCache.ci │ │ │ ├── CkCache.h │ │ │ └── Makefile │ │ ├── ckloop │ │ │ ├── CkLambda.h │ │ │ ├── CkLoop.C │ │ │ ├── CkLoop.ci │ │ │ ├── CkLoop.h │ │ │ ├── CkLoopAPI.h │ │ │ ├── Make.depends │ │ │ └── Makefile │ │ ├── collide │ │ │ ├── Makefile │ │ │ ├── bbox.h │ │ │ ├── collide_buffers.C │ │ │ ├── collide_buffers.h │ │ │ ├── collide_cfg.h │ │ │ ├── collide_serial.C │ │ │ ├── collide_serial.h │ │ │ ├── collide_util.C │ │ │ ├── collide_util.h │ │ │ ├── collidec.h │ │ │ ├── collidecharm.C │ │ │ ├── collidecharm.ci │ │ │ ├── collidecharm.h │ │ │ ├── collidecharm_impl.h │ │ │ ├── collidef.h │ │ │ ├── libmodulecollide.dep │ │ │ ├── threadCollide.C │ │ │ └── threadCollide.ci │ │ ├── common.mk │ │ ├── completion │ │ │ ├── Make.depends │ │ │ ├── Makefile │ │ │ ├── completion.C │ │ │ ├── completion.ci │ │ │ └── completion.h │ │ ├── dummy │ │ │ ├── Make.depends │ │ │ ├── Makefile │ │ │ ├── ckdummy.C │ │ │ ├── ckdummy.ci │ │ │ └── ckdummy.h │ │ ├── fftlib │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── fftlib-normal.C │ │ │ ├── fftlib-sparse.C │ │ │ ├── fftlib.ci │ │ │ ├── fftlib.h │ │ │ ├── libmodulefftlib.dep │ │ │ ├── rfftlib-normal.C │ │ │ └── translines.C │ │ ├── idxl │ │ │ ├── Makefile │ │ │ ├── idxl.C │ │ │ ├── idxl.h │ │ │ ├── idxl_api.C │ │ │ ├── idxl_comm.C │ │ │ ├── idxl_comm.h │ │ │ ├── idxl_layout.C │ │ │ ├── idxl_layout.h │ │ │ ├── idxlc.h │ │ │ └── idxlf.h │ │ ├── io │ │ │ ├── Makefile │ │ │ ├── ckio.C │ │ │ ├── ckio.ci │ │ │ ├── ckio.h │ │ │ ├── fs_parameters.c │ │ │ └── fs_parameters.h │ │ ├── irecv │ │ │ ├── Makefile │ │ │ ├── receiver.C │ │ │ ├── receiver.ci │ │ │ ├── receiver.h │ │ │ └── receiverf.h │ │ ├── liveViz │ │ │ ├── ImageData.C │ │ │ ├── ImageData.h │ │ │ ├── Makefile │ │ │ ├── Readme.txt │ │ │ ├── colorScale.C │ │ │ ├── colorScale.h │ │ │ ├── compat_float2rgb.C │ │ │ ├── liveViz.C │ │ │ ├── liveViz.ci │ │ │ ├── liveViz.h │ │ │ ├── liveViz0.C │ │ │ ├── liveViz0.h │ │ │ ├── liveVizPoll.C │ │ │ ├── liveVizPoll.ci │ │ │ └── liveViz_impl.h │ │ ├── liveViz3d │ │ │ ├── Makefile │ │ │ ├── Makefile.client │ │ │ ├── ckviewable.cpp │ │ │ ├── ckviewable.h │ │ │ ├── ckviewpoint.cpp │ │ │ ├── ckviewpoint.h │ │ │ ├── liveViz3d.ci │ │ │ ├── liveViz3d.dep │ │ │ ├── lv3d0.C │ │ │ ├── lv3d0.ci │ │ │ ├── lv3d0.h │ │ │ ├── lv3d0_server.C │ │ │ ├── lv3d0_server.h │ │ │ ├── lv3d1.ci │ │ │ ├── lv3d1_server.C │ │ │ ├── lv3d1_server.h │ │ │ ├── stats.cpp │ │ │ └── stats.h │ │ ├── mblock │ │ │ ├── Makefile │ │ │ ├── compat_driver.c │ │ │ ├── compat_fdriver.c │ │ │ ├── gridutil.h │ │ │ ├── libmodulemblock.dep │ │ │ ├── mblock.C │ │ │ ├── mblock.ci │ │ │ ├── mblock.h │ │ │ ├── mblock_impl.h │ │ │ ├── mblockf.h │ │ │ ├── patch.C │ │ │ └── patch.h │ │ ├── metis │ │ │ ├── BUILD-Windows.txt │ │ │ ├── BUILD.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── Changelog │ │ │ ├── GKlib │ │ │ │ ├── BUILD.txt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GKlib.h │ │ │ │ ├── GKlibSystem.cmake │ │ │ │ ├── Makefile │ │ │ │ ├── b64.c │ │ │ │ ├── blas.c │ │ │ │ ├── conf │ │ │ │ │ └── check_thread_storage.c │ │ │ │ ├── csr.c │ │ │ │ ├── error.c │ │ │ │ ├── evaluate.c │ │ │ │ ├── fkvkselect.c │ │ │ │ ├── fs.c │ │ │ │ ├── getopt.c │ │ │ │ ├── gk_arch.h │ │ │ │ ├── gk_defs.h │ │ │ │ ├── gk_externs.h │ │ │ │ ├── gk_getopt.h │ │ │ │ ├── gk_macros.h │ │ │ │ ├── gk_mkblas.h │ │ │ │ ├── gk_mkmemory.h │ │ │ │ ├── gk_mkpqueue.h │ │ │ │ ├── gk_mkpqueue2.h │ │ │ │ ├── gk_mkrandom.h │ │ │ │ ├── gk_mksort.h │ │ │ │ ├── gk_mkutils.h │ │ │ │ ├── gk_proto.h │ │ │ │ ├── gk_struct.h │ │ │ │ ├── gk_types.h │ │ │ │ ├── gkregex.c │ │ │ │ ├── gkregex.h │ │ │ │ ├── graph.c │ │ │ │ ├── htable.c │ │ │ │ ├── io.c │ │ │ │ ├── itemsets.c │ │ │ │ ├── mcore.c │ │ │ │ ├── memory.c │ │ │ │ ├── ms_inttypes.h │ │ │ │ ├── ms_stat.h │ │ │ │ ├── ms_stdint.h │ │ │ │ ├── omp.c │ │ │ │ ├── pdb.c │ │ │ │ ├── pqueue.c │ │ │ │ ├── random.c │ │ │ │ ├── rw.c │ │ │ │ ├── seq.c │ │ │ │ ├── sort.c │ │ │ │ ├── string.c │ │ │ │ ├── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.in.old │ │ │ │ │ ├── Makefile.old │ │ │ │ │ ├── fis.c │ │ │ │ │ ├── gkgraph.c │ │ │ │ │ ├── gksort.c │ │ │ │ │ ├── rw.c │ │ │ │ │ └── strings.c │ │ │ │ ├── timers.c │ │ │ │ ├── tokenizer.c │ │ │ │ └── util.c │ │ │ ├── Install.txt │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── libmetis │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── auxapi.c │ │ │ │ ├── balance.c │ │ │ │ ├── bucketsort.c │ │ │ │ ├── checkgraph.c │ │ │ │ ├── coarsen.c │ │ │ │ ├── compress.c │ │ │ │ ├── contig.c │ │ │ │ ├── debug.c │ │ │ │ ├── defs.h │ │ │ │ ├── fm.c │ │ │ │ ├── fortran.c │ │ │ │ ├── frename.c │ │ │ │ ├── gklib.c │ │ │ │ ├── gklib_defs.h │ │ │ │ ├── gklib_rename.h │ │ │ │ ├── graph.c │ │ │ │ ├── initpart.c │ │ │ │ ├── kmetis.c │ │ │ │ ├── kwayfm.c │ │ │ │ ├── kwayrefine.c │ │ │ │ ├── macros.h │ │ │ │ ├── mcutil.c │ │ │ │ ├── mesh.c │ │ │ │ ├── meshpart.c │ │ │ │ ├── metis.h │ │ │ │ ├── metislib.h │ │ │ │ ├── minconn.c │ │ │ │ ├── mincover.c │ │ │ │ ├── mmd.c │ │ │ │ ├── ometis.c │ │ │ │ ├── options.c │ │ │ │ ├── parmetis.c │ │ │ │ ├── pmetis.c │ │ │ │ ├── proto.h │ │ │ │ ├── refine.c │ │ │ │ ├── rename.h │ │ │ │ ├── separator.c │ │ │ │ ├── sfm.c │ │ │ │ ├── srefine.c │ │ │ │ ├── stat.c │ │ │ │ ├── stdheaders.h │ │ │ │ ├── struct.h │ │ │ │ ├── timing.c │ │ │ │ ├── util.c │ │ │ │ └── wspace.c │ │ │ ├── manual │ │ │ │ └── manual.pdf │ │ │ ├── programs │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cmdline_gpmetis.c │ │ │ │ ├── cmdline_m2gmetis.c │ │ │ │ ├── cmdline_mpmetis.c │ │ │ │ ├── cmdline_ndmetis.c │ │ │ │ ├── cmpfillin.c │ │ │ │ ├── defs.h │ │ │ │ ├── gpmetis.c │ │ │ │ ├── graphchk.c │ │ │ │ ├── io.c │ │ │ │ ├── m2gmetis.c │ │ │ │ ├── metisbin.h │ │ │ │ ├── mpmetis.c │ │ │ │ ├── ndmetis.c │ │ │ │ ├── proto.h │ │ │ │ ├── smbfactor.c │ │ │ │ ├── stat.c │ │ │ │ └── struct.h │ │ │ └── vsgen.bat │ │ ├── msa2 │ │ │ └── msa2.h │ │ ├── multiphaseSharedArrays │ │ │ ├── Makefile │ │ │ ├── msa-DistPageMgr.ci │ │ │ ├── msa-DistPageMgr.h │ │ │ ├── msa-common.h │ │ │ ├── msa-distArray.C │ │ │ ├── msa-distArray.h │ │ │ └── msa.h │ │ ├── pmaf │ │ │ ├── 3Dmesh1 │ │ │ ├── 3Dmesh2 │ │ │ ├── 3Dmesh23flip │ │ │ ├── 3Dmesh3 │ │ │ ├── 3Dmesh32flip │ │ │ ├── 3Dmesh4 │ │ │ ├── Makefile │ │ │ ├── chunk.C │ │ │ ├── chunk.ci │ │ │ ├── chunk.h │ │ │ ├── element.C │ │ │ ├── element.h │ │ │ ├── matrix.h │ │ │ ├── messages.h │ │ │ ├── node.h │ │ │ ├── pgm.C │ │ │ ├── pgm.ci │ │ │ ├── pgm.h │ │ │ ├── ref.C │ │ │ └── ref.h │ │ ├── pose │ │ │ ├── Make.cidepends │ │ │ ├── Make.depends │ │ │ ├── Makefile │ │ │ ├── SyncStrategies.txt │ │ │ ├── adapt.C │ │ │ ├── adapt.h │ │ │ ├── adapt2.C │ │ │ ├── adapt2.h │ │ │ ├── adapt3.C │ │ │ ├── adapt3.h │ │ │ ├── adapt4.C │ │ │ ├── adapt4.h │ │ │ ├── adapt5.C │ │ │ ├── adapt5.h │ │ │ ├── cancel.C │ │ │ ├── cancel.h │ │ │ ├── chpt.h │ │ │ ├── cons.C │ │ │ ├── cons.h │ │ │ ├── eqheap.C │ │ │ ├── eqheap.h │ │ │ ├── etrans.pl │ │ │ ├── event.C │ │ │ ├── event.h │ │ │ ├── eventID.C │ │ │ ├── eventID.h │ │ │ ├── evmpool.C │ │ │ ├── evmpool.ci │ │ │ ├── evmpool.h │ │ │ ├── evq.C │ │ │ ├── evq.h │ │ │ ├── gvt.C │ │ │ ├── gvt.ci │ │ │ ├── gvt.h │ │ │ ├── lbObject.C │ │ │ ├── lbObject.h │ │ │ ├── ldbal.C │ │ │ ├── ldbal.ci │ │ │ ├── ldbal.h │ │ │ ├── libmodulepose.dep │ │ │ ├── memory_temporal.C │ │ │ ├── memory_temporal.ci │ │ │ ├── memory_temporal.h │ │ │ ├── mempool.C │ │ │ ├── mempool.ci │ │ │ ├── mempool.h │ │ │ ├── opt.C │ │ │ ├── opt.h │ │ │ ├── opt2.C │ │ │ ├── opt2.h │ │ │ ├── opt3.C │ │ │ ├── opt3.h │ │ │ ├── pose.C │ │ │ ├── pose.ci │ │ │ ├── pose.doxy │ │ │ ├── pose.h │ │ │ ├── pose_config.h │ │ │ ├── pvtobj.C │ │ │ ├── pvtobj.h │ │ │ ├── rep.C │ │ │ ├── rep.h │ │ │ ├── seq.C │ │ │ ├── seq.h │ │ │ ├── sim.C │ │ │ ├── sim.ci │ │ │ ├── sim.h │ │ │ ├── spec.C │ │ │ ├── spec.h │ │ │ ├── srtable.C │ │ │ ├── srtable.h │ │ │ ├── stats.C │ │ │ ├── stats.ci │ │ │ ├── stats.h │ │ │ ├── strat.C │ │ │ └── strat.h │ │ ├── pythonCCS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── PythonCCS-client.C │ │ │ ├── PythonCCS-client.h │ │ │ ├── PythonCCS.C │ │ │ ├── PythonCCS.ci │ │ │ ├── PythonCCS.h │ │ │ ├── charmdebug-python.C │ │ │ └── charmdebug-python.ci │ │ ├── search │ │ │ ├── Makefile │ │ │ ├── idastar.C │ │ │ ├── idastar.h │ │ │ ├── problem.C │ │ │ ├── problem.h │ │ │ ├── search.C │ │ │ ├── search.ci │ │ │ ├── search.h │ │ │ ├── serialtree.C │ │ │ └── serialtree.h │ │ ├── sparseContiguousReducer │ │ │ ├── Makefile │ │ │ ├── cksparsecontiguousreducer.C │ │ │ ├── cksparsecontiguousreducer.ci │ │ │ └── cksparsecontiguousreducer.h │ │ ├── sparseReducer │ │ │ ├── Makefile │ │ │ ├── cksparsereducer.C │ │ │ ├── cksparsereducer.ci │ │ │ └── cksparsereducer.h │ │ ├── state_space_searchengine │ │ │ ├── Makefile │ │ │ ├── searchEngine.C │ │ │ ├── searchEngine.ci │ │ │ ├── searchEngine.h │ │ │ └── searchEngine_impl.h │ │ ├── taskGraph │ │ │ ├── Makefile │ │ │ ├── taskGraph.C │ │ │ ├── taskGraph.ci │ │ │ ├── taskGraph.h │ │ │ └── taskGraph.html │ │ └── tcharm │ │ │ ├── Makefile │ │ │ ├── compat_es.c │ │ │ ├── compat_funs.c │ │ │ ├── compat_fus.c │ │ │ ├── compat_ns.c │ │ │ ├── compat_regmm.c │ │ │ ├── compat_uns.c │ │ │ ├── compat_us.c │ │ │ ├── libmoduletcharm.dep │ │ │ ├── libmoduletcharmmain.dep │ │ │ ├── tcharm.C │ │ │ ├── tcharm.ci │ │ │ ├── tcharm.h │ │ │ ├── tcharm_impl.h │ │ │ ├── tcharmc.h │ │ │ ├── tcharmf.h │ │ │ ├── tcharmmain.C │ │ │ └── tcharmmain.ci │ └── conv-libs │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── gotmanager │ │ ├── GOTManager.C │ │ ├── GOTManager.h │ │ └── Makefile │ │ ├── lrpc │ │ ├── lrpc.C │ │ └── lrpc.h │ │ ├── master-slave │ │ ├── Makefile │ │ ├── cms.C │ │ └── cms.h │ │ ├── openmp_llvm │ │ ├── Makefile │ │ ├── README │ │ ├── readlink.sh │ │ └── runtime │ │ │ ├── Build_With_CMake.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── cmake │ │ │ ├── LibompCheckFortranFlag.cmake │ │ │ ├── LibompCheckLinkerFlag.cmake │ │ │ ├── LibompDefinitions.cmake │ │ │ ├── LibompExports.cmake │ │ │ ├── LibompGetArchitecture.cmake │ │ │ ├── LibompHandleFlags.cmake │ │ │ ├── LibompMicroTests.cmake │ │ │ ├── LibompUtils.cmake │ │ │ └── config-ix.cmake │ │ │ ├── ompcharm │ │ │ ├── Makefile │ │ │ ├── OmpCharm.C │ │ │ └── OmpCharm.ci │ │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── dllexports │ │ │ ├── exports_so.txt │ │ │ ├── extractExternal.cpp │ │ │ ├── i18n │ │ │ │ └── en_US.txt │ │ │ ├── include │ │ │ │ ├── 30 │ │ │ │ │ ├── omp.h.var │ │ │ │ │ ├── omp_lib.f.var │ │ │ │ │ ├── omp_lib.f90.var │ │ │ │ │ └── omp_lib.h.var │ │ │ │ ├── 40 │ │ │ │ │ ├── omp.h.var │ │ │ │ │ ├── omp_lib.f.var │ │ │ │ │ ├── omp_lib.f90.var │ │ │ │ │ └── omp_lib.h.var │ │ │ │ ├── 45 │ │ │ │ │ ├── omp.h.var │ │ │ │ │ ├── omp_lib.f.var │ │ │ │ │ ├── omp_lib.f90.var │ │ │ │ │ └── omp_lib.h.var │ │ │ │ └── 50 │ │ │ │ │ ├── omp.h.var │ │ │ │ │ ├── omp_lib.f.var │ │ │ │ │ ├── omp_lib.f90.var │ │ │ │ │ ├── omp_lib.h.var │ │ │ │ │ └── ompt.h.var │ │ │ ├── kmp.h │ │ │ ├── kmp_affinity.cpp │ │ │ ├── kmp_affinity.h │ │ │ ├── kmp_alloc.cpp │ │ │ ├── kmp_atomic.cpp │ │ │ ├── kmp_atomic.h │ │ │ ├── kmp_barrier.cpp │ │ │ ├── kmp_cancel.cpp │ │ │ ├── kmp_config.h.cmake │ │ │ ├── kmp_csupport.cpp │ │ │ ├── kmp_debug.cpp │ │ │ ├── kmp_debug.h │ │ │ ├── kmp_debugger.cpp │ │ │ ├── kmp_debugger.h │ │ │ ├── kmp_dispatch.cpp │ │ │ ├── kmp_environment.cpp │ │ │ ├── kmp_environment.h │ │ │ ├── kmp_error.cpp │ │ │ ├── kmp_error.h │ │ │ ├── kmp_ftn_cdecl.cpp │ │ │ ├── kmp_ftn_entry.h │ │ │ ├── kmp_ftn_extra.cpp │ │ │ ├── kmp_ftn_os.h │ │ │ ├── kmp_ftn_stdcall.cpp │ │ │ ├── kmp_global.cpp │ │ │ ├── kmp_gsupport.cpp │ │ │ ├── kmp_i18n.cpp │ │ │ ├── kmp_i18n.h │ │ │ ├── kmp_import.cpp │ │ │ ├── kmp_io.cpp │ │ │ ├── kmp_io.h │ │ │ ├── kmp_itt.cpp │ │ │ ├── kmp_itt.h │ │ │ ├── kmp_itt.inl │ │ │ ├── kmp_lock.cpp │ │ │ ├── kmp_lock.h │ │ │ ├── kmp_omp.h │ │ │ ├── kmp_os.h │ │ │ ├── kmp_platform.h │ │ │ ├── kmp_runtime.cpp │ │ │ ├── kmp_safe_c_api.h │ │ │ ├── kmp_sched.cpp │ │ │ ├── kmp_settings.cpp │ │ │ ├── kmp_settings.h │ │ │ ├── kmp_stats.cpp │ │ │ ├── kmp_stats.h │ │ │ ├── kmp_stats_timing.cpp │ │ │ ├── kmp_stats_timing.h │ │ │ ├── kmp_str.cpp │ │ │ ├── kmp_str.h │ │ │ ├── kmp_stub.cpp │ │ │ ├── kmp_stub.h │ │ │ ├── kmp_taskdeps.cpp │ │ │ ├── kmp_tasking.cpp │ │ │ ├── kmp_taskq.cpp │ │ │ ├── kmp_threadprivate.cpp │ │ │ ├── kmp_utility.cpp │ │ │ ├── kmp_version.cpp │ │ │ ├── kmp_version.h │ │ │ ├── kmp_wait_release.cpp │ │ │ ├── kmp_wait_release.h │ │ │ ├── kmp_wrapper_getpid.h │ │ │ ├── kmp_wrapper_malloc.h │ │ │ ├── libomp.rc.var │ │ │ ├── ompcharm.h │ │ │ ├── ompt-event-specific.h │ │ │ ├── ompt-general.cpp │ │ │ ├── ompt-internal.h │ │ │ ├── ompt-specific.cpp │ │ │ ├── ompt-specific.h │ │ │ ├── test-touch.c │ │ │ ├── thirdparty │ │ │ │ └── ittnotify │ │ │ │ │ ├── disable_warnings.h │ │ │ │ │ ├── ittnotify.h │ │ │ │ │ ├── ittnotify_config.h │ │ │ │ │ ├── ittnotify_static.c │ │ │ │ │ ├── ittnotify_static.h │ │ │ │ │ ├── ittnotify_types.h │ │ │ │ │ └── legacy │ │ │ │ │ └── ittnotify.h │ │ │ ├── tsan_annotations.cpp │ │ │ ├── tsan_annotations.h │ │ │ ├── z_Linux_asm.S │ │ │ ├── z_Linux_util.cpp │ │ │ ├── z_Windows_NT-586_asm.asm │ │ │ ├── z_Windows_NT-586_util.cpp │ │ │ └── z_Windows_NT_util.cpp │ │ │ └── tools │ │ │ ├── check-depends.pl │ │ │ ├── check-execstack.pl │ │ │ ├── check-instruction-set.pl │ │ │ ├── generate-def.pl │ │ │ ├── lib │ │ │ ├── Build.pm │ │ │ ├── LibOMP.pm │ │ │ ├── Platform.pm │ │ │ ├── Uname.pm │ │ │ └── tools.pm │ │ │ └── message-converter.pl │ │ └── packlib │ │ ├── Makefile │ │ ├── PackLib.h │ │ ├── cpacklib.h │ │ ├── packc.C │ │ ├── packf77.C │ │ └── packtest.C ├── scripts │ ├── Make.cidepends │ ├── Make.depends │ ├── Make.gpu │ ├── Makefile │ ├── charm.mk │ ├── charmc │ ├── commitid.sh │ ├── configure.ac │ ├── conv-config.sh │ ├── dep.pl │ ├── gatherflat │ ├── gathertree │ └── testrun ├── util │ ├── SSE-Double.h │ ├── SSE-Float.h │ ├── boost-context │ │ ├── CMakeLists.txt │ │ ├── LICENSE_1_0.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── import.sh │ │ ├── jump_arm64_aapcs_elf_gas.S │ │ ├── jump_arm64_aapcs_macho_gas.S │ │ ├── jump_arm64_aapcs_pe_armasm.asm │ │ ├── jump_arm_aapcs_elf_gas.S │ │ ├── jump_arm_aapcs_macho_gas.S │ │ ├── jump_arm_aapcs_pe_armasm.asm │ │ ├── jump_combined_sysv_macho_gas.S │ │ ├── jump_i386_ms_pe_clang_gas.S │ │ ├── jump_i386_ms_pe_gas.S │ │ ├── jump_i386_ms_pe_masm.asm │ │ ├── jump_i386_sysv_elf_gas.S │ │ ├── jump_i386_sysv_macho_gas.S │ │ ├── jump_i386_x86_64_sysv_macho_gas.S │ │ ├── jump_loongarch64_sysv_elf_gas.S │ │ ├── jump_mips32_o32_elf_gas.S │ │ ├── jump_mips64_n64_elf_gas.S │ │ ├── jump_ppc32_ppc64_sysv_macho_gas.S │ │ ├── jump_ppc32_sysv_elf_gas.S │ │ ├── jump_ppc32_sysv_macho_gas.S │ │ ├── jump_ppc32_sysv_xcoff_gas.S │ │ ├── jump_ppc64_sysv_elf_gas.S │ │ ├── jump_ppc64_sysv_macho_gas.S │ │ ├── jump_ppc64_sysv_xcoff_gas.S │ │ ├── jump_riscv64_sysv_elf_gas.S │ │ ├── jump_s390x_sysv_elf_gas.S │ │ ├── jump_x86_64_ms_pe_clang_gas.S │ │ ├── jump_x86_64_ms_pe_gas.S │ │ ├── jump_x86_64_ms_pe_masm.asm │ │ ├── jump_x86_64_sysv_elf_gas.S │ │ ├── jump_x86_64_sysv_macho_gas.S │ │ ├── make_arm64_aapcs_elf_gas.S │ │ ├── make_arm64_aapcs_macho_gas.S │ │ ├── make_arm64_aapcs_pe_armasm.asm │ │ ├── make_arm_aapcs_elf_gas.S │ │ ├── make_arm_aapcs_macho_gas.S │ │ ├── make_arm_aapcs_pe_armasm.asm │ │ ├── make_combined_sysv_macho_gas.S │ │ ├── make_i386_ms_pe_clang_gas.S │ │ ├── make_i386_ms_pe_gas.S │ │ ├── make_i386_ms_pe_masm.asm │ │ ├── make_i386_sysv_elf_gas.S │ │ ├── make_i386_sysv_macho_gas.S │ │ ├── make_i386_x86_64_sysv_macho_gas.S │ │ ├── make_loongarch64_sysv_elf_gas.S │ │ ├── make_mips32_o32_elf_gas.S │ │ ├── make_mips64_n64_elf_gas.S │ │ ├── make_ppc32_ppc64_sysv_macho_gas.S │ │ ├── make_ppc32_sysv_elf_gas.S │ │ ├── make_ppc32_sysv_macho_gas.S │ │ ├── make_ppc32_sysv_xcoff_gas.S │ │ ├── make_ppc64_sysv_elf_gas.S │ │ ├── make_ppc64_sysv_macho_gas.S │ │ ├── make_ppc64_sysv_xcoff_gas.S │ │ ├── make_riscv64_sysv_elf_gas.S │ │ ├── make_s390x_sysv_elf_gas.S │ │ ├── make_x86_64_ms_pe_clang_gas.S │ │ ├── make_x86_64_ms_pe_gas.S │ │ ├── make_x86_64_ms_pe_masm.asm │ │ ├── make_x86_64_sysv_elf_gas.S │ │ ├── make_x86_64_sysv_macho_gas.S │ │ ├── ontop_arm64_aapcs_elf_gas.S │ │ ├── ontop_arm64_aapcs_macho_gas.S │ │ ├── ontop_arm64_aapcs_pe_armasm.asm │ │ ├── ontop_arm_aapcs_elf_gas.S │ │ ├── ontop_arm_aapcs_macho_gas.S │ │ ├── ontop_arm_aapcs_pe_armasm.asm │ │ ├── ontop_combined_sysv_macho_gas.S │ │ ├── ontop_i386_ms_pe_clang_gas.S │ │ ├── ontop_i386_ms_pe_gas.S │ │ ├── ontop_i386_ms_pe_masm.asm │ │ ├── ontop_i386_sysv_elf_gas.S │ │ ├── ontop_i386_sysv_macho_gas.S │ │ ├── ontop_i386_x86_64_sysv_macho_gas.S │ │ ├── ontop_loongarch64_sysv_elf_gas.S │ │ ├── ontop_mips32_o32_elf_gas.S │ │ ├── ontop_mips64_n64_elf_gas.S │ │ ├── ontop_ppc32_ppc64_sysv_macho_gas.S │ │ ├── ontop_ppc32_sysv_elf_gas.S │ │ ├── ontop_ppc32_sysv_macho_gas.S │ │ ├── ontop_ppc32_sysv_xcoff_gas.S │ │ ├── ontop_ppc64_sysv_elf_gas.S │ │ ├── ontop_ppc64_sysv_macho_gas.S │ │ ├── ontop_ppc64_sysv_xcoff_gas.S │ │ ├── ontop_riscv64_sysv_elf_gas.S │ │ ├── ontop_s390x_sysv_elf_gas.S │ │ ├── ontop_x86_64_ms_pe_clang_gas.S │ │ ├── ontop_x86_64_ms_pe_gas.S │ │ ├── ontop_x86_64_ms_pe_masm.asm │ │ ├── ontop_x86_64_sysv_elf_gas.S │ │ ├── ontop_x86_64_sysv_macho_gas.S │ │ ├── tail_ontop_ppc32_sysv.cpp │ │ └── tail_ppc32_sysv_elf_gas.cpp │ ├── charmrun-src │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── charmrun.C │ │ ├── daemon.C │ │ └── daemon.h │ ├── ck128bitHash.h │ ├── ckBIconfig.h │ ├── ckbitvector.C │ ├── ckbitvector.h │ ├── ckcomplex.h │ ├── ckdll.C │ ├── ckdll.h │ ├── ckdll_dlopen.C │ ├── ckdll_system.C │ ├── ckdll_win32.C │ ├── ckhashtable.C │ ├── ckhashtable.h │ ├── ckimage.C │ ├── ckimage.h │ ├── cklists.h │ ├── ckliststring.h │ ├── ckregex.C │ ├── ckregex.h │ ├── cksequence.h │ ├── cksequence_factory.h │ ├── cksequence_internal.h │ ├── ckstandalone.C │ ├── ckstatistics.h │ ├── ckvector3d.h │ ├── cmirdmautils.C │ ├── cmirdmautils.h │ ├── cmitls.C │ ├── cmitls.h │ ├── conv-lists.C │ ├── conv-lists.h │ ├── crc32.C │ ├── crc32.h │ ├── custom_partitioner.C │ ├── fuzzytree.txt │ ├── hilbert.C │ ├── hilbert.h │ ├── json.hpp │ ├── json_fwd.hpp │ ├── partitioning_strategies.C │ ├── partitioning_strategies.h │ ├── pup.h │ ├── pup_c.C │ ├── pup_c.h │ ├── pup_c_functions.h │ ├── pup_cmialloc.C │ ├── pup_cmialloc.h │ ├── pup_f.f90.sh │ ├── pup_mpi.h │ ├── pup_paged.C │ ├── pup_paged.h │ ├── pup_stl.h │ ├── pup_toNetwork.C │ ├── pup_toNetwork.h │ ├── pup_toNetwork4.C │ ├── pup_toNetwork4.h │ ├── pup_util.C │ ├── pup_xlater.C │ ├── pupf.h │ ├── rand48_replacement.h │ ├── random_sequence.h │ ├── set_partition_params.C │ ├── simd.h │ ├── sockRoutines.C │ ├── sockRoutines.h │ ├── spanningTree.C │ ├── spanningTree.h │ ├── spanningTreeStrategy.h │ ├── spanningTreeVertex.h │ ├── strided_sequence.h │ ├── topomanager │ │ ├── CrayNid.c │ │ ├── Make.depends │ │ ├── Makefile_Cray │ │ ├── README │ │ ├── TopoManager.C │ │ ├── TopoManager.h │ │ ├── XTTorus.h │ │ ├── topomanager_test.C │ │ └── tpm_standalone.h │ ├── tree.txt │ ├── treeStrategy_3dTorus_minBytesHops.h │ ├── treeStrategy_3dTorus_minHops.h │ ├── treeStrategy_nodeAware_minBytes.h │ ├── treeStrategy_nodeAware_minGens.h │ ├── treeStrategy_topoUnaware.h │ ├── uFcontext.h │ ├── uJcontext.C │ ├── uJcontext.h │ ├── valgrind.h │ └── vector2d.h ├── xlat-i │ ├── CMakeLists.txt │ ├── interfaceBuilder.C │ ├── interfaceBuilder.h │ ├── sdag │ │ ├── CEntry.C │ │ ├── CEntry.h │ │ ├── CParsedFile.C │ │ ├── CParsedFile.h │ │ ├── CSdagConstruct.C │ │ ├── CStateVar.C │ │ ├── CStateVar.h │ │ ├── CToken.h │ │ ├── EToken.h │ │ ├── constructs │ │ │ ├── Case.C │ │ │ ├── Case.h │ │ │ ├── CaseList.C │ │ │ ├── CaseList.h │ │ │ ├── Constructs.h │ │ │ ├── Else.C │ │ │ ├── Else.h │ │ │ ├── For.C │ │ │ ├── For.h │ │ │ ├── Forall.C │ │ │ ├── Forall.h │ │ │ ├── If.C │ │ │ ├── If.h │ │ │ ├── IntExpr.C │ │ │ ├── IntExpr.h │ │ │ ├── OList.C │ │ │ ├── OList.h │ │ │ ├── Overlap.C │ │ │ ├── Overlap.h │ │ │ ├── SList.C │ │ │ ├── SList.h │ │ │ ├── SdagEntry.C │ │ │ ├── SdagEntry.h │ │ │ ├── Serial.C │ │ │ ├── Serial.h │ │ │ ├── Template.C │ │ │ ├── Template.h │ │ │ ├── When.C │ │ │ ├── When.h │ │ │ ├── While.C │ │ │ └── While.h │ │ ├── example.txt │ │ ├── grammar.txt │ │ ├── sdag-globals.C │ │ └── sdag-globals.h │ ├── xi-AstNode.C │ ├── xi-AstNode.h │ ├── xi-BlockConstruct.C │ ├── xi-BlockConstruct.h │ ├── xi-Chare.C │ ├── xi-Chare.h │ ├── xi-Construct.C │ ├── xi-Construct.h │ ├── xi-Entry.C │ ├── xi-Entry.h │ ├── xi-Member.C │ ├── xi-Member.h │ ├── xi-Message.C │ ├── xi-Message.h │ ├── xi-Module.C │ ├── xi-Module.h │ ├── xi-Parameter.C │ ├── xi-Parameter.h │ ├── xi-SdagCollection.C │ ├── xi-SdagCollection.h │ ├── xi-SdagConstruct.C │ ├── xi-SdagConstruct.h │ ├── xi-Template.C │ ├── xi-Template.h │ ├── xi-Type.C │ ├── xi-Type.h │ ├── xi-Value.C │ ├── xi-Value.h │ ├── xi-grammar.tab.C │ ├── xi-grammar.tab.h │ ├── xi-grammar.y │ ├── xi-main.C │ ├── xi-main.h │ ├── xi-scan.C │ ├── xi-scan.l │ ├── xi-symbol.C │ ├── xi-symbol.h │ ├── xi-util.C │ ├── xi-util.h │ └── xi.makefile └── xlatcpm │ ├── conv-cpm.C │ └── conv-cpm.flex └── tests ├── Makefile ├── ampi ├── Makefile ├── chkpt │ ├── Makefile │ └── hello.c ├── datatype │ ├── Makefile │ └── datatype.C ├── exit │ ├── .gitignore │ ├── Makefile │ ├── exit_explicit.C │ └── exit_return.C ├── fallreduce │ ├── Makefile │ └── pgm.f90 ├── intercomm_coll │ ├── Makefile │ └── intercomm_coll.C ├── jacobi3d │ ├── Makefile │ ├── jacobi.C │ ├── kill_01.txt │ └── kill_02.txt ├── megampi │ ├── Makefile │ └── test.C ├── migration │ ├── Makefile │ ├── mapfile │ └── test.C ├── mpich-test │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.mtest │ ├── Makefile_cxx.mtest │ ├── Makefile_f08.mtest │ ├── Makefile_f77.mtest │ ├── Makefile_f90.mtest │ ├── README │ ├── README.AMPI │ ├── ToDo │ ├── aclocal.m4 │ ├── attr │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── attr2type.c │ │ ├── attrdeleteget.c │ │ ├── attrend.c │ │ ├── attrend2.c │ │ ├── attrerr.c │ │ ├── attrerrcomm.c │ │ ├── attrerrtype.c │ │ ├── attric.c │ │ ├── attrorder.c │ │ ├── attrordercomm.c │ │ ├── attrordertype.c │ │ ├── attrt.c │ │ ├── baseattr2.c │ │ ├── baseattrcomm.c │ │ ├── fkeyval.c │ │ ├── fkeyvalcomm.c │ │ ├── fkeyvaltype.c │ │ ├── keyval_double_free.c │ │ ├── keyval_double_free_comm.c │ │ ├── keyval_double_free_type.c │ │ ├── keyval_double_free_win.c │ │ ├── testlist │ │ └── testlist.ampi │ ├── basic │ │ ├── GetOpt.c │ │ ├── GetOpt.h │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── adapt.c │ │ ├── netmpi.c │ │ ├── patterns.c │ │ ├── self.c │ │ ├── sendrecv.c │ │ ├── simple.c │ │ ├── srtest.c │ │ ├── testlist.ampi │ │ └── wtime.c │ ├── checktests.in │ ├── ckpoint │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── testlist │ │ ├── testlist.ampi │ │ └── write_ckpoint.c │ ├── coll │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── allgather2.c │ │ ├── allgather3.c │ │ ├── allgather_struct.c │ │ ├── allgatherv2.c │ │ ├── allgatherv3.c │ │ ├── allgatherv4.c │ │ ├── allred.c │ │ ├── allred2.c │ │ ├── allred3.c │ │ ├── allred4.c │ │ ├── allred5.c │ │ ├── allred6.c │ │ ├── allredmany.c │ │ ├── alltoall1.c │ │ ├── alltoallv.c │ │ ├── alltoallv0.c │ │ ├── alltoallw1.c │ │ ├── alltoallw2.c │ │ ├── alltoallw_zeros.c │ │ ├── bcast.c │ │ ├── bcasttest.c │ │ ├── bcastzerotype.c │ │ ├── coll10.c │ │ ├── coll11.c │ │ ├── coll12.c │ │ ├── coll13.c │ │ ├── coll2.c │ │ ├── coll3.c │ │ ├── coll4.c │ │ ├── coll5.c │ │ ├── coll6.c │ │ ├── coll7.c │ │ ├── coll8.c │ │ ├── coll9.c │ │ ├── exscan.c │ │ ├── exscan2.c │ │ ├── gather.c │ │ ├── gather2.c │ │ ├── gather_big.c │ │ ├── iallred.c │ │ ├── ibarrier.c │ │ ├── icallgather.c │ │ ├── icallgatherv.c │ │ ├── icallreduce.c │ │ ├── icalltoall.c │ │ ├── icalltoallv.c │ │ ├── icalltoallw.c │ │ ├── icbarrier.c │ │ ├── icbcast.c │ │ ├── icgather.c │ │ ├── icgatherv.c │ │ ├── icreduce.c │ │ ├── icscatter.c │ │ ├── icscatterv.c │ │ ├── longuser.c │ │ ├── nonblocking.c │ │ ├── nonblocking2.c │ │ ├── nonblocking3.c │ │ ├── op_commutative.c │ │ ├── opband.c │ │ ├── opbor.c │ │ ├── opbxor.c │ │ ├── opland.c │ │ ├── oplor.c │ │ ├── oplxor.c │ │ ├── opmax.c │ │ ├── opmaxloc.c │ │ ├── opmin.c │ │ ├── opminloc.c │ │ ├── opprod.c │ │ ├── opsum.c │ │ ├── red3.c │ │ ├── red4.c │ │ ├── red_scat_block.c │ │ ├── red_scat_block2.c │ │ ├── redscat.c │ │ ├── redscat2.c │ │ ├── redscat3.c │ │ ├── redscatbkinter.c │ │ ├── redscatblk3.c │ │ ├── redscatinter.c │ │ ├── reduce.c │ │ ├── reduce_local.c │ │ ├── scantst.c │ │ ├── scatter2.c │ │ ├── scatter3.c │ │ ├── scattern.c │ │ ├── scatterv.c │ │ ├── testlist.ampi │ │ ├── testlist.in │ │ └── uoplong.c │ ├── comm │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cmfree.c │ │ ├── cmsplit.c │ │ ├── cmsplit2.c │ │ ├── cmsplit_type.c │ │ ├── comm_create_group.c │ │ ├── comm_create_group_idup.c │ │ ├── comm_group_half.c │ │ ├── comm_group_rand.c │ │ ├── comm_idup.c │ │ ├── comm_idup_comm.c │ │ ├── comm_idup_comm2.c │ │ ├── comm_idup_iallreduce.c │ │ ├── comm_idup_isend.c │ │ ├── comm_idup_mul.c │ │ ├── comm_idup_nb.c │ │ ├── comm_idup_overlap.c │ │ ├── comm_info.c │ │ ├── commcreate1.c │ │ ├── commname.c │ │ ├── ctxalloc.c │ │ ├── ctxsplit.c │ │ ├── dup.c │ │ ├── dup_with_info.c │ │ ├── dupic.c │ │ ├── ic1.c │ │ ├── ic2.c │ │ ├── iccreate.c │ │ ├── icgroup.c │ │ ├── icm.c │ │ ├── icsplit.c │ │ ├── probe-intercomm.c │ │ ├── testlist │ │ └── testlist.ampi │ ├── confdb │ │ ├── aclocal.m4 │ │ ├── aclocal_am.m4 │ │ ├── aclocal_atomic.m4 │ │ ├── aclocal_attr_alias.m4 │ │ ├── aclocal_bugfix.m4 │ │ ├── aclocal_cache.m4 │ │ ├── aclocal_cc.m4 │ │ ├── aclocal_coverage.m4 │ │ ├── aclocal_cxx.m4 │ │ ├── aclocal_f77.m4 │ │ ├── aclocal_f77old.m4 │ │ ├── aclocal_fc.m4 │ │ ├── aclocal_libs.m4 │ │ ├── aclocal_make.m4 │ │ ├── aclocal_mpi.m4 │ │ ├── aclocal_romio.m4 │ │ ├── aclocal_runlog.m4 │ │ ├── aclocal_shl.m4 │ │ ├── aclocal_shm.m4 │ │ ├── aclocal_subcfg.m4 │ │ ├── aclocal_util.m4 │ │ ├── ar-lib │ │ ├── ax_prefix_config_h.m4 │ │ ├── ax_tls.m4 │ │ ├── compile │ │ ├── config.guess │ │ ├── config.rpath │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ └── missing │ ├── configargs │ │ ├── bgp.cfg │ │ └── bgp_xl.cfg │ ├── configure │ ├── configure.ac │ ├── configure.sh │ ├── cxx │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── attr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── attricx.cxx │ │ │ ├── attrtx.cxx │ │ │ ├── baseattrcommx.cxx │ │ │ ├── fkeyvalcommx.cxx │ │ │ ├── fkeyvaltypex.cxx │ │ │ └── testlist │ │ ├── coll │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── alltoallw2x.cxx │ │ │ ├── arcomplex.cxx │ │ │ ├── icallgathervx.cxx │ │ │ ├── icallgatherx.cxx │ │ │ ├── icallreducex.cxx │ │ │ ├── icalltoallx.cxx │ │ │ ├── icbarrierx.cxx │ │ │ ├── icbcastx.cxx │ │ │ ├── icgathervx.cxx │ │ │ ├── icgatherx.cxx │ │ │ ├── icreducex.cxx │ │ │ ├── icscattervx.cxx │ │ │ ├── icscatterx.cxx │ │ │ ├── redscatblk.cxx │ │ │ ├── reduceboolx.cxx │ │ │ ├── testlist │ │ │ ├── uallreduce.cxx │ │ │ ├── uallredx.cxx │ │ │ ├── uexscan.cxx │ │ │ ├── ureduce.cxx │ │ │ ├── ureducelocal.cxx │ │ │ └── uscan.cxx │ │ ├── comm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── commname2.cxx │ │ │ └── testlist │ │ ├── datatype │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── packsizex.cxx │ │ │ ├── testlist │ │ │ ├── typecntsx.cxx │ │ │ ├── typemiscx.cxx │ │ │ └── typenamex.cxx │ │ ├── errhan │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── commcallx.cxx │ │ │ └── testlist │ │ ├── info │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── infodelx.cxx │ │ │ ├── infodupx.cxx │ │ │ ├── infoorderx.cxx │ │ │ ├── infovallenx.cxx │ │ │ └── testlist │ │ ├── init │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── baseenv.cxx │ │ │ ├── initstat2x.cxx │ │ │ ├── initstatx.cxx │ │ │ └── testlist │ │ ├── io │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fileerrx.cxx │ │ │ ├── fileinfox.cxx │ │ │ ├── filemiscx.cxx │ │ │ ├── ioharness.defn │ │ │ ├── ioharness.tlt │ │ │ ├── seekavail.cxx │ │ │ ├── setinfox.cxx │ │ │ ├── shpositionx.cxx │ │ │ └── testlist │ │ ├── pt2pt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bsend1cxx.cxx │ │ │ ├── sendrecvx.cxx │ │ │ └── testlist │ │ ├── rma │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fkeyvalwinx.cxx │ │ │ ├── getgroupx.cxx │ │ │ ├── testlist │ │ │ ├── wincallx.cxx │ │ │ ├── winfencex.cxx │ │ │ ├── winnamex.cxx │ │ │ ├── winscale1x.cxx │ │ │ └── winscale2x.cxx │ │ ├── spawn │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── namepubx.cxx │ │ │ ├── selfconaccx.cxx │ │ │ ├── spawnargvx.cxx │ │ │ ├── spawnintrax.cxx │ │ │ └── testlist.in │ │ ├── testlist.in │ │ ├── topo │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── distgraphcxx.cxx │ │ │ └── testlist.in │ │ └── util │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── mtest.cxx │ ├── datatype │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── blockindexed-misc.c │ │ ├── blockindexed-zero-count.c │ │ ├── contents.c │ │ ├── contig-zero-count.c │ │ ├── contigstruct.c │ │ ├── cxx-types.c │ │ ├── darray-cyclic.c │ │ ├── darray-pack.c │ │ ├── dataalign.c │ │ ├── gaddress.c │ │ ├── get-elements-pairtype.c │ │ ├── get-elements.c │ │ ├── getpartelm.c │ │ ├── hindexed-zeros.c │ │ ├── hindexed_block.c │ │ ├── hindexed_block_contents.c │ │ ├── hvecblklen.c │ │ ├── indexed-misc.c │ │ ├── large-count.c │ │ ├── large_type.c │ │ ├── large_type_sendrec.c │ │ ├── large_vec.c │ │ ├── lbub.c │ │ ├── localpack.c │ │ ├── longdouble.c │ │ ├── lots-of-types.c │ │ ├── pairtype-pack.c │ │ ├── pairtype-size-extent.c │ │ ├── segtest.c │ │ ├── sendrecvt2.c │ │ ├── sendrecvt4.c │ │ ├── simple-commit.c │ │ ├── simple-pack-external.c │ │ ├── simple-pack.c │ │ ├── simple-resized.c │ │ ├── simple-size-extent.c │ │ ├── sizedtypes.c │ │ ├── slice-pack-external.c │ │ ├── slice-pack.c │ │ ├── struct-derived-zeros.c │ │ ├── struct-empty-el.c │ │ ├── struct-ezhov.c │ │ ├── struct-no-real-types.c │ │ ├── struct-pack.c │ │ ├── struct-verydeep.c │ │ ├── struct-zero-count.c │ │ ├── structpack2.c │ │ ├── subarray-pack.c │ │ ├── subarray.c │ │ ├── testlist.ampi │ │ ├── testlist.in │ │ ├── tfree.c │ │ ├── tmatchsize.c │ │ ├── transpose-pack.c │ │ ├── tresized.c │ │ ├── tresized2.c │ │ ├── triangular-pack.c │ │ ├── typecommit.c │ │ ├── typefree.c │ │ ├── typelb.c │ │ ├── typename.c │ │ ├── unpack.c │ │ ├── unusual-noncontigs.c │ │ ├── vecblklen.c │ │ ├── zero-blklen-vector.c │ │ ├── zeroblks.c │ │ └── zeroparms.c │ ├── errhan │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── adderr.c │ │ ├── commcall.c │ │ ├── dynamic_errcode_predefined_errclass.c │ │ ├── errcode.c │ │ ├── errfatal.c │ │ ├── errmsg.c │ │ ├── errring.c │ │ ├── errstring.c │ │ ├── errstring2.c │ │ ├── predef_eh.c │ │ ├── testlist │ │ └── testlist.ampi │ ├── errors │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── attr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── keyvalmis.c │ │ │ ├── testlist │ │ │ └── testlist.ampi │ │ ├── basic │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── debabort.c │ │ │ └── lefthandles.c │ │ ├── coll │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bcastlength.c │ │ │ ├── noalias.c │ │ │ ├── noalias2.c │ │ │ ├── noalias3.c │ │ │ ├── reduce_local.c │ │ │ ├── rerr.c │ │ │ ├── testlist │ │ │ └── testlist.ampi │ │ ├── comm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ccreate1.c │ │ │ ├── cfree.c │ │ │ ├── manysplit.c │ │ │ ├── testlist │ │ │ ├── testlist.ampi │ │ │ ├── too_many_comms.c │ │ │ ├── too_many_comms2.c │ │ │ ├── too_many_comms3.c │ │ │ ├── too_many_icomms.c │ │ │ ├── too_many_icomms2.c │ │ │ └── userdup.c │ │ ├── cxx │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── errhan │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── commerrx.cxx │ │ │ │ ├── errgetx.cxx │ │ │ │ ├── errsetx.cxx │ │ │ │ ├── testlist │ │ │ │ └── throwtest.cxx │ │ │ ├── io │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── errgetfilex.cxx │ │ │ │ ├── fileerrretx.cxx │ │ │ │ ├── testlist │ │ │ │ └── throwtestfilex.cxx │ │ │ └── testlist.in │ │ ├── datatype │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── getcnterr.c │ │ │ └── testlist │ │ ├── f08 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── io │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── testlist │ │ │ │ └── uerrhandf08.f90 │ │ │ └── testlist │ │ ├── f77 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── io │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── addsize.h.in │ │ │ │ ├── iooffset.h.in │ │ │ │ ├── testlist │ │ │ │ └── uerrhandf.f │ │ │ └── testlist.in │ │ ├── f90 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── io │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.am-stamp │ │ │ │ ├── Makefile.in │ │ │ │ ├── testlist │ │ │ │ └── uerrhandf90.f90 │ │ │ └── testlist.in │ │ ├── faults │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── collf1.c │ │ │ ├── collf2.c │ │ │ ├── pt2ptf1.c │ │ │ ├── pt2ptf2.c │ │ │ └── testlist │ │ ├── group │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── gerr.c │ │ │ ├── testlist │ │ │ └── testlist.ampi │ │ ├── io │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── file_errhdl.c │ │ │ ├── fileerrret.c │ │ │ ├── openerr.c │ │ │ └── testlist │ │ ├── pt2pt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── errinstatta.c │ │ │ ├── errinstatts.c │ │ │ ├── errinstatwa.c │ │ │ ├── errinstatws.c │ │ │ ├── proberank.c │ │ │ ├── testlist │ │ │ ├── testlist.ampi │ │ │ ├── truncmsg1.c │ │ │ └── truncmsg2.c │ │ ├── rma │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cas_type_check.c │ │ │ ├── testlist │ │ │ ├── testlist.ampi │ │ │ ├── win_sync.h │ │ │ ├── win_sync_complete.c │ │ │ ├── win_sync_free_at.c │ │ │ ├── win_sync_free_pt.c │ │ │ ├── win_sync_lock_at.c │ │ │ ├── win_sync_lock_fence.c │ │ │ ├── win_sync_lock_pt.c │ │ │ ├── win_sync_nested.c │ │ │ ├── win_sync_op.c │ │ │ ├── win_sync_unlock.c │ │ │ ├── winerr.c │ │ │ └── winerr2.c │ │ ├── spawn │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── badport.c │ │ │ ├── lookup_name.c │ │ │ ├── testlist.in │ │ │ └── unpub.c │ │ ├── testlist.ampi │ │ ├── testlist.in │ │ └── topo │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cartsmall.c │ │ │ ├── testlist │ │ │ └── testlist.ampi │ ├── f08 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── attr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── attrlangc.c │ │ │ ├── attrlangf08.f90 │ │ │ ├── attrmpi1f08.f90 │ │ │ ├── baseattr2f08.f90 │ │ │ ├── baseattr3f08.f90 │ │ │ ├── baseattrf08.f90 │ │ │ ├── commattr2f08.f90 │ │ │ ├── commattr3f08.f90 │ │ │ ├── commattrf08.f90 │ │ │ ├── fandcattrc.c │ │ │ ├── fandcattrf08.f90 │ │ │ ├── testlist │ │ │ ├── typeattr2f08.f90 │ │ │ ├── typeattr3f08.f90 │ │ │ └── typeattrf08.f90 │ │ ├── coll │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── allredint8f08.f90 │ │ │ ├── allredopttf08.f90 │ │ │ ├── alltoallvf08.f90 │ │ │ ├── alltoallwf08.f90 │ │ │ ├── exscanf08.f90 │ │ │ ├── inplacef08.f90 │ │ │ ├── nonblocking_inpf08.f90 │ │ │ ├── nonblockingf08.f90 │ │ │ ├── red_scat_blockf08.f90 │ │ │ ├── redscatf08.f90 │ │ │ ├── reducelocalf08.f90 │ │ │ ├── split_typef08.f90 │ │ │ ├── testlist │ │ │ ├── uallreducef08.f90 │ │ │ └── vw_inplacef08.f90 │ │ ├── comm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── commerrf08.f90 │ │ │ ├── commnamef08.f90 │ │ │ └── testlist │ │ ├── datatype │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── allctypesf08.f90 │ │ │ ├── createf08.f90 │ │ │ ├── createf90.f90 │ │ │ ├── gaddressf08.f90 │ │ │ ├── get_elem_d.f90 │ │ │ ├── get_elem_u.f90 │ │ │ ├── hindex1f08.f90 │ │ │ ├── hindexed_blockf08.f90 │ │ │ ├── indtype.f90 │ │ │ ├── kinds.f90 │ │ │ ├── packef08.f90 │ │ │ ├── sizeof.f90 │ │ │ ├── structf.f90 │ │ │ ├── testlist │ │ │ ├── trf08.f90 │ │ │ ├── typecntsf08.f90 │ │ │ ├── typem2f08.f90 │ │ │ ├── typename3f08.f90 │ │ │ ├── typenamef08.f90 │ │ │ ├── typesnamef08.f90 │ │ │ └── typesubf08.f90 │ │ ├── ext │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── allocmemf90.f90 │ │ │ ├── c2f2cf90.f90 │ │ │ ├── c2f90mult.c │ │ │ ├── ctypesinf90.f90 │ │ │ └── testlist │ │ ├── info │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── infotest2f90.f90 │ │ │ ├── infotestf90.f90 │ │ │ └── testlist │ │ ├── init │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── baseenvf90.f90 │ │ │ └── testlist │ │ ├── io │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── atomicityf90.f90 │ │ │ ├── c2f2ciof90.f90 │ │ │ ├── c2f902cio.c │ │ │ ├── c2f90multio.c │ │ │ ├── fileerrf90.f90 │ │ │ ├── fileinfof90.f90 │ │ │ ├── i_fcoll_test.f90 │ │ │ ├── ioharness.defn │ │ │ ├── ioharness.tlt │ │ │ ├── miscfilef90.f90 │ │ │ ├── setviewcurf90.f90 │ │ │ ├── shpositionf90.f90 │ │ │ └── testlist.in │ │ ├── misc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── hello.f90 │ │ │ ├── ring.f90 │ │ │ ├── sizeof2.f90 │ │ │ └── testlist │ │ ├── profile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── profile1f90.f90 │ │ │ └── testlist │ │ ├── pt2pt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── allpairf08.f90 │ │ │ ├── dummyf08.f90 │ │ │ ├── greqf08.f90 │ │ │ ├── mprobef08.f90 │ │ │ ├── statusesf08.f90 │ │ │ └── testlist │ │ ├── rma │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aintf08.f90 │ │ │ ├── baseattrwinf08.f90 │ │ │ ├── c2f2cwinf08.f90 │ │ │ ├── c2f902cwin.c │ │ │ ├── testlist.in │ │ │ ├── winaccf08.f90 │ │ │ ├── winattr2f08.f90 │ │ │ ├── winattrf08.f90 │ │ │ ├── winerrf08.f90 │ │ │ ├── winfencef08.f90 │ │ │ ├── wingetf08.f90 │ │ │ ├── wingroupf08.f90 │ │ │ ├── winnamef08.f90 │ │ │ ├── winscale1f08.f90 │ │ │ └── winscale2f08.f90 │ │ ├── spawn │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── connaccf90.f90 │ │ │ ├── namepubf90.f90 │ │ │ ├── spawnargvf03.f90 │ │ │ ├── spawnargvf90.f90 │ │ │ ├── spawnf90.f90 │ │ │ ├── spawnmult2f90.f90 │ │ │ ├── spawnmultf03.f90 │ │ │ ├── spawnmultf90.f90 │ │ │ └── testlist.in │ │ ├── subarray │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test1.f90 │ │ │ ├── test10.f90 │ │ │ ├── test11.f90 │ │ │ ├── test12.f90 │ │ │ ├── test13.f90 │ │ │ ├── test14.f90 │ │ │ ├── test15.f90 │ │ │ ├── test2.f90 │ │ │ ├── test3.f90 │ │ │ ├── test4.f90 │ │ │ ├── test5.f90 │ │ │ ├── test6.f90 │ │ │ ├── test7.f90 │ │ │ ├── test8.f90 │ │ │ ├── test9.f90 │ │ │ └── testlist │ │ ├── testlist │ │ ├── timer │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── testlist │ │ │ └── wtimef90.f90 │ │ ├── topo │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cartcrf90.f90 │ │ │ ├── dgraph_unwgtf90.f90 │ │ │ ├── dgraph_wgtf90.f90 │ │ │ └── testlist │ │ └── util │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── mtestf08.f90 │ ├── f77 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── attr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── attraints.h.in │ │ │ ├── attrmpi1f.f │ │ │ ├── baseattr2f.f │ │ │ ├── baseattrf.f │ │ │ ├── commattr2f.f │ │ │ ├── commattr3f.f │ │ │ ├── commattr4f.f │ │ │ ├── commattrf.f │ │ │ ├── testlist │ │ │ ├── typeattr2f.f │ │ │ ├── typeattr3f.f │ │ │ └── typeattrf.f │ │ ├── coll │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── allredint8f.f │ │ │ ├── allredopttf.f │ │ │ ├── alltoallvf.f │ │ │ ├── alltoallwf.f │ │ │ ├── exscanf.f │ │ │ ├── inplacef.f │ │ │ ├── nonblocking_inpf.f │ │ │ ├── nonblockingf.f │ │ │ ├── red_scat_blockf.f │ │ │ ├── redscatf.f │ │ │ ├── reducelocalf.f │ │ │ ├── split_typef.f │ │ │ ├── testlist │ │ │ ├── uallreducef.f │ │ │ └── vw_inplacef.f │ │ ├── comm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── commerrf.f │ │ │ ├── commnamef.f │ │ │ └── testlist │ │ ├── datatype │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── allctypesf.f │ │ │ ├── bottomc.c │ │ │ ├── bottomf.f │ │ │ ├── gaddressf.f │ │ │ ├── hindex1f.f │ │ │ ├── hindexed_blockf.f │ │ │ ├── packef.f │ │ │ ├── testlist │ │ │ ├── typeaints.h.in │ │ │ ├── typecntsf.f │ │ │ ├── typem2f.f │ │ │ ├── typename3f.f │ │ │ ├── typenamef.f │ │ │ ├── typesnamef.f │ │ │ └── typesubf.f │ │ ├── ext │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── add1size.h.in │ │ │ ├── allocmemf.f │ │ │ ├── c2f2c.c │ │ │ ├── c2f2cf.f │ │ │ ├── c2fmult.c │ │ │ ├── ctypesfromc.c │ │ │ ├── ctypesinf.f │ │ │ └── testlist.in │ │ ├── info │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── infotest2f.f │ │ │ ├── infotestf.f │ │ │ └── testlist │ │ ├── init │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── baseenvf.f │ │ │ └── testlist │ │ ├── io │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── atomicityf.f │ │ │ ├── c2f2cio.c │ │ │ ├── c2f2ciof.f │ │ │ ├── c2fmultio.c │ │ │ ├── fileerrf.f │ │ │ ├── fileinfof.f │ │ │ ├── i_setviewcurf.f │ │ │ ├── ioaint.h.in │ │ │ ├── iodisp.h.in │ │ │ ├── ioharness.defn │ │ │ ├── ioharness.tlt │ │ │ ├── iooffset.h.in │ │ │ ├── miscfilef.f │ │ │ ├── setviewcurf.f │ │ │ ├── shpositionf.f │ │ │ └── testlist.in │ │ ├── profile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── profile1f.f │ │ │ └── testlist │ │ ├── pt2pt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── allpairf.f │ │ │ ├── attr1aints.h.in │ │ │ ├── dummyf.f │ │ │ ├── greqf.f │ │ │ ├── mprobef.f │ │ │ ├── statusesf.f │ │ │ └── testlist │ │ ├── rma │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── addsize.h.in │ │ │ ├── aintf.f │ │ │ ├── baseattrwinf.f │ │ │ ├── c2f2cwin.c │ │ │ ├── c2f2cwinf.f │ │ │ ├── testlist.in │ │ │ ├── winaccf.f │ │ │ ├── winattr2f.f │ │ │ ├── winattrf.f │ │ │ ├── winerrf.f │ │ │ ├── winfencef.f │ │ │ ├── wingetf.f │ │ │ ├── wingroupf.f │ │ │ ├── winnamef.f │ │ │ ├── winscale1f.f │ │ │ └── winscale2f.f │ │ ├── spawn │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── connaccf.f │ │ │ ├── namepubf.f │ │ │ ├── spawnargvf.f │ │ │ ├── spawnf.f │ │ │ ├── spawnmult2f.f │ │ │ ├── spawnmultf.f │ │ │ ├── testlist.in │ │ │ └── type1aint.h.in │ │ ├── testlist.in │ │ ├── topo │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cartcrf.f │ │ │ ├── dgraph_unwgtf.f │ │ │ ├── dgraph_wgtf.f │ │ │ └── testlist │ │ └── util │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── mtestf.f │ ├── f90 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── attr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.ap │ │ │ ├── Makefile.in │ │ │ ├── attrlangc.c │ │ │ ├── attrlangf90.f90 │ │ │ ├── attrmpi1f90.f90 │ │ │ ├── baseattr2f90.f90 │ │ │ ├── baseattr3f90.f90 │ │ │ ├── baseattrf90.f90 │ │ │ ├── commattr2f90.f90 │ │ │ ├── commattr3f90.f90 │ │ │ ├── commattr4f90.f90 │ │ │ ├── commattrf90.f90 │ │ │ ├── fandcattrc.c │ │ │ ├── fandcattrf90.f90 │ │ │ ├── testlist │ │ │ ├── testlist.ap │ │ │ ├── typeattr2f90.f90 │ │ │ ├── typeattr3f90.f90 │ │ │ └── typeattrf90.f90 │ │ ├── coll │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.in │ │ │ ├── allredint8f90.f90 │ │ │ ├── allredopttf90.f90 │ │ │ ├── alltoallvf90.f90 │ │ │ ├── alltoallwf90.f90 │ │ │ ├── exscanf90.f90 │ │ │ ├── inplacef90.f90 │ │ │ ├── nonblocking_inpf90.f90 │ │ │ ├── nonblockingf90.f90 │ │ │ ├── red_scat_blockf90.f90 │ │ │ ├── redscatf90.f90 │ │ │ ├── reducelocalf90.f90 │ │ │ ├── split_typef90.f90 │ │ │ ├── testlist │ │ │ ├── uallreducef90.f90 │ │ │ └── vw_inplacef90.f90 │ │ ├── comm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.in │ │ │ ├── commerrf90.f90 │ │ │ ├── commnamef90.f90 │ │ │ └── testlist │ │ ├── datatype │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.ap │ │ │ ├── Makefile.in │ │ │ ├── allctypesf90.f90 │ │ │ ├── bottomc.c │ │ │ ├── bottomf90.f90 │ │ │ ├── createf90.f90 │ │ │ ├── gaddressf90.f90 │ │ │ ├── get_elem_d.f90 │ │ │ ├── get_elem_u.f90 │ │ │ ├── hindex1f90.f90 │ │ │ ├── hindexed_blockf90.f90 │ │ │ ├── indtype.f90 │ │ │ ├── kinds.f90 │ │ │ ├── packef90.f90 │ │ │ ├── sizeof.f90 │ │ │ ├── structf.f90 │ │ │ ├── testlist │ │ │ ├── testlist.ap │ │ │ ├── trf90.f90 │ │ │ ├── typecntsf90.f90 │ │ │ ├── typem2f90.f90 │ │ │ ├── typename3f90.f90 │ │ │ ├── typenamef90.f90 │ │ │ ├── typesnamef90.f90 │ │ │ └── typesubf90.f90 │ │ ├── ext │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.ap │ │ │ ├── Makefile.in │ │ │ ├── allocmemf90.f90 │ │ │ ├── c2f2cf90.f90 │ │ │ ├── c2f902c.c │ │ │ ├── c2f90mult.c │ │ │ ├── ctypesfromc.c │ │ │ ├── ctypesinf90.f90 │ │ │ └── testlist.in │ │ ├── f90types │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── createf90types.c │ │ │ └── testlist │ │ ├── info │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.in │ │ │ ├── infotest2f90.f90 │ │ │ ├── infotestf90.f90 │ │ │ └── testlist │ │ ├── init │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.in │ │ │ ├── baseenvf90.f90 │ │ │ └── testlist │ │ ├── io │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.ap │ │ │ ├── Makefile.in │ │ │ ├── atomicityf90.f90 │ │ │ ├── c2f2ciof90.f90 │ │ │ ├── c2f902cio.c │ │ │ ├── c2f90multio.c │ │ │ ├── fileerrf90.f90 │ │ │ ├── fileinfof90.f90 │ │ │ ├── i_setviewcurf90.f90 │ │ │ ├── miscfilef90.f90 │ │ │ ├── setviewcurf90.f90 │ │ │ ├── shpositionf90.f90 │ │ │ └── testlist.in │ │ ├── misc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── sizeof2.f90 │ │ │ ├── testlist │ │ │ └── testlist.ap │ │ ├── profile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.in │ │ │ ├── profile1f90.f90 │ │ │ └── testlist │ │ ├── pt2pt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.in │ │ │ ├── allpairf90.f90 │ │ │ ├── dummyf90.f90 │ │ │ ├── greqf90.f90 │ │ │ ├── mprobef90.f90 │ │ │ ├── statusesf90.f90 │ │ │ └── testlist │ │ ├── rma │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.in │ │ │ ├── aintf90.f90 │ │ │ ├── baseattrwinf90.f90 │ │ │ ├── c2f2cwinf90.f90 │ │ │ ├── c2f902cwin.c │ │ │ ├── testlist.in │ │ │ ├── winaccf90.f90 │ │ │ ├── winattr2f90.f90 │ │ │ ├── winattrf90.f90 │ │ │ ├── winerrf90.f90 │ │ │ ├── winfencef90.f90 │ │ │ ├── wingetf90.f90 │ │ │ ├── wingroupf90.f90 │ │ │ ├── winnamef90.f90 │ │ │ ├── winscale1f90.f90 │ │ │ └── winscale2f90.f90 │ │ ├── spawn │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.ap │ │ │ ├── Makefile.in │ │ │ ├── connaccf90.f90 │ │ │ ├── namepubf90.f90 │ │ │ ├── spawnargvf03.f90 │ │ │ ├── spawnargvf90.f90 │ │ │ ├── spawnf90.f90 │ │ │ ├── spawnmult2f90.f90 │ │ │ ├── spawnmultf03.f90 │ │ │ ├── spawnmultf90.f90 │ │ │ ├── testlist.ap │ │ │ └── testlist.in │ │ ├── testlist.in │ │ ├── timer │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── testlist │ │ │ └── wtimef90.f90 │ │ ├── topo │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.in │ │ │ ├── cartcrf90.f90 │ │ │ ├── dgraph_unwgtf90.f90 │ │ │ ├── dgraph_wgtf90.f90 │ │ │ └── testlist │ │ └── util │ │ │ ├── Makefile.am │ │ │ ├── Makefile.am-stamp │ │ │ ├── Makefile.in │ │ │ └── mtestf90.f90 │ ├── ft │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── abort.c │ │ ├── agree.c │ │ ├── agree_shrink.c │ │ ├── anysource.c │ │ ├── barrier.c │ │ ├── bcast.c │ │ ├── die.c │ │ ├── failure_ack.c │ │ ├── gather.c │ │ ├── irecvdead.c │ │ ├── isendalive.c │ │ ├── isenddead.c │ │ ├── multi_isendalive.c │ │ ├── nbccoll.c │ │ ├── recvdead.c │ │ ├── reduce.c │ │ ├── revoke_nofail.c │ │ ├── revoke_shrink.c │ │ ├── scatter.c │ │ ├── sendalive.c │ │ ├── senddead.c │ │ ├── shrink.c │ │ ├── testlist │ │ └── testlist.ampi │ ├── generate_ampi_testlist │ ├── group │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── glpid.c │ │ ├── groupcreate.c │ │ ├── groupnullincl.c │ │ ├── grouptest.c │ │ ├── grouptest2.c │ │ ├── gtranks.c │ │ ├── gtranksperf.c │ │ ├── testlist │ │ └── testlist.ampi │ ├── impls │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── hydra │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── binding_reference │ │ │ │ ├── expected.topo1.board.board.out │ │ │ │ ├── expected.topo1.board.core-2.out │ │ │ │ ├── expected.topo1.board.core-4.out │ │ │ │ ├── expected.topo1.board.core.out │ │ │ │ ├── expected.topo1.board.hwthread-2.out │ │ │ │ ├── expected.topo1.board.hwthread-4.out │ │ │ │ ├── expected.topo1.board.hwthread-8.out │ │ │ │ ├── expected.topo1.board.hwthread.out │ │ │ │ ├── expected.topo1.board.numa.out │ │ │ │ ├── expected.topo1.board.socket.out │ │ │ │ ├── expected.topo1.core-2.board.out │ │ │ │ ├── expected.topo1.core-2.core-2.out │ │ │ │ ├── expected.topo1.core-2.core-4.out │ │ │ │ ├── expected.topo1.core-2.core.out │ │ │ │ ├── expected.topo1.core-2.hwthread-2.out │ │ │ │ ├── expected.topo1.core-2.hwthread-4.out │ │ │ │ ├── expected.topo1.core-2.hwthread-8.out │ │ │ │ ├── expected.topo1.core-2.hwthread.out │ │ │ │ ├── expected.topo1.core-2.numa.out │ │ │ │ ├── expected.topo1.core-2.socket.out │ │ │ │ ├── expected.topo1.core-4.board.out │ │ │ │ ├── expected.topo1.core-4.core-2.out │ │ │ │ ├── expected.topo1.core-4.core-4.out │ │ │ │ ├── expected.topo1.core-4.core.out │ │ │ │ ├── expected.topo1.core-4.hwthread-2.out │ │ │ │ ├── expected.topo1.core-4.hwthread-4.out │ │ │ │ ├── expected.topo1.core-4.hwthread-8.out │ │ │ │ ├── expected.topo1.core-4.hwthread.out │ │ │ │ ├── expected.topo1.core-4.numa.out │ │ │ │ ├── expected.topo1.core-4.socket.out │ │ │ │ ├── expected.topo1.core.board.out │ │ │ │ ├── expected.topo1.core.core-2.out │ │ │ │ ├── expected.topo1.core.core-4.out │ │ │ │ ├── expected.topo1.core.core.out │ │ │ │ ├── expected.topo1.core.hwthread-2.out │ │ │ │ ├── expected.topo1.core.hwthread-4.out │ │ │ │ ├── expected.topo1.core.hwthread-8.out │ │ │ │ ├── expected.topo1.core.hwthread.out │ │ │ │ ├── expected.topo1.core.numa.out │ │ │ │ ├── expected.topo1.core.socket.out │ │ │ │ ├── expected.topo1.hwthread-2.board.out │ │ │ │ ├── expected.topo1.hwthread-2.core-2.out │ │ │ │ ├── expected.topo1.hwthread-2.core-4.out │ │ │ │ ├── expected.topo1.hwthread-2.core.out │ │ │ │ ├── expected.topo1.hwthread-2.hwthread-2.out │ │ │ │ ├── expected.topo1.hwthread-2.hwthread-4.out │ │ │ │ ├── expected.topo1.hwthread-2.hwthread-8.out │ │ │ │ ├── expected.topo1.hwthread-2.hwthread.out │ │ │ │ ├── expected.topo1.hwthread-2.numa.out │ │ │ │ ├── expected.topo1.hwthread-2.socket.out │ │ │ │ ├── expected.topo1.hwthread-4.board.out │ │ │ │ ├── expected.topo1.hwthread-4.core-2.out │ │ │ │ ├── expected.topo1.hwthread-4.core-4.out │ │ │ │ ├── expected.topo1.hwthread-4.core.out │ │ │ │ ├── expected.topo1.hwthread-4.hwthread-2.out │ │ │ │ ├── expected.topo1.hwthread-4.hwthread-4.out │ │ │ │ ├── expected.topo1.hwthread-4.hwthread-8.out │ │ │ │ ├── expected.topo1.hwthread-4.hwthread.out │ │ │ │ ├── expected.topo1.hwthread-4.numa.out │ │ │ │ ├── expected.topo1.hwthread-4.socket.out │ │ │ │ ├── expected.topo1.hwthread-8.board.out │ │ │ │ ├── expected.topo1.hwthread-8.core-2.out │ │ │ │ ├── expected.topo1.hwthread-8.core-4.out │ │ │ │ ├── expected.topo1.hwthread-8.core.out │ │ │ │ ├── expected.topo1.hwthread-8.hwthread-2.out │ │ │ │ ├── expected.topo1.hwthread-8.hwthread-4.out │ │ │ │ ├── expected.topo1.hwthread-8.hwthread-8.out │ │ │ │ ├── expected.topo1.hwthread-8.hwthread.out │ │ │ │ ├── expected.topo1.hwthread-8.numa.out │ │ │ │ ├── expected.topo1.hwthread-8.socket.out │ │ │ │ ├── expected.topo1.hwthread.board.out │ │ │ │ ├── expected.topo1.hwthread.core-2.out │ │ │ │ ├── expected.topo1.hwthread.core-4.out │ │ │ │ ├── expected.topo1.hwthread.core.out │ │ │ │ ├── expected.topo1.hwthread.hwthread-2.out │ │ │ │ ├── expected.topo1.hwthread.hwthread-4.out │ │ │ │ ├── expected.topo1.hwthread.hwthread-8.out │ │ │ │ ├── expected.topo1.hwthread.hwthread.out │ │ │ │ ├── expected.topo1.hwthread.numa.out │ │ │ │ ├── expected.topo1.hwthread.socket.out │ │ │ │ ├── expected.topo1.numa.board.out │ │ │ │ ├── expected.topo1.numa.core-2.out │ │ │ │ ├── expected.topo1.numa.core-4.out │ │ │ │ ├── expected.topo1.numa.core.out │ │ │ │ ├── expected.topo1.numa.hwthread-2.out │ │ │ │ ├── expected.topo1.numa.hwthread-4.out │ │ │ │ ├── expected.topo1.numa.hwthread-8.out │ │ │ │ ├── expected.topo1.numa.hwthread.out │ │ │ │ ├── expected.topo1.numa.numa.out │ │ │ │ ├── expected.topo1.numa.socket.out │ │ │ │ ├── expected.topo1.socket.board.out │ │ │ │ ├── expected.topo1.socket.core-2.out │ │ │ │ ├── expected.topo1.socket.core-4.out │ │ │ │ ├── expected.topo1.socket.core.out │ │ │ │ ├── expected.topo1.socket.hwthread-2.out │ │ │ │ ├── expected.topo1.socket.hwthread-4.out │ │ │ │ ├── expected.topo1.socket.hwthread-8.out │ │ │ │ ├── expected.topo1.socket.hwthread.out │ │ │ │ ├── expected.topo1.socket.numa.out │ │ │ │ ├── expected.topo1.socket.socket.out │ │ │ │ ├── expected.topo2.board.board.out │ │ │ │ ├── expected.topo2.board.core-2.out │ │ │ │ ├── expected.topo2.board.core-4.out │ │ │ │ ├── expected.topo2.board.core.out │ │ │ │ ├── expected.topo2.board.hwthread-2.out │ │ │ │ ├── expected.topo2.board.hwthread-4.out │ │ │ │ ├── expected.topo2.board.hwthread-8.out │ │ │ │ ├── expected.topo2.board.hwthread.out │ │ │ │ ├── expected.topo2.board.numa.out │ │ │ │ ├── expected.topo2.board.socket.out │ │ │ │ ├── expected.topo2.core-2.board.out │ │ │ │ ├── expected.topo2.core-2.core-2.out │ │ │ │ ├── expected.topo2.core-2.core-4.out │ │ │ │ ├── expected.topo2.core-2.core.out │ │ │ │ ├── expected.topo2.core-2.hwthread-2.out │ │ │ │ ├── expected.topo2.core-2.hwthread-4.out │ │ │ │ ├── expected.topo2.core-2.hwthread-8.out │ │ │ │ ├── expected.topo2.core-2.hwthread.out │ │ │ │ ├── expected.topo2.core-2.numa.out │ │ │ │ ├── expected.topo2.core-2.socket.out │ │ │ │ ├── expected.topo2.core-4.board.out │ │ │ │ ├── expected.topo2.core-4.core-2.out │ │ │ │ ├── expected.topo2.core-4.core-4.out │ │ │ │ ├── expected.topo2.core-4.core.out │ │ │ │ ├── expected.topo2.core-4.hwthread-2.out │ │ │ │ ├── expected.topo2.core-4.hwthread-4.out │ │ │ │ ├── expected.topo2.core-4.hwthread-8.out │ │ │ │ ├── expected.topo2.core-4.hwthread.out │ │ │ │ ├── expected.topo2.core-4.numa.out │ │ │ │ ├── expected.topo2.core-4.socket.out │ │ │ │ ├── expected.topo2.core.board.out │ │ │ │ ├── expected.topo2.core.core-2.out │ │ │ │ ├── expected.topo2.core.core-4.out │ │ │ │ ├── expected.topo2.core.core.out │ │ │ │ ├── expected.topo2.core.hwthread-2.out │ │ │ │ ├── expected.topo2.core.hwthread-4.out │ │ │ │ ├── expected.topo2.core.hwthread-8.out │ │ │ │ ├── expected.topo2.core.hwthread.out │ │ │ │ ├── expected.topo2.core.numa.out │ │ │ │ ├── expected.topo2.core.socket.out │ │ │ │ ├── expected.topo2.hwthread-2.board.out │ │ │ │ ├── expected.topo2.hwthread-2.core-2.out │ │ │ │ ├── expected.topo2.hwthread-2.core-4.out │ │ │ │ ├── expected.topo2.hwthread-2.core.out │ │ │ │ ├── expected.topo2.hwthread-2.hwthread-2.out │ │ │ │ ├── expected.topo2.hwthread-2.hwthread-4.out │ │ │ │ ├── expected.topo2.hwthread-2.hwthread-8.out │ │ │ │ ├── expected.topo2.hwthread-2.hwthread.out │ │ │ │ ├── expected.topo2.hwthread-2.numa.out │ │ │ │ ├── expected.topo2.hwthread-2.socket.out │ │ │ │ ├── expected.topo2.hwthread-4.board.out │ │ │ │ ├── expected.topo2.hwthread-4.core-2.out │ │ │ │ ├── expected.topo2.hwthread-4.core-4.out │ │ │ │ ├── expected.topo2.hwthread-4.core.out │ │ │ │ ├── expected.topo2.hwthread-4.hwthread-2.out │ │ │ │ ├── expected.topo2.hwthread-4.hwthread-4.out │ │ │ │ ├── expected.topo2.hwthread-4.hwthread-8.out │ │ │ │ ├── expected.topo2.hwthread-4.hwthread.out │ │ │ │ ├── expected.topo2.hwthread-4.numa.out │ │ │ │ ├── expected.topo2.hwthread-4.socket.out │ │ │ │ ├── expected.topo2.hwthread-8.board.out │ │ │ │ ├── expected.topo2.hwthread-8.core-2.out │ │ │ │ ├── expected.topo2.hwthread-8.core-4.out │ │ │ │ ├── expected.topo2.hwthread-8.core.out │ │ │ │ ├── expected.topo2.hwthread-8.hwthread-2.out │ │ │ │ ├── expected.topo2.hwthread-8.hwthread-4.out │ │ │ │ ├── expected.topo2.hwthread-8.hwthread-8.out │ │ │ │ ├── expected.topo2.hwthread-8.hwthread.out │ │ │ │ ├── expected.topo2.hwthread-8.numa.out │ │ │ │ ├── expected.topo2.hwthread-8.socket.out │ │ │ │ ├── expected.topo2.hwthread.board.out │ │ │ │ ├── expected.topo2.hwthread.core-2.out │ │ │ │ ├── expected.topo2.hwthread.core-4.out │ │ │ │ ├── expected.topo2.hwthread.core.out │ │ │ │ ├── expected.topo2.hwthread.hwthread-2.out │ │ │ │ ├── expected.topo2.hwthread.hwthread-4.out │ │ │ │ ├── expected.topo2.hwthread.hwthread-8.out │ │ │ │ ├── expected.topo2.hwthread.hwthread.out │ │ │ │ ├── expected.topo2.hwthread.numa.out │ │ │ │ ├── expected.topo2.hwthread.socket.out │ │ │ │ ├── expected.topo2.numa.board.out │ │ │ │ ├── expected.topo2.numa.core-2.out │ │ │ │ ├── expected.topo2.numa.core-4.out │ │ │ │ ├── expected.topo2.numa.core.out │ │ │ │ ├── expected.topo2.numa.hwthread-2.out │ │ │ │ ├── expected.topo2.numa.hwthread-4.out │ │ │ │ ├── expected.topo2.numa.hwthread-8.out │ │ │ │ ├── expected.topo2.numa.hwthread.out │ │ │ │ ├── expected.topo2.numa.numa.out │ │ │ │ ├── expected.topo2.numa.socket.out │ │ │ │ ├── expected.topo2.socket.board.out │ │ │ │ ├── expected.topo2.socket.core-2.out │ │ │ │ ├── expected.topo2.socket.core-4.out │ │ │ │ ├── expected.topo2.socket.core.out │ │ │ │ ├── expected.topo2.socket.hwthread-2.out │ │ │ │ ├── expected.topo2.socket.hwthread-4.out │ │ │ │ ├── expected.topo2.socket.hwthread-8.out │ │ │ │ ├── expected.topo2.socket.hwthread.out │ │ │ │ ├── expected.topo2.socket.numa.out │ │ │ │ ├── expected.topo2.socket.socket.out │ │ │ │ ├── expected.topo3.board.board.out │ │ │ │ ├── expected.topo3.board.core-2.out │ │ │ │ ├── expected.topo3.board.core-4.out │ │ │ │ ├── expected.topo3.board.core.out │ │ │ │ ├── expected.topo3.board.hwthread-2.out │ │ │ │ ├── expected.topo3.board.hwthread-4.out │ │ │ │ ├── expected.topo3.board.hwthread-8.out │ │ │ │ ├── expected.topo3.board.hwthread.out │ │ │ │ ├── expected.topo3.board.numa.out │ │ │ │ ├── expected.topo3.board.socket.out │ │ │ │ ├── expected.topo3.core-2.board.out │ │ │ │ ├── expected.topo3.core-2.core-2.out │ │ │ │ ├── expected.topo3.core-2.core-4.out │ │ │ │ ├── expected.topo3.core-2.core.out │ │ │ │ ├── expected.topo3.core-2.hwthread-2.out │ │ │ │ ├── expected.topo3.core-2.hwthread-4.out │ │ │ │ ├── expected.topo3.core-2.hwthread-8.out │ │ │ │ ├── expected.topo3.core-2.hwthread.out │ │ │ │ ├── expected.topo3.core-2.numa.out │ │ │ │ ├── expected.topo3.core-2.socket.out │ │ │ │ ├── expected.topo3.core-4.board.out │ │ │ │ ├── expected.topo3.core-4.core-2.out │ │ │ │ ├── expected.topo3.core-4.core-4.out │ │ │ │ ├── expected.topo3.core-4.core.out │ │ │ │ ├── expected.topo3.core-4.hwthread-2.out │ │ │ │ ├── expected.topo3.core-4.hwthread-4.out │ │ │ │ ├── expected.topo3.core-4.hwthread-8.out │ │ │ │ ├── expected.topo3.core-4.hwthread.out │ │ │ │ ├── expected.topo3.core-4.numa.out │ │ │ │ ├── expected.topo3.core-4.socket.out │ │ │ │ ├── expected.topo3.core.board.out │ │ │ │ ├── expected.topo3.core.core-2.out │ │ │ │ ├── expected.topo3.core.core-4.out │ │ │ │ ├── expected.topo3.core.core.out │ │ │ │ ├── expected.topo3.core.hwthread-2.out │ │ │ │ ├── expected.topo3.core.hwthread-4.out │ │ │ │ ├── expected.topo3.core.hwthread-8.out │ │ │ │ ├── expected.topo3.core.hwthread.out │ │ │ │ ├── expected.topo3.core.numa.out │ │ │ │ ├── expected.topo3.core.socket.out │ │ │ │ ├── expected.topo3.hwthread-2.board.out │ │ │ │ ├── expected.topo3.hwthread-2.core-2.out │ │ │ │ ├── expected.topo3.hwthread-2.core-4.out │ │ │ │ ├── expected.topo3.hwthread-2.core.out │ │ │ │ ├── expected.topo3.hwthread-2.hwthread-2.out │ │ │ │ ├── expected.topo3.hwthread-2.hwthread-4.out │ │ │ │ ├── expected.topo3.hwthread-2.hwthread-8.out │ │ │ │ ├── expected.topo3.hwthread-2.hwthread.out │ │ │ │ ├── expected.topo3.hwthread-2.numa.out │ │ │ │ ├── expected.topo3.hwthread-2.socket.out │ │ │ │ ├── expected.topo3.hwthread-4.board.out │ │ │ │ ├── expected.topo3.hwthread-4.core-2.out │ │ │ │ ├── expected.topo3.hwthread-4.core-4.out │ │ │ │ ├── expected.topo3.hwthread-4.core.out │ │ │ │ ├── expected.topo3.hwthread-4.hwthread-2.out │ │ │ │ ├── expected.topo3.hwthread-4.hwthread-4.out │ │ │ │ ├── expected.topo3.hwthread-4.hwthread-8.out │ │ │ │ ├── expected.topo3.hwthread-4.hwthread.out │ │ │ │ ├── expected.topo3.hwthread-4.numa.out │ │ │ │ ├── expected.topo3.hwthread-4.socket.out │ │ │ │ ├── expected.topo3.hwthread-8.board.out │ │ │ │ ├── expected.topo3.hwthread-8.core-2.out │ │ │ │ ├── expected.topo3.hwthread-8.core-4.out │ │ │ │ ├── expected.topo3.hwthread-8.core.out │ │ │ │ ├── expected.topo3.hwthread-8.hwthread-2.out │ │ │ │ ├── expected.topo3.hwthread-8.hwthread-4.out │ │ │ │ ├── expected.topo3.hwthread-8.hwthread-8.out │ │ │ │ ├── expected.topo3.hwthread-8.hwthread.out │ │ │ │ ├── expected.topo3.hwthread-8.numa.out │ │ │ │ ├── expected.topo3.hwthread-8.socket.out │ │ │ │ ├── expected.topo3.hwthread.board.out │ │ │ │ ├── expected.topo3.hwthread.core-2.out │ │ │ │ ├── expected.topo3.hwthread.core-4.out │ │ │ │ ├── expected.topo3.hwthread.core.out │ │ │ │ ├── expected.topo3.hwthread.hwthread-2.out │ │ │ │ ├── expected.topo3.hwthread.hwthread-4.out │ │ │ │ ├── expected.topo3.hwthread.hwthread-8.out │ │ │ │ ├── expected.topo3.hwthread.hwthread.out │ │ │ │ ├── expected.topo3.hwthread.numa.out │ │ │ │ ├── expected.topo3.hwthread.socket.out │ │ │ │ ├── expected.topo3.numa.board.out │ │ │ │ ├── expected.topo3.numa.core-2.out │ │ │ │ ├── expected.topo3.numa.core-4.out │ │ │ │ ├── expected.topo3.numa.core.out │ │ │ │ ├── expected.topo3.numa.hwthread-2.out │ │ │ │ ├── expected.topo3.numa.hwthread-4.out │ │ │ │ ├── expected.topo3.numa.hwthread-8.out │ │ │ │ ├── expected.topo3.numa.hwthread.out │ │ │ │ ├── expected.topo3.numa.numa.out │ │ │ │ ├── expected.topo3.numa.socket.out │ │ │ │ ├── expected.topo3.socket.board.out │ │ │ │ ├── expected.topo3.socket.core-2.out │ │ │ │ ├── expected.topo3.socket.core-4.out │ │ │ │ ├── expected.topo3.socket.core.out │ │ │ │ ├── expected.topo3.socket.hwthread-2.out │ │ │ │ ├── expected.topo3.socket.hwthread-4.out │ │ │ │ ├── expected.topo3.socket.hwthread-8.out │ │ │ │ ├── expected.topo3.socket.hwthread.out │ │ │ │ ├── expected.topo3.socket.numa.out │ │ │ │ ├── expected.topo3.socket.socket.out │ │ │ │ ├── expected.topo4.board.board.out │ │ │ │ ├── expected.topo4.board.core-2.out │ │ │ │ ├── expected.topo4.board.core-4.out │ │ │ │ ├── expected.topo4.board.core.out │ │ │ │ ├── expected.topo4.board.hwthread-2.out │ │ │ │ ├── expected.topo4.board.hwthread-4.out │ │ │ │ ├── expected.topo4.board.hwthread-8.out │ │ │ │ ├── expected.topo4.board.hwthread.out │ │ │ │ ├── expected.topo4.board.numa.out │ │ │ │ ├── expected.topo4.board.socket.out │ │ │ │ ├── expected.topo4.core-2.board.out │ │ │ │ ├── expected.topo4.core-2.core-2.out │ │ │ │ ├── expected.topo4.core-2.core-4.out │ │ │ │ ├── expected.topo4.core-2.core.out │ │ │ │ ├── expected.topo4.core-2.hwthread-2.out │ │ │ │ ├── expected.topo4.core-2.hwthread-4.out │ │ │ │ ├── expected.topo4.core-2.hwthread-8.out │ │ │ │ ├── expected.topo4.core-2.hwthread.out │ │ │ │ ├── expected.topo4.core-2.numa.out │ │ │ │ ├── expected.topo4.core-2.socket.out │ │ │ │ ├── expected.topo4.core-4.board.out │ │ │ │ ├── expected.topo4.core-4.core-2.out │ │ │ │ ├── expected.topo4.core-4.core-4.out │ │ │ │ ├── expected.topo4.core-4.core.out │ │ │ │ ├── expected.topo4.core-4.hwthread-2.out │ │ │ │ ├── expected.topo4.core-4.hwthread-4.out │ │ │ │ ├── expected.topo4.core-4.hwthread-8.out │ │ │ │ ├── expected.topo4.core-4.hwthread.out │ │ │ │ ├── expected.topo4.core-4.numa.out │ │ │ │ ├── expected.topo4.core-4.socket.out │ │ │ │ ├── expected.topo4.core.board.out │ │ │ │ ├── expected.topo4.core.core-2.out │ │ │ │ ├── expected.topo4.core.core-4.out │ │ │ │ ├── expected.topo4.core.core.out │ │ │ │ ├── expected.topo4.core.hwthread-2.out │ │ │ │ ├── expected.topo4.core.hwthread-4.out │ │ │ │ ├── expected.topo4.core.hwthread-8.out │ │ │ │ ├── expected.topo4.core.hwthread.out │ │ │ │ ├── expected.topo4.core.numa.out │ │ │ │ ├── expected.topo4.core.socket.out │ │ │ │ ├── expected.topo4.hwthread-2.board.out │ │ │ │ ├── expected.topo4.hwthread-2.core-2.out │ │ │ │ ├── expected.topo4.hwthread-2.core-4.out │ │ │ │ ├── expected.topo4.hwthread-2.core.out │ │ │ │ ├── expected.topo4.hwthread-2.hwthread-2.out │ │ │ │ ├── expected.topo4.hwthread-2.hwthread-4.out │ │ │ │ ├── expected.topo4.hwthread-2.hwthread-8.out │ │ │ │ ├── expected.topo4.hwthread-2.hwthread.out │ │ │ │ ├── expected.topo4.hwthread-2.numa.out │ │ │ │ ├── expected.topo4.hwthread-2.socket.out │ │ │ │ ├── expected.topo4.hwthread-4.board.out │ │ │ │ ├── expected.topo4.hwthread-4.core-2.out │ │ │ │ ├── expected.topo4.hwthread-4.core-4.out │ │ │ │ ├── expected.topo4.hwthread-4.core.out │ │ │ │ ├── expected.topo4.hwthread-4.hwthread-2.out │ │ │ │ ├── expected.topo4.hwthread-4.hwthread-4.out │ │ │ │ ├── expected.topo4.hwthread-4.hwthread-8.out │ │ │ │ ├── expected.topo4.hwthread-4.hwthread.out │ │ │ │ ├── expected.topo4.hwthread-4.numa.out │ │ │ │ ├── expected.topo4.hwthread-4.socket.out │ │ │ │ ├── expected.topo4.hwthread-8.board.out │ │ │ │ ├── expected.topo4.hwthread-8.core-2.out │ │ │ │ ├── expected.topo4.hwthread-8.core-4.out │ │ │ │ ├── expected.topo4.hwthread-8.core.out │ │ │ │ ├── expected.topo4.hwthread-8.hwthread-2.out │ │ │ │ ├── expected.topo4.hwthread-8.hwthread-4.out │ │ │ │ ├── expected.topo4.hwthread-8.hwthread-8.out │ │ │ │ ├── expected.topo4.hwthread-8.hwthread.out │ │ │ │ ├── expected.topo4.hwthread-8.numa.out │ │ │ │ ├── expected.topo4.hwthread-8.socket.out │ │ │ │ ├── expected.topo4.hwthread.board.out │ │ │ │ ├── expected.topo4.hwthread.core-2.out │ │ │ │ ├── expected.topo4.hwthread.core-4.out │ │ │ │ ├── expected.topo4.hwthread.core.out │ │ │ │ ├── expected.topo4.hwthread.hwthread-2.out │ │ │ │ ├── expected.topo4.hwthread.hwthread-4.out │ │ │ │ ├── expected.topo4.hwthread.hwthread-8.out │ │ │ │ ├── expected.topo4.hwthread.hwthread.out │ │ │ │ ├── expected.topo4.hwthread.numa.out │ │ │ │ ├── expected.topo4.hwthread.socket.out │ │ │ │ ├── expected.topo4.numa.board.out │ │ │ │ ├── expected.topo4.numa.core-2.out │ │ │ │ ├── expected.topo4.numa.core-4.out │ │ │ │ ├── expected.topo4.numa.core.out │ │ │ │ ├── expected.topo4.numa.hwthread-2.out │ │ │ │ ├── expected.topo4.numa.hwthread-4.out │ │ │ │ ├── expected.topo4.numa.hwthread-8.out │ │ │ │ ├── expected.topo4.numa.hwthread.out │ │ │ │ ├── expected.topo4.numa.numa.out │ │ │ │ ├── expected.topo4.numa.socket.out │ │ │ │ ├── expected.topo4.socket.board.out │ │ │ │ ├── expected.topo4.socket.core-2.out │ │ │ │ ├── expected.topo4.socket.core-4.out │ │ │ │ ├── expected.topo4.socket.core.out │ │ │ │ ├── expected.topo4.socket.hwthread-2.out │ │ │ │ ├── expected.topo4.socket.hwthread-4.out │ │ │ │ ├── expected.topo4.socket.hwthread-8.out │ │ │ │ ├── expected.topo4.socket.hwthread.out │ │ │ │ ├── expected.topo4.socket.numa.out │ │ │ │ ├── expected.topo4.socket.socket.out │ │ │ │ ├── topo1.xml │ │ │ │ ├── topo2.xml │ │ │ │ ├── topo3.xml │ │ │ │ └── topo4.xml │ │ │ ├── dummy.c │ │ │ └── proc_binding.sh.in │ │ ├── mpich │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── mpi_t │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── collparmt.c │ │ │ │ └── testlist │ │ │ └── testlist.in │ │ ├── testlist.ampi │ │ └── testlist.in │ ├── include │ │ ├── dtypes.h │ │ ├── mpicolltest.h │ │ ├── mpitest.h │ │ ├── mpitestconf.h.in │ │ ├── mpitestcxx.h │ │ └── mpithreadtest.h │ ├── info │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── infodel.c │ │ ├── infodup.c │ │ ├── infoenv.c │ │ ├── infoget.c │ │ ├── infomany.c │ │ ├── infomany2.c │ │ ├── infoorder.c │ │ ├── infotest.c │ │ ├── infovallen.c │ │ ├── testlist │ │ └── testlist.ampi │ ├── init │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── attrself.c │ │ ├── exitst1.c │ │ ├── exitst2.c │ │ ├── exitst3.c │ │ ├── finalized.c │ │ ├── initstat.c │ │ ├── library_version.c │ │ ├── testlist │ │ ├── testlist.ampi │ │ ├── timeout.c │ │ └── version.c │ ├── io │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── async.c │ │ ├── async_any.c │ │ ├── bigtype.c │ │ ├── getextent.c │ │ ├── hindexed_io.c │ │ ├── i_aggregation1.c │ │ ├── i_aggregation2.c │ │ ├── i_bigtype.c │ │ ├── i_coll_test.c │ │ ├── i_darray_read.c │ │ ├── i_hindexed.c │ │ ├── i_hindexed_io.c │ │ ├── i_noncontig.c │ │ ├── i_noncontig_coll.c │ │ ├── i_noncontig_coll2.c │ │ ├── i_rdwrord.c │ │ ├── i_setviewcur.c │ │ ├── i_types_with_zeros.c │ │ ├── rdwrord.c │ │ ├── rdwrzero.c │ │ ├── resized.c │ │ ├── resized2.c │ │ ├── setinfo.c │ │ ├── setviewcur.c │ │ ├── simple_collective.c │ │ ├── testlist.in │ │ └── userioerr.c │ ├── maint │ │ ├── README │ │ ├── common.defn │ │ ├── configure.ac │ │ ├── f77tof90.in │ │ ├── testmerge.in │ │ └── updatefiles │ ├── manual │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── connectstuff.h │ │ ├── dimsbalanced.c │ │ ├── manyconnect.in │ │ ├── mpi_t │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── mpit_test.c │ │ │ ├── mpit_test2.c │ │ │ ├── nem_fbox_fallback_to_queue_count.c │ │ │ └── unexpected_recvq_buffer_size.c │ │ ├── segfault.c │ │ ├── singjoin.c │ │ ├── spawntest_child.c │ │ ├── spawntest_master.c │ │ ├── tchandlers.c │ │ ├── tcutil.c │ │ ├── testconnect.c │ │ └── testconnectserial.c │ ├── mpi_t │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cvarwrite.c │ │ ├── getindex.c │ │ ├── mpi_t_str.c │ │ ├── mpit_vars.c │ │ ├── testlist │ │ └── testlist.ampi │ ├── perf │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── allredtrace.c │ │ ├── commcreatep.c │ │ ├── dtpack.c │ │ ├── indexperf.c │ │ ├── manyrma.c │ │ ├── nestvec.c │ │ ├── nestvec2.c │ │ ├── non_zero_root.c │ │ ├── sendrecvl.c │ │ ├── testlist │ │ ├── timer.c │ │ ├── transp-datatype.c │ │ └── twovec.c │ ├── project.txt │ ├── project_cxx.txt │ ├── project_f.txt │ ├── pt2pt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── anyall.c │ │ ├── big_count_status.c │ │ ├── bottom.c │ │ ├── bsend1.c │ │ ├── bsend2.c │ │ ├── bsend3.c │ │ ├── bsend4.c │ │ ├── bsend5.c │ │ ├── bsendalign.c │ │ ├── bsendfrag.c │ │ ├── bsendpending.c │ │ ├── cancelanysrc.c │ │ ├── cancelrecv.c │ │ ├── eagerdt.c │ │ ├── greq1.c │ │ ├── icsend.c │ │ ├── inactivereq.c │ │ ├── isendirecv.c │ │ ├── isendself.c │ │ ├── isendselfprobe.c │ │ ├── issendselfcancel.c │ │ ├── large_message.c │ │ ├── mprobe.c │ │ ├── pingping.c │ │ ├── probe-unexp.c │ │ ├── probenull.c │ │ ├── pscancel.c │ │ ├── rcancel.c │ │ ├── rqfreeb.c │ │ ├── rqstatus.c │ │ ├── scancel.c │ │ ├── scancel2.c │ │ ├── scancel_unmatch.c │ │ ├── sendall.c │ │ ├── sendflood.c │ │ ├── sendrecv1.c │ │ ├── sendrecv2.c │ │ ├── sendrecv3.c │ │ ├── sendself.c │ │ ├── testlist │ │ ├── testlist.ampi │ │ ├── waitany-null.c │ │ └── waittestnull.c │ ├── rma │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── acc-loc.c │ │ ├── acc-pairtype.c │ │ ├── accfence1.c │ │ ├── accfence2.c │ │ ├── accfence2_am.c │ │ ├── accpscw1.c │ │ ├── adlb_mimic1.c │ │ ├── aint.c │ │ ├── allocmem.c │ │ ├── at_complete.c │ │ ├── atomic_get.c │ │ ├── atomic_rmw_cas.c │ │ ├── atomic_rmw_fop.c │ │ ├── atomic_rmw_gacc.c │ │ ├── attrorderwin.c │ │ ├── badrma.c │ │ ├── baseattrwin.c │ │ ├── compare_and_swap.c │ │ ├── contention_put.c │ │ ├── contention_putget.c │ │ ├── contig_displ.c │ │ ├── derived-acc-flush_local.c │ │ ├── epochtest.c │ │ ├── fence_shm.c │ │ ├── fetch_and_op.c │ │ ├── fetchandadd.c │ │ ├── fetchandadd_am.c │ │ ├── fetchandadd_tree.c │ │ ├── fetchandadd_tree_am.c │ │ ├── fkeyvalwin.c │ │ ├── flush.c │ │ ├── get-struct.c │ │ ├── get_acc_local.c │ │ ├── get_accumulate.c │ │ ├── getfence1.c │ │ ├── getgroup.c │ │ ├── large-acc-flush_local.c │ │ ├── large-small-acc.c │ │ ├── linked_list.c │ │ ├── linked_list_bench_lock_all.c │ │ ├── linked_list_bench_lock_excl.c │ │ ├── linked_list_bench_lock_shr.c │ │ ├── linked_list_fop.c │ │ ├── linked_list_lockall.c │ │ ├── lock_contention_dt.c │ │ ├── lock_dt.c │ │ ├── lock_dt_flush.c │ │ ├── lock_dt_flushlocal.c │ │ ├── lockall_dt.c │ │ ├── lockall_dt_flush.c │ │ ├── lockall_dt_flushall.c │ │ ├── lockall_dt_flushlocal.c │ │ ├── lockall_dt_flushlocalall.c │ │ ├── lockcontention.c │ │ ├── lockcontention2.c │ │ ├── lockcontention3.c │ │ ├── locknull.c │ │ ├── lockopts.c │ │ ├── manyget.c │ │ ├── manyrma2.c │ │ ├── manyrma3.c │ │ ├── mcs-mutex.c │ │ ├── mcs-mutex.h │ │ ├── mixedsync.c │ │ ├── mutex_bench.c │ │ ├── nb_test.c │ │ ├── nullpscw.c │ │ ├── pscw_ordering.c │ │ ├── put_base.c │ │ ├── put_bottom.c │ │ ├── putfence1.c │ │ ├── putfidx.c │ │ ├── putpscw1.c │ │ ├── racc_local_comp.c │ │ ├── req_example.c │ │ ├── reqops.c │ │ ├── rma-contig.c │ │ ├── rmanull.c │ │ ├── rmazero.c │ │ ├── rput_local_comp.c │ │ ├── selfrma.c │ │ ├── squelch.h │ │ ├── strided_acc_indexed.c │ │ ├── strided_acc_onelock.c │ │ ├── strided_acc_subarray.c │ │ ├── strided_get_indexed.c │ │ ├── strided_getacc_indexed.c │ │ ├── strided_getacc_indexed_shared.c │ │ ├── strided_putget_indexed.c │ │ ├── strided_putget_indexed_shared.c │ │ ├── test1.c │ │ ├── test1_am.c │ │ ├── test1_dt.c │ │ ├── test2.c │ │ ├── test2_am.c │ │ ├── test3.c │ │ ├── test3_am.c │ │ ├── test4.c │ │ ├── test4_am.c │ │ ├── test5.c │ │ ├── test5_am.c │ │ ├── testlist.ampi │ │ ├── testlist.in │ │ ├── transpose1.c │ │ ├── transpose2.c │ │ ├── transpose3.c │ │ ├── transpose4.c │ │ ├── transpose5.c │ │ ├── transpose6.c │ │ ├── transpose7.c │ │ ├── win_dynamic_acc.c │ │ ├── win_flavors.c │ │ ├── win_info.c │ │ ├── win_large_shm.c │ │ ├── win_shared.c │ │ ├── win_shared_create.c │ │ ├── win_shared_noncontig.c │ │ ├── win_shared_noncontig_put.c │ │ ├── win_shared_put_flush_get.c │ │ ├── win_shared_rma_flush_load.c │ │ ├── win_shared_zerobyte.c │ │ ├── win_zero.c │ │ ├── wincall.c │ │ ├── window_creation.c │ │ ├── winname.c │ │ ├── wintest.c │ │ └── wrma_flush_get.c │ ├── runtests.in │ ├── spawn │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── concurrent_spawns.c │ │ ├── disconnect.c │ │ ├── disconnect2.c │ │ ├── disconnect3.c │ │ ├── disconnect_reconnect.c │ │ ├── disconnect_reconnect2.c │ │ ├── disconnect_reconnect3.c │ │ ├── join.c │ │ ├── multiple_ports.c │ │ ├── multiple_ports2.c │ │ ├── namepub.c │ │ ├── pgroup_connect_test.c │ │ ├── pgroup_intercomm_test.c │ │ ├── selfconacc.c │ │ ├── spaconacc.c │ │ ├── spaconacc2.c │ │ ├── spaiccreate.c │ │ ├── spaiccreate2.c │ │ ├── spawn-rootargs.c │ │ ├── spawn1.c │ │ ├── spawn2.c │ │ ├── spawnargv.c │ │ ├── spawninfo1.c │ │ ├── spawnintra.c │ │ ├── spawnmanyarg.c │ │ ├── spawnminfo1.c │ │ ├── spawnmult2.c │ │ ├── taskmaster.c │ │ └── testlist.in │ ├── template.c │ ├── testlist.ampi │ ├── testlist.in │ ├── threads │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile_threads.mtest │ │ ├── coll │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── allred.c │ │ │ ├── iallred.c │ │ │ └── testlist.in │ │ ├── comm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── comm_create_group_threads.c │ │ │ ├── comm_create_group_threads2.c │ │ │ ├── comm_create_threads.c │ │ │ ├── comm_dup_deadlock.c │ │ │ ├── comm_idup.c │ │ │ ├── ctxdup.c │ │ │ ├── ctxidup.c │ │ │ ├── dup_leak_test.c │ │ │ ├── idup_comm_gen.c │ │ │ ├── idup_deadlock.c │ │ │ ├── idup_nb.c │ │ │ └── testlist.in │ │ ├── init │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── initth.c │ │ │ └── testlist │ │ ├── mpi_t │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── mpit_threading.c │ │ │ └── testlist │ │ ├── pt2pt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── alltoall.c │ │ │ ├── greq_test.c │ │ │ ├── greq_wait.c │ │ │ ├── ibsend.c │ │ │ ├── multisend.c │ │ │ ├── multisend2.c │ │ │ ├── multisend3.c │ │ │ ├── multisend4.c │ │ │ ├── sendselfth.c │ │ │ ├── testlist │ │ │ ├── threaded_sr.c │ │ │ └── threads.c │ │ ├── rma │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── multiget.c │ │ │ ├── multirma.c │ │ │ └── testlist │ │ ├── spawn │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── multispawn.c │ │ │ ├── testlist │ │ │ └── th_taskmaster.c │ │ ├── testlist.in │ │ └── util │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── mtestthread.c │ ├── topo │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cartcreates.c │ │ ├── cartmap1.c │ │ ├── cartshift1.c │ │ ├── cartsuball.c │ │ ├── cartzero.c │ │ ├── dgraph_unwgt.c │ │ ├── dims1.c │ │ ├── dims2.c │ │ ├── dims3.c │ │ ├── dims4.c │ │ ├── distgraph1.c │ │ ├── graphcr.c │ │ ├── graphcr2.c │ │ ├── graphmap1.c │ │ ├── neighb_coll.c │ │ ├── testlist │ │ ├── testlist.ampi │ │ ├── topodup.c │ │ └── topotest.c │ ├── util │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dtypes.c │ │ ├── mtest.c │ │ ├── mtest_datatype.c │ │ ├── mtest_datatype.h │ │ ├── mtest_datatype_gen.c │ │ └── mtestcheck.c │ └── version.m4 ├── pmpi │ ├── Makefile │ └── pmpi.c ├── privatization │ ├── Makefile │ ├── framework.C │ ├── framework.h │ ├── test-tlsglobals.f90 │ ├── test.C │ ├── test.f90 │ ├── test.h │ ├── vars-dynamic.C │ ├── vars-shared.C │ └── vars-static.C └── stacksize │ ├── Makefile │ └── test.c ├── charm++ ├── Makefile ├── alignment │ ├── Makefile │ ├── alignmentCheck.C │ └── alignmentCheck.ci ├── amr_1d_random │ ├── Makefile │ ├── amr_1d_random.C │ ├── amr_1d_random.ci │ └── amr_1d_random.h ├── amr_1d_simple │ ├── Makefile │ ├── amr_1d_simple.C │ ├── amr_1d_simple.ci │ └── amr_1d_simple.h ├── anytime_migration │ ├── Makefile │ ├── migrate.C │ └── migrate.ci ├── bombard │ ├── Makefile │ ├── bombard.C │ └── bombard.ci ├── charmxi_error_messages │ ├── aggregate_multiple_parameters.ci │ ├── braces_in_comments.ci │ ├── braces_in_comments_multiline.ci │ ├── braces_in_concatenated_strings.ci │ ├── braces_in_strings.ci │ ├── braces_in_strings_escaped.ci │ ├── caselist_nonwhenconstruct.ci │ ├── ckargmsg_nonconstructor.ci │ ├── comma_in_strings.ci │ ├── const_test.ci │ ├── deprecated_initcall_1.ci │ ├── deprecated_initcall_2.ci │ ├── disappearing_comment_test_1.ci │ ├── disappearing_comment_test_2.ci │ ├── disappearing_comment_test_3.ci │ ├── entry_paramlist_manypointers.ci │ ├── error_recovery.ci │ ├── exclusive_constructor.ci │ ├── immediate_in_non_nodegroup.ci │ ├── invalid_construct.ci │ ├── invalid_eattrib.ci │ ├── invalid_eattribs.ci │ ├── invalid_return_type.ci │ ├── invalid_sdag_member.ci │ ├── invalid_sync_return_type.ci │ ├── local_in_chare_nodegroup.ci │ ├── member_missing_semicolon.ci │ ├── missing_arg_types.ci │ ├── missing_return_type.ci │ ├── missing_return_type_template.ci │ ├── python_entry_nonpython_chare.ci │ ├── python_invalid_args.ci │ ├── readonly_message_array.ci │ ├── semi_colon_in_strings.ci │ ├── serial_error_with_linenumber.ci │ ├── stacksize_nothreaded.ci │ ├── sync_constructor.ci │ ├── typename.ci │ └── unknown_sdag_construct.ci ├── charmxi_parsing │ ├── ArrayIndexTemplate.C │ ├── ArrayIndexTemplate.ci │ ├── Makefile │ ├── ParameterPack.C │ ├── ParameterPack.ci │ ├── Typename.C │ ├── Typename.ci │ ├── std_array.C │ └── std_array.ci ├── chkpt │ ├── Makefile │ ├── README │ ├── hello.C │ └── hello.ci ├── ckAllocSysMsgTest │ ├── Makefile │ ├── README │ ├── ckAllocSysMsgTest.C │ ├── ckAllocSysMsgTest.ci │ └── ckAllocSysMsgTest.h ├── delegation │ ├── 1darray │ │ ├── Makefile │ │ ├── hello.C │ │ └── hello.ci │ ├── Makefile │ ├── multicast │ │ ├── Makefile │ │ ├── hello.C │ │ └── hello.ci │ └── pipelined-section-reduction │ │ ├── Makefile │ │ ├── hello.C │ │ └── hello.ci ├── demand_creation │ ├── Makefile │ ├── hello.C │ └── hello.ci ├── dynamic_insertion │ ├── Makefile │ ├── dynamic_insertion.C │ ├── dynamic_insertion.ci │ └── dynamic_insertion.h ├── dynamic_insertion_deletion │ ├── Makefile │ ├── dynamic_insertion_deletion.C │ ├── dynamic_insertion_deletion.ci │ └── dynamic_insertion_deletion.h ├── io │ ├── Makefile │ ├── iotest.C │ └── iotest.ci ├── io_read │ ├── Makefile │ ├── iotest.C │ ├── iotest.ci │ └── readtest.txt ├── jacobi3d-sdag │ ├── Makefile │ ├── jacobi3d.C │ ├── jacobi3d.ci │ ├── kill_01.txt │ ├── kill_02.txt │ ├── kill_03.txt │ ├── kill_04.txt │ ├── kill_05.txt │ └── kill_06.txt ├── jacobi3d │ ├── Makefile │ ├── jacobi3d.C │ ├── jacobi3d.ci │ ├── kill_01.txt │ ├── kill_02.txt │ ├── kill_03.txt │ ├── kill_04.txt │ ├── kill_05.txt │ └── kill_06.txt ├── load_balancing │ ├── Makefile │ ├── lb_test │ │ ├── Makefile │ │ ├── README │ │ ├── Topo.C │ │ ├── Topo.ci │ │ ├── Topo.h │ │ ├── lb_test.C │ │ ├── lb_test.ci │ │ ├── predictor │ │ │ ├── Makefile │ │ │ ├── test.C │ │ │ ├── test.ci │ │ │ └── test.h │ │ └── sim │ │ │ ├── Makefile │ │ │ ├── Topo.C │ │ │ ├── Topo.ci │ │ │ ├── Topo.h │ │ │ ├── sim.C │ │ │ └── sim.ci │ ├── lb_userdata_test │ │ ├── Makefile │ │ ├── README │ │ ├── TestUserDataLB.C │ │ ├── TestUserDataLB.ci │ │ ├── TestUserDataLB.h │ │ ├── hello.C │ │ ├── hello.ci │ │ └── userdata_struct.h │ ├── meta_lb_test │ │ ├── Makefile │ │ ├── period_selection.C │ │ └── period_selection.ci │ └── periodic_lb_broadcast_test │ │ ├── Makefile │ │ ├── ping.C │ │ └── ping.ci ├── longIdle │ ├── Makefile │ ├── longIdle.C │ └── longIdle.ci ├── megatest │ ├── Make.depends │ ├── Makefile │ ├── arrayring.C │ ├── arrayring.ci │ ├── arrayring.h │ ├── bitvector.C │ ├── bitvector.ci │ ├── bitvector.h │ ├── callback.C │ ├── callback.ci │ ├── callback.h │ ├── completion_test.C │ ├── completion_test.ci │ ├── fib.C │ ├── fib.ci │ ├── fib.h │ ├── groupcast.C │ ├── groupcast.ci │ ├── groupcast.h │ ├── groupdependence.C │ ├── groupdependence.ci │ ├── groupdependence.h │ ├── groupmulti.C │ ├── groupmulti.ci │ ├── groupmulti.h │ ├── groupring.C │ ├── groupring.ci │ ├── groupring.h │ ├── groupsectiontest.C │ ├── groupsectiontest.ci │ ├── groupsectiontest.h │ ├── immediatering.C │ ├── immediatering.ci │ ├── immediatering.h │ ├── inherit.C │ ├── inherit.ci │ ├── inherit.h │ ├── inlineem.C │ ├── inlineem.ci │ ├── listsend.C │ ├── listsend.ci │ ├── listsend.h │ ├── marshall.C │ ├── marshall.ci │ ├── marshall.h │ ├── megatest.C │ ├── megatest.ci │ ├── megatest.h │ ├── migration.C │ ├── migration.ci │ ├── migration.h │ ├── multisectiontest.C │ ├── multisectiontest.ci │ ├── multisectiontest.h │ ├── nodecast.C │ ├── nodecast.ci │ ├── nodecast.h │ ├── nodering.C │ ├── nodering.ci │ ├── nodering.h │ ├── packtest.C │ ├── packtest.ci │ ├── packtest.h │ ├── priolongtest.C │ ├── priolongtest.ci │ ├── priolongtest.h │ ├── priomsg.C │ ├── priomsg.ci │ ├── priomsg.h │ ├── priotest.C │ ├── priotest.ci │ ├── priotest.h │ ├── queens.C │ ├── queens.ci │ ├── queens.h │ ├── reduction.C │ ├── reduction.ci │ ├── reduction.h │ ├── rotest.C │ ├── rotest.ci │ ├── rotest.h │ ├── statistics.C │ ├── statistics.h │ ├── synctest.C │ ├── synctest.ci │ ├── synctest.h │ ├── templates.C │ ├── templates.ci │ ├── templates.h │ ├── varraystest.C │ ├── varraystest.ci │ ├── varraystest.h │ ├── varsizetest.C │ ├── varsizetest.ci │ ├── varsizetest.h │ ├── varsizetest2.C │ ├── varsizetest2.ci │ └── varsizetest2.h ├── method_templates │ ├── Makefile │ ├── mylib.C │ ├── mylib.ci │ ├── mylib.h │ ├── pgm.C │ ├── pgm.ci │ └── utils.h ├── partitions │ ├── Makefile │ ├── hello.C │ └── hello.ci ├── periodic │ ├── Makefile │ ├── periodic.C │ └── periodic.ci ├── provisioning │ ├── Makefile │ ├── launch.C │ └── launch.ci ├── python │ ├── Makefile │ ├── client.C │ ├── python.code │ ├── python_group.code │ ├── server.C │ ├── server.ci │ └── server.h ├── queue │ ├── Makefile │ ├── msgqtest.C │ ├── pgm.C │ └── test.ci ├── randomTRAM3D │ ├── Makefile │ ├── tram3d.C │ └── tram3d.ci ├── reductionTesting │ ├── Makefile │ ├── reductionTesting1D │ │ ├── Main.C │ │ ├── Main.h │ │ ├── Makefile │ │ ├── main.ci │ │ ├── readme.txt │ │ ├── sectionReduction.C │ │ ├── sectionReduction.ci │ │ └── sectionReduction.h │ ├── reductionTesting2D │ │ ├── Main.C │ │ ├── Main.h │ │ ├── Makefile │ │ ├── main.ci │ │ ├── readme.txt │ │ ├── sectionReduction.C │ │ ├── sectionReduction.ci │ │ └── sectionReduction.h │ └── reductionTesting3D │ │ ├── Main.C │ │ ├── Main.h │ │ ├── Makefile │ │ ├── main.ci │ │ ├── readme.txt │ │ ├── sectionReduction.C │ │ ├── sectionReduction.ci │ │ └── sectionReduction.h ├── sdag │ ├── Makefile │ ├── basic.ci │ ├── migration.ci │ ├── refnum.ci │ ├── sdag_tests.C │ └── sdag_tests.ci ├── simplearrayhello │ ├── Makefile │ ├── hello.C │ └── hello.ci ├── sparse │ ├── Makefile │ ├── sparse.C │ ├── sparse.ci │ └── sparse.h ├── startupTest │ ├── Makefile │ ├── README │ ├── startupTest.C │ ├── startupTest.ci │ └── startupTest.h ├── topology │ ├── Makefile │ ├── rtc.C │ └── topo.ci ├── varTRAM │ ├── Makefile │ ├── vartest.C │ └── vartest.ci ├── within_node_bcast │ ├── Makefile │ ├── within_node_bcast.C │ └── within_node_bcast.ci └── zerocopy │ ├── Makefile │ ├── bcast_nonzero_root │ ├── Makefile │ ├── bcast_nonzero_root.C │ └── bcast_nonzero_root.ci │ ├── dereg_and_nodereg │ ├── Makefile │ ├── dereg_and_nodereg.C │ └── dereg_and_nodereg.ci │ ├── direct_api │ ├── Makefile │ ├── direct_api.C │ └── direct_api.ci │ ├── large_bcast │ ├── Makefile │ ├── largedata.C │ └── largedata.ci │ ├── large_p2p │ ├── Makefile │ ├── large_p2p.C │ └── large_p2p.ci │ ├── pup_buffer │ ├── Makefile │ ├── pup_buffer.C │ └── pup_buffer.ci │ ├── zc_post_async │ ├── Makefile │ ├── bcast_subset_async │ │ ├── Makefile │ │ ├── bcast_subset_async.C │ │ ├── bcast_subset_async.ci │ │ ├── zc_post_async.C │ │ └── zc_post_async.ci │ └── post_and_match │ │ ├── Makefile │ │ ├── post_and_match.C │ │ └── post_and_match.ci │ ├── zc_post_modify_size │ ├── Makefile │ ├── zc_post_modify_size.C │ └── zc_post_modify_size.ci │ └── zerocopy_with_qd │ ├── Makefile │ ├── zerocopy_with_qd.C │ └── zerocopy_with_qd.ci ├── common.mk ├── converse ├── Makefile └── megacon │ ├── Makefile │ ├── README │ ├── bigmsg.c │ ├── blkinhand.c │ ├── broadc.c │ ├── deadlock.c │ ├── fibobj.c │ ├── fibthr.c │ ├── future.c │ ├── handler.c │ ├── megacon.c │ ├── multicast.c │ ├── multisend.c │ ├── nodenum.c │ ├── nodereduction.c │ ├── posixth.c │ ├── priotest.c │ ├── reduction.c │ ├── ring.c │ ├── ringsimple.c │ ├── specmsg.c │ ├── vars.c │ └── vecsend.c └── util ├── Makefile ├── check.C ├── headerpad.C ├── headerpad.ci └── headerpad.h /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/.gitignore -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/.mailmap -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/CHANGES -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/NOTICE -------------------------------------------------------------------------------- /README.ampi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/README.ampi -------------------------------------------------------------------------------- /README.charm4py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/README.charm4py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/benchmarks/Makefile -------------------------------------------------------------------------------- /benchmarks/ampi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/benchmarks/ampi/Makefile -------------------------------------------------------------------------------- /benchmarks/ampi/speed/hello.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/benchmarks/ampi/speed/hello.C -------------------------------------------------------------------------------- /benchmarks/charm++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/benchmarks/charm++/Makefile -------------------------------------------------------------------------------- /benchmarks/charm++/migrate/README: -------------------------------------------------------------------------------- 1 | measure the cost of migration 2 | 3 | -------------------------------------------------------------------------------- /benchmarks/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/benchmarks/common.mk -------------------------------------------------------------------------------- /benchmarks/converse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/benchmarks/converse/Makefile -------------------------------------------------------------------------------- /cmake/Makefile.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/cmake/Makefile.tests -------------------------------------------------------------------------------- /cmake/Makefile.tests.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/cmake/Makefile.tests.common -------------------------------------------------------------------------------- /cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/cmake/README.md -------------------------------------------------------------------------------- /cmake/ci-files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/cmake/ci-files.cmake -------------------------------------------------------------------------------- /cmake/converse.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/cmake/converse.cmake -------------------------------------------------------------------------------- /cmake/detect-features-c.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/cmake/detect-features-c.cmake -------------------------------------------------------------------------------- /cmake/detect-features.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/cmake/detect-features.cmake -------------------------------------------------------------------------------- /cmake/hwloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/cmake/hwloc.cmake -------------------------------------------------------------------------------- /contrib/charmc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/charmc.cmake -------------------------------------------------------------------------------- /contrib/ci.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/ci.snippets -------------------------------------------------------------------------------- /contrib/ci.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/ci.vim -------------------------------------------------------------------------------- /contrib/hwloc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/AUTHORS -------------------------------------------------------------------------------- /contrib/hwloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/COPYING -------------------------------------------------------------------------------- /contrib/hwloc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/Makefile.am -------------------------------------------------------------------------------- /contrib/hwloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/Makefile.in -------------------------------------------------------------------------------- /contrib/hwloc/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/NEWS -------------------------------------------------------------------------------- /contrib/hwloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/README -------------------------------------------------------------------------------- /contrib/hwloc/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/VERSION -------------------------------------------------------------------------------- /contrib/hwloc/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/aclocal.m4 -------------------------------------------------------------------------------- /contrib/hwloc/config/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/config/ar-lib -------------------------------------------------------------------------------- /contrib/hwloc/config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/config/compile -------------------------------------------------------------------------------- /contrib/hwloc/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/config/depcomp -------------------------------------------------------------------------------- /contrib/hwloc/config/hwloc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/config/hwloc.m4 -------------------------------------------------------------------------------- /contrib/hwloc/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/config/missing -------------------------------------------------------------------------------- /contrib/hwloc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/configure -------------------------------------------------------------------------------- /contrib/hwloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/configure.ac -------------------------------------------------------------------------------- /contrib/hwloc/contrib/completion/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/contrib/hwloc-ps.www/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/contrib/misc/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/contrib/systemd/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/contrib/windows/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/doc/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/doc/doxygen-config.cfg.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/doc/examples/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/hwloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/hwloc.pc.in -------------------------------------------------------------------------------- /contrib/hwloc/hwloc/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/hwloc/base64.c -------------------------------------------------------------------------------- /contrib/hwloc/hwloc/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/hwloc/bind.c -------------------------------------------------------------------------------- /contrib/hwloc/hwloc/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/hwloc/bitmap.c -------------------------------------------------------------------------------- /contrib/hwloc/hwloc/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/hwloc/diff.c -------------------------------------------------------------------------------- /contrib/hwloc/hwloc/hwloc.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/hwloc/hwloc.dtd -------------------------------------------------------------------------------- /contrib/hwloc/hwloc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/hwloc/misc.c -------------------------------------------------------------------------------- /contrib/hwloc/hwloc/shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/hwloc/shmem.c -------------------------------------------------------------------------------- /contrib/hwloc/include/hwloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/hwloc/include/hwloc.h -------------------------------------------------------------------------------- /contrib/hwloc/tests/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/linux/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/linux/allowed/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/linux/allowed/test-topology.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/linux/gather/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/linux/gather/test-gather-topology.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/linux/test-topology.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/ports/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/rename/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/wrapper.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/x86+linux/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/x86+linux/test-topology.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/x86/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/x86/test-topology.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/xml/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/hwloc/xml/test-topology.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/netloc/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/tests/netloc/tests.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/hwloc-compress-dir.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/hwloc-gather-topology.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-build-custom-topology.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-fake-plugin.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-hwloc-annotate.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-hwloc-calc.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-hwloc-compress-dir.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-hwloc-diffpatch.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-hwloc-distrib.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-hwloc-dump-hwdata/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-hwloc-dump-hwdata/test-hwloc-dump-hwdata.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-hwloc-info.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/hwloc/test-parsing-flags.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/lstopo/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/lstopo/lstopo-android.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/lstopo/lstopo-windows.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/lstopo/test-lstopo-shmem.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/lstopo/test-lstopo.sh.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/netloc/draw/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/netloc/infiniband/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/netloc/infiniband/netloc_ib_gather_raw.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/netloc/mpi/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/hwloc/utils/netloc/scotch/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/update-hwloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/contrib/update-hwloc.sh -------------------------------------------------------------------------------- /coverage/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/coverage/coverage.sh -------------------------------------------------------------------------------- /coverage/tests.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/coverage/tests.desc -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | # Output directories: 2 | pdf/ 3 | html/ 4 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/README.rst -------------------------------------------------------------------------------- /doc/ampi/01-introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/ampi/01-introduction.rst -------------------------------------------------------------------------------- /doc/ampi/02-building.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/ampi/02-building.rst -------------------------------------------------------------------------------- /doc/ampi/03-using.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/ampi/03-using.rst -------------------------------------------------------------------------------- /doc/ampi/04-extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/ampi/04-extensions.rst -------------------------------------------------------------------------------- /doc/ampi/05-examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/ampi/05-examples.rst -------------------------------------------------------------------------------- /doc/ampi/figs/migrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/ampi/figs/migrate.png -------------------------------------------------------------------------------- /doc/ampi/figs/prac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/ampi/figs/prac.png -------------------------------------------------------------------------------- /doc/ampi/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/ampi/manual.rst -------------------------------------------------------------------------------- /doc/charisma/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/charisma/manual.rst -------------------------------------------------------------------------------- /doc/charm++/fig/ckgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/charm++/fig/ckgraph.png -------------------------------------------------------------------------------- /doc/charm++/fig/pup.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/charm++/fig/pup.fig -------------------------------------------------------------------------------- /doc/charm++/fig/pup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/charm++/fig/pup.png -------------------------------------------------------------------------------- /doc/charm++/kmeans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/charm++/kmeans.cpp -------------------------------------------------------------------------------- /doc/charm++/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/charm++/manual.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/converse/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/converse/manual.rst -------------------------------------------------------------------------------- /doc/convext/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/convext/manual.rst -------------------------------------------------------------------------------- /doc/debugger/figs/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/debugger/figs/convert.sh -------------------------------------------------------------------------------- /doc/debugger/figs/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/debugger/figs/menu.png -------------------------------------------------------------------------------- /doc/debugger/figs/test_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/debugger/figs/test_output -------------------------------------------------------------------------------- /doc/debugger/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/debugger/manual.rst -------------------------------------------------------------------------------- /doc/doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/doxygen/Makefile -------------------------------------------------------------------------------- /doc/doxygen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/doxygen/README -------------------------------------------------------------------------------- /doc/doxygen/charm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/doxygen/charm.conf -------------------------------------------------------------------------------- /doc/doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/doxygen/header.html -------------------------------------------------------------------------------- /doc/doxygen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/doxygen/index.html -------------------------------------------------------------------------------- /doc/doxygen/src/main_page.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/doxygen/src/main_page.C -------------------------------------------------------------------------------- /doc/f90charm/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/f90charm/manual.rst -------------------------------------------------------------------------------- /doc/faq/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/faq/manual.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/libraries/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/libraries/manual.rst -------------------------------------------------------------------------------- /doc/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/license.rst -------------------------------------------------------------------------------- /doc/mblock/fig/decompose.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/mblock/fig/decompose.fig -------------------------------------------------------------------------------- /doc/mblock/fig/decompose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/mblock/fig/decompose.png -------------------------------------------------------------------------------- /doc/mblock/fig/ghostwidth.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/mblock/fig/ghostwidth.fig -------------------------------------------------------------------------------- /doc/mblock/fig/ghostwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/mblock/fig/ghostwidth.png -------------------------------------------------------------------------------- /doc/mblock/fig/indexing.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/mblock/fig/indexing.fig -------------------------------------------------------------------------------- /doc/mblock/fig/indexing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/mblock/fig/indexing.png -------------------------------------------------------------------------------- /doc/mblock/fig/nodeloc.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/mblock/fig/nodeloc.fig -------------------------------------------------------------------------------- /doc/mblock/fig/nodeloc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/mblock/fig/nodeloc.pdf -------------------------------------------------------------------------------- /doc/mblock/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/mblock/manual.rst -------------------------------------------------------------------------------- /doc/parfum/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/parfum/manual.rst -------------------------------------------------------------------------------- /doc/pose/figures/newsys.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/pose/figures/newsys.fig -------------------------------------------------------------------------------- /doc/pose/figures/oldsys.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/pose/figures/oldsys.fig -------------------------------------------------------------------------------- /doc/pose/figures/oopdex.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/pose/figures/oopdex.fig -------------------------------------------------------------------------------- /doc/pose/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/pose/manual.rst -------------------------------------------------------------------------------- /doc/projections/fig/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/projections/fig/graph.png -------------------------------------------------------------------------------- /doc/projections/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/projections/manual.rst -------------------------------------------------------------------------------- /doc/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/quickstart.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/tcharm/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/doc/tcharm/manual.rst -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/ParFUM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/ParFUM/Makefile -------------------------------------------------------------------------------- /examples/ParFUM/billion2D/pgm.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ampi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/ampi/Makefile -------------------------------------------------------------------------------- /examples/ampi/creduce/test.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/ampi/creduce/test.C -------------------------------------------------------------------------------- /examples/ampi/cuda/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/ampi/cuda/Makefile -------------------------------------------------------------------------------- /examples/ampi/cuda/simple/.gitignore: -------------------------------------------------------------------------------- 1 | simple 2 | -------------------------------------------------------------------------------- /examples/amr/cfd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/amr/cfd/Makefile -------------------------------------------------------------------------------- /examples/amr/cfd/cfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/amr/cfd/cfd.h -------------------------------------------------------------------------------- /examples/amr/cfd/cfdAMR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/amr/cfd/cfdAMR.C -------------------------------------------------------------------------------- /examples/amr/cfd/cfdAMR.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/amr/cfd/cfdAMR.ci -------------------------------------------------------------------------------- /examples/amr/cfd/cfdAMR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/amr/cfd/cfdAMR.h -------------------------------------------------------------------------------- /examples/charm++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/Makefile -------------------------------------------------------------------------------- /examples/charm++/PUP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/PUP/Makefile -------------------------------------------------------------------------------- /examples/charm++/PUP/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/PUP/README -------------------------------------------------------------------------------- /examples/charm++/X10/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/X10/Makefile -------------------------------------------------------------------------------- /examples/charm++/array/pgm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/array/pgm.C -------------------------------------------------------------------------------- /examples/charm++/array/pgm.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/array/pgm.ci -------------------------------------------------------------------------------- /examples/charm++/fib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/fib/Makefile -------------------------------------------------------------------------------- /examples/charm++/fib/fib.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/fib/fib.C -------------------------------------------------------------------------------- /examples/charm++/fib/fib.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/fib/fib.ci -------------------------------------------------------------------------------- /examples/charm++/future/fib.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/future/fib.C -------------------------------------------------------------------------------- /examples/charm++/hello/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/hello/README -------------------------------------------------------------------------------- /examples/charm++/mpi-coexist/libs/hi/hi.h: -------------------------------------------------------------------------------- 1 | //interface for invocation from MPI 2 | void HiStart(int elems); 3 | -------------------------------------------------------------------------------- /examples/charm++/prio/pgm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/prio/pgm.C -------------------------------------------------------------------------------- /examples/charm++/prio/pgm.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/prio/pgm.ci -------------------------------------------------------------------------------- /examples/charm++/ring/ring.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/ring/ring.C -------------------------------------------------------------------------------- /examples/charm++/ring/ring.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/ring/ring.ci -------------------------------------------------------------------------------- /examples/charm++/ring/ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/charm++/ring/ring.h -------------------------------------------------------------------------------- /examples/collide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/collide/Makefile -------------------------------------------------------------------------------- /examples/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/common.mk -------------------------------------------------------------------------------- /examples/converse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/converse/Makefile -------------------------------------------------------------------------------- /examples/multiphaseSharedArrays/histogram/Makefile: -------------------------------------------------------------------------------- 1 | 2 | PGM=histogram 3 | include ../Makefile_common 4 | -------------------------------------------------------------------------------- /examples/multiphaseSharedArrays/histogram/headers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/multiphaseSharedArrays/moldyn/nepp.h: -------------------------------------------------------------------------------- 1 | #define NEPP 500 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/pose/ASIM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/ASIM/Makefile -------------------------------------------------------------------------------- /examples/pose/ASIM/Worker.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/ASIM/Worker.C -------------------------------------------------------------------------------- /examples/pose/ASIM/Worker.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/ASIM/Worker.ci -------------------------------------------------------------------------------- /examples/pose/ASIM/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/ASIM/Worker.h -------------------------------------------------------------------------------- /examples/pose/ASIM/pgm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/ASIM/pgm.C -------------------------------------------------------------------------------- /examples/pose/ASIM/pgm.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/ASIM/pgm.ci -------------------------------------------------------------------------------- /examples/pose/ASIM/pgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/ASIM/pgm.h -------------------------------------------------------------------------------- /examples/pose/ChunkSim/pgm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/ChunkSim/pgm.C -------------------------------------------------------------------------------- /examples/pose/ChunkSim/pgm.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/ChunkSim/pgm.ci -------------------------------------------------------------------------------- /examples/pose/ChunkSim/pgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/ChunkSim/pgm.h -------------------------------------------------------------------------------- /examples/pose/LBSim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/LBSim/Makefile -------------------------------------------------------------------------------- /examples/pose/LBSim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/LBSim/README -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph0: -------------------------------------------------------------------------------- 1 | 5 4 2 3 4 5 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph1: -------------------------------------------------------------------------------- 1 | 5 7 5 6 7 8 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph10: -------------------------------------------------------------------------------- 1 | 5 2 11 8 9 14 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph11: -------------------------------------------------------------------------------- 1 | 5 2 10 9 8 15 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph12: -------------------------------------------------------------------------------- 1 | 5 2 13 14 15 8 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph13: -------------------------------------------------------------------------------- 1 | 5 3 12 15 14 9 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph14: -------------------------------------------------------------------------------- 1 | 5 3 15 12 13 10 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph15: -------------------------------------------------------------------------------- 1 | 5 3 14 13 12 11 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph2: -------------------------------------------------------------------------------- 1 | 5 0 9 10 11 12 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph3: -------------------------------------------------------------------------------- 1 | 5 0 13 14 15 6 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph4: -------------------------------------------------------------------------------- 1 | 5 0 5 6 7 0 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph5: -------------------------------------------------------------------------------- 1 | 5 1 4 7 6 0 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph6: -------------------------------------------------------------------------------- 1 | 5 1 7 4 5 3 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph7: -------------------------------------------------------------------------------- 1 | 5 1 6 5 4 1 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph8: -------------------------------------------------------------------------------- 1 | 5 1 9 10 11 12 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/graph16C5/graph9: -------------------------------------------------------------------------------- 1 | 5 2 8 11 10 13 2 | -------------------------------------------------------------------------------- /examples/pose/LBSim/plotsim.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/LBSim/plotsim.p -------------------------------------------------------------------------------- /examples/pose/LBSim/saveplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/LBSim/saveplot -------------------------------------------------------------------------------- /examples/pose/LBSim/sched.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/LBSim/sched.C -------------------------------------------------------------------------------- /examples/pose/LBSim/sched.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/LBSim/sched.ci -------------------------------------------------------------------------------- /examples/pose/LBSim/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/LBSim/sched.h -------------------------------------------------------------------------------- /examples/pose/MiniNet/Node.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/MiniNet/Node.C -------------------------------------------------------------------------------- /examples/pose/MiniNet/Node.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/MiniNet/Node.ci -------------------------------------------------------------------------------- /examples/pose/MiniNet/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/MiniNet/Node.h -------------------------------------------------------------------------------- /examples/pose/PHOLD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/PHOLD/Makefile -------------------------------------------------------------------------------- /examples/pose/PHOLD/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/PHOLD/README -------------------------------------------------------------------------------- /examples/pose/PHOLD/Worker.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/PHOLD/Worker.C -------------------------------------------------------------------------------- /examples/pose/PHOLD/Worker.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/PHOLD/Worker.ci -------------------------------------------------------------------------------- /examples/pose/PHOLD/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/PHOLD/Worker.h -------------------------------------------------------------------------------- /examples/pose/PHOLD/phold.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/PHOLD/phold.C -------------------------------------------------------------------------------- /examples/pose/PHOLD/phold.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/PHOLD/phold.ci -------------------------------------------------------------------------------- /examples/pose/PHOLD/phold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/PHOLD/phold.h -------------------------------------------------------------------------------- /examples/pose/Ring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/Ring/Makefile -------------------------------------------------------------------------------- /examples/pose/Ring/Worker.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/Ring/Worker.C -------------------------------------------------------------------------------- /examples/pose/Ring/Worker.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/Ring/Worker.ci -------------------------------------------------------------------------------- /examples/pose/Ring/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/Ring/Worker.h -------------------------------------------------------------------------------- /examples/pose/Ring/pgm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/Ring/pgm.C -------------------------------------------------------------------------------- /examples/pose/Ring/pgm.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/Ring/pgm.ci -------------------------------------------------------------------------------- /examples/pose/Ring/pgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/examples/pose/Ring/pgm.h -------------------------------------------------------------------------------- /package-tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/package-tarball.sh -------------------------------------------------------------------------------- /relink.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/relink.script -------------------------------------------------------------------------------- /smart-build.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/smart-build.pl -------------------------------------------------------------------------------- /src/QuickThreads/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/CHANGES -------------------------------------------------------------------------------- /src/QuickThreads/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/INSTALL -------------------------------------------------------------------------------- /src/QuickThreads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/Makefile -------------------------------------------------------------------------------- /src/QuickThreads/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/README -------------------------------------------------------------------------------- /src/QuickThreads/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/configure -------------------------------------------------------------------------------- /src/QuickThreads/copyright.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/copyright.h -------------------------------------------------------------------------------- /src/QuickThreads/doc/qt.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/doc/qt.ps -------------------------------------------------------------------------------- /src/QuickThreads/md/axp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/axp.h -------------------------------------------------------------------------------- /src/QuickThreads/md/axp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/axp.s -------------------------------------------------------------------------------- /src/QuickThreads/md/axp_b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/axp_b.s -------------------------------------------------------------------------------- /src/QuickThreads/md/hppa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/hppa.h -------------------------------------------------------------------------------- /src/QuickThreads/md/hppa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/hppa.s -------------------------------------------------------------------------------- /src/QuickThreads/md/hppa_b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/hppa_b.s -------------------------------------------------------------------------------- /src/QuickThreads/md/i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/i386.h -------------------------------------------------------------------------------- /src/QuickThreads/md/i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/i386.s -------------------------------------------------------------------------------- /src/QuickThreads/md/i386_b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/i386_b.s -------------------------------------------------------------------------------- /src/QuickThreads/md/ksr1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/ksr1.h -------------------------------------------------------------------------------- /src/QuickThreads/md/ksr1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/ksr1.s -------------------------------------------------------------------------------- /src/QuickThreads/md/ksr1_b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/ksr1_b.s -------------------------------------------------------------------------------- /src/QuickThreads/md/m88k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/m88k.c -------------------------------------------------------------------------------- /src/QuickThreads/md/m88k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/m88k.h -------------------------------------------------------------------------------- /src/QuickThreads/md/m88k.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/m88k.s -------------------------------------------------------------------------------- /src/QuickThreads/md/m88k_b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/m88k_b.s -------------------------------------------------------------------------------- /src/QuickThreads/md/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/mips.h -------------------------------------------------------------------------------- /src/QuickThreads/md/mips.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/mips.s -------------------------------------------------------------------------------- /src/QuickThreads/md/mips_b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/mips_b.s -------------------------------------------------------------------------------- /src/QuickThreads/md/mipspro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/mipspro.h -------------------------------------------------------------------------------- /src/QuickThreads/md/mipspro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/mipspro.s -------------------------------------------------------------------------------- /src/QuickThreads/md/setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/setjmp.c -------------------------------------------------------------------------------- /src/QuickThreads/md/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/sparc.h -------------------------------------------------------------------------------- /src/QuickThreads/md/sparc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/sparc.s -------------------------------------------------------------------------------- /src/QuickThreads/md/sparc_b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/sparc_b.s -------------------------------------------------------------------------------- /src/QuickThreads/md/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/stub.c -------------------------------------------------------------------------------- /src/QuickThreads/md/stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/stub.h -------------------------------------------------------------------------------- /src/QuickThreads/md/stub_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/stub_b.c -------------------------------------------------------------------------------- /src/QuickThreads/md/t3e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/t3e.h -------------------------------------------------------------------------------- /src/QuickThreads/md/t3e.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/t3e.s -------------------------------------------------------------------------------- /src/QuickThreads/md/t3e_b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/t3e_b.s -------------------------------------------------------------------------------- /src/QuickThreads/md/vax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/vax.h -------------------------------------------------------------------------------- /src/QuickThreads/md/vax.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/vax.s -------------------------------------------------------------------------------- /src/QuickThreads/md/vax_b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/md/vax_b.s -------------------------------------------------------------------------------- /src/QuickThreads/meas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/meas.c -------------------------------------------------------------------------------- /src/QuickThreads/mkfiles/aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/mkfiles/aix -------------------------------------------------------------------------------- /src/QuickThreads/mkfiles/none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/mkfiles/none -------------------------------------------------------------------------------- /src/QuickThreads/qt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/qt.c -------------------------------------------------------------------------------- /src/QuickThreads/qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/qt.h -------------------------------------------------------------------------------- /src/QuickThreads/qtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/qtb.h -------------------------------------------------------------------------------- /src/QuickThreads/stp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/stp.c -------------------------------------------------------------------------------- /src/QuickThreads/stp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/stp.h -------------------------------------------------------------------------------- /src/QuickThreads/time/assim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/time/assim -------------------------------------------------------------------------------- /src/QuickThreads/time/cswap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/time/cswap -------------------------------------------------------------------------------- /src/QuickThreads/time/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/time/go -------------------------------------------------------------------------------- /src/QuickThreads/time/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/time/init -------------------------------------------------------------------------------- /src/QuickThreads/time/prim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/time/prim -------------------------------------------------------------------------------- /src/QuickThreads/time/raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/QuickThreads/time/raw -------------------------------------------------------------------------------- /src/arch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/.gitignore -------------------------------------------------------------------------------- /src/arch/common/cc-clang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-clang.h -------------------------------------------------------------------------------- /src/arch/common/cc-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-clang.sh -------------------------------------------------------------------------------- /src/arch/common/cc-craycc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-craycc.h -------------------------------------------------------------------------------- /src/arch/common/cc-craycc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-craycc.sh -------------------------------------------------------------------------------- /src/arch/common/cc-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-gcc.h -------------------------------------------------------------------------------- /src/arch/common/cc-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-gcc.sh -------------------------------------------------------------------------------- /src/arch/common/cc-icc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-icc.h -------------------------------------------------------------------------------- /src/arch/common/cc-icc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-icc.sh -------------------------------------------------------------------------------- /src/arch/common/cc-icx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-icx.h -------------------------------------------------------------------------------- /src/arch/common/cc-icx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-icx.sh -------------------------------------------------------------------------------- /src/arch/common/cc-mpiopts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-mpiopts.sh -------------------------------------------------------------------------------- /src/arch/common/cc-msvc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/common/cc-msvc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-msvc.sh -------------------------------------------------------------------------------- /src/arch/common/cc-nvhpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-nvhpc.h -------------------------------------------------------------------------------- /src/arch/common/cc-nvhpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-nvhpc.sh -------------------------------------------------------------------------------- /src/arch/common/cc-pgcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-pgcc.h -------------------------------------------------------------------------------- /src/arch/common/cc-pgcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-pgcc.sh -------------------------------------------------------------------------------- /src/arch/common/cc-xlc.h: -------------------------------------------------------------------------------- 1 | /* no defines needed. */ 2 | -------------------------------------------------------------------------------- /src/arch/common/cc-xlc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-xlc.sh -------------------------------------------------------------------------------- /src/arch/common/cc-xlc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-xlc64.h -------------------------------------------------------------------------------- /src/arch/common/cc-xlc64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/cc-xlc64.sh -------------------------------------------------------------------------------- /src/arch/common/conv-mach-flang.h: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank */ 2 | -------------------------------------------------------------------------------- /src/arch/common/conv-mach-ifort.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/common/conv-mach-ifx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/common/conv-mach-nolb.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/common/conv-mach-nvfortran.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/common/conv-mach-ooc.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/common/conv-mach-perftools.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/common/conv-mach-pgf90.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/common/conv-mach-syncft.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/common/special.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/common/special.sh -------------------------------------------------------------------------------- /src/arch/gni-crayxe/conv-mach.sh: -------------------------------------------------------------------------------- 1 | GNI_CRAYXE=1 2 | 3 | . $CHARMINC/conv-mach-craype.sh 4 | -------------------------------------------------------------------------------- /src/arch/gni/Makefile.machine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/gni/charmrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/gni/charmrun -------------------------------------------------------------------------------- /src/arch/gni/conv-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/gni/conv-common.h -------------------------------------------------------------------------------- /src/arch/gni/conv-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/gni/conv-common.sh -------------------------------------------------------------------------------- /src/arch/gni/conv-mach-hugepages.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/gni/conv-mach-papi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/gni/conv-mach-regularpages.h: -------------------------------------------------------------------------------- 1 | #define REGULARPAGE 1 2 | -------------------------------------------------------------------------------- /src/arch/gni/conv-mach-regularpages.sh: -------------------------------------------------------------------------------- 1 | export REGULARPAGE=1 2 | -------------------------------------------------------------------------------- /src/arch/gni/conv-mach-smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/gni/conv-mach-smp.h -------------------------------------------------------------------------------- /src/arch/gni/conv-mach-smp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/gni/conv-mach-smp.sh -------------------------------------------------------------------------------- /src/arch/gni/machine.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/gni/machine.C -------------------------------------------------------------------------------- /src/arch/mpi-crayxe/conv-mach.sh: -------------------------------------------------------------------------------- 1 | CMK_BUILD_CRAY=1 2 | 3 | . $CHARMINC/conv-mach-craype.sh 4 | -------------------------------------------------------------------------------- /src/arch/mpi-linux-i386/conv-mach-gm2.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/mpi-linux-ppc64le/cc-mpicxx.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | 3 | -------------------------------------------------------------------------------- /src/arch/mpi-win-x86_64/conv-mach-smp.sh: -------------------------------------------------------------------------------- 1 | CMK_SMP="1" 2 | -------------------------------------------------------------------------------- /src/arch/mpi/Makefile.machine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/mpi/charmrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/mpi/charmrun -------------------------------------------------------------------------------- /src/arch/mpi/conv-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/mpi/conv-common.h -------------------------------------------------------------------------------- /src/arch/mpi/conv-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/mpi/conv-common.sh -------------------------------------------------------------------------------- /src/arch/mpi/machine.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/mpi/machine.C -------------------------------------------------------------------------------- /src/arch/multicore-linux-ppc64le/cc-xlc.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /src/arch/multicore/charmrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/multicore/charmrun -------------------------------------------------------------------------------- /src/arch/multicore/gdir_link: -------------------------------------------------------------------------------- 1 | netlrts 2 | -------------------------------------------------------------------------------- /src/arch/netlrts-linux-ppc64le/cc-xlc.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /src/arch/netlrts-win-x86_64/conv-mach-smp.sh: -------------------------------------------------------------------------------- 1 | CMK_SMP="1" 2 | -------------------------------------------------------------------------------- /src/arch/netlrts/conv-common.sh: -------------------------------------------------------------------------------- 1 | CMK_USE_LRTS=1 2 | -------------------------------------------------------------------------------- /src/arch/netlrts/conv-mach-tcp.sh: -------------------------------------------------------------------------------- 1 | CMK_NO_PARTITIONS="1" 2 | -------------------------------------------------------------------------------- /src/arch/netlrts/machine.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/netlrts/machine.C -------------------------------------------------------------------------------- /src/arch/ofi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ofi/LICENSE -------------------------------------------------------------------------------- /src/arch/ofi/Makefile.machine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/ofi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ofi/README -------------------------------------------------------------------------------- /src/arch/ofi/charmrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ofi/charmrun -------------------------------------------------------------------------------- /src/arch/ofi/conv-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ofi/conv-common.h -------------------------------------------------------------------------------- /src/arch/ofi/conv-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ofi/conv-common.sh -------------------------------------------------------------------------------- /src/arch/ofi/conv-mach-simplepmi.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/ofi/machine.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ofi/machine.C -------------------------------------------------------------------------------- /src/arch/ofi/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ofi/request.h -------------------------------------------------------------------------------- /src/arch/pami-linux-ppc64le/cc-gcc.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /src/arch/pami-linux-ppc64le/cc-xlc.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /src/arch/pami-linux-ppc64le/cc-xlc.sh: -------------------------------------------------------------------------------- 1 | CMK_COMPILER='xlc' 2 | -------------------------------------------------------------------------------- /src/arch/pami-linux-ppc64le/conv-mach-smp.sh: -------------------------------------------------------------------------------- 1 | CMK_SMP='1' 2 | -------------------------------------------------------------------------------- /src/arch/pami/Makefile.machine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/pami/conv-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/pami/conv-common.h -------------------------------------------------------------------------------- /src/arch/pami/conv-common.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/pami/conv-mach-async.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/pami/machine.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/pami/machine.C -------------------------------------------------------------------------------- /src/arch/pamilrts-linux-ppc64le/cc-gcc.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /src/arch/pamilrts-linux-ppc64le/cc-xlc.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /src/arch/pamilrts-linux-ppc64le/conv-mach-smp.sh: -------------------------------------------------------------------------------- 1 | CMK_SMP='1' 2 | -------------------------------------------------------------------------------- /src/arch/pamilrts/Makefile.machine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/pamilrts/conv-common.sh: -------------------------------------------------------------------------------- 1 | CMK_USE_LRTS=1 2 | -------------------------------------------------------------------------------- /src/arch/pamilrts/conv-mach-async.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/pamilrts/machine.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/pamilrts/machine.C -------------------------------------------------------------------------------- /src/arch/template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/template/README -------------------------------------------------------------------------------- /src/arch/template/conv-mach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/template/conv-mach.h -------------------------------------------------------------------------------- /src/arch/template/machine.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/template/machine.C -------------------------------------------------------------------------------- /src/arch/ucx-linux-ppc64le/cc-gcc.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /src/arch/ucx-linux-ppc64le/cc-xlc.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /src/arch/ucx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ucx/LICENSE -------------------------------------------------------------------------------- /src/arch/ucx/Makefile.machine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/ucx/charmrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ucx/charmrun -------------------------------------------------------------------------------- /src/arch/ucx/conv-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ucx/conv-common.h -------------------------------------------------------------------------------- /src/arch/ucx/conv-common.sh: -------------------------------------------------------------------------------- 1 | 2 | CMK_BUILD_UCX=1 3 | -------------------------------------------------------------------------------- /src/arch/ucx/conv-mach-simplepmi.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/ucx/machine.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/ucx/machine.C -------------------------------------------------------------------------------- /src/arch/util/cmiqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/cmiqueue.h -------------------------------------------------------------------------------- /src/arch/util/compress.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/compress.C -------------------------------------------------------------------------------- /src/arch/util/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/compress.h -------------------------------------------------------------------------------- /src/arch/util/default_ppcq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/default_ppcq.h -------------------------------------------------------------------------------- /src/arch/util/immediate.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/immediate.C -------------------------------------------------------------------------------- /src/arch/util/lrts-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/lrts-common.h -------------------------------------------------------------------------------- /src/arch/util/lrtslock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/lrtslock.h -------------------------------------------------------------------------------- /src/arch/util/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/lz4.c -------------------------------------------------------------------------------- /src/arch/util/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/lz4.h -------------------------------------------------------------------------------- /src/arch/util/machine-cma.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/machine-cma.C -------------------------------------------------------------------------------- /src/arch/util/machine-lrts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/machine-lrts.h -------------------------------------------------------------------------------- /src/arch/util/machine-pxshm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/machine-pxshm.C -------------------------------------------------------------------------------- /src/arch/util/machine-rdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/machine-rdma.h -------------------------------------------------------------------------------- /src/arch/util/machine-smp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/machine-smp.C -------------------------------------------------------------------------------- /src/arch/util/machine-smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/machine-smp.h -------------------------------------------------------------------------------- /src/arch/util/machine-xpmem.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/machine-xpmem.C -------------------------------------------------------------------------------- /src/arch/util/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/machine.h -------------------------------------------------------------------------------- /src/arch/util/memalloc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/memalloc.C -------------------------------------------------------------------------------- /src/arch/util/mempool.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/mempool.C -------------------------------------------------------------------------------- /src/arch/util/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/mempool.h -------------------------------------------------------------------------------- /src/arch/util/pcqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/pcqueue.h -------------------------------------------------------------------------------- /src/arch/util/persist-comm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/persist-comm.C -------------------------------------------------------------------------------- /src/arch/util/zlib-compress.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/util/zlib-compress.C -------------------------------------------------------------------------------- /src/arch/verbs-linux-ppc64le/cc-xlc.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /src/arch/verbs/conv-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/verbs/conv-common.h -------------------------------------------------------------------------------- /src/arch/verbs/conv-common.sh: -------------------------------------------------------------------------------- 1 | CMK_USE_LRTS=1 2 | -------------------------------------------------------------------------------- /src/arch/verbs/machine-ibud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/verbs/machine-ibud.C -------------------------------------------------------------------------------- /src/arch/verbs/machine.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/verbs/machine.C -------------------------------------------------------------------------------- /src/arch/win/createlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/win/createlink.cpp -------------------------------------------------------------------------------- /src/arch/win/gatherflat.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/win/gatherflat.local -------------------------------------------------------------------------------- /src/arch/win/gathertree.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/win/gathertree.local -------------------------------------------------------------------------------- /src/arch/win/system_ln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/win/system_ln -------------------------------------------------------------------------------- /src/arch/win/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/win/unistd.h -------------------------------------------------------------------------------- /src/arch/win/unix2nt_ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/win/unix2nt_ar -------------------------------------------------------------------------------- /src/arch/win/unix2nt_cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/win/unix2nt_cc -------------------------------------------------------------------------------- /src/arch/win/vsenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/arch/win/vsenv.sh -------------------------------------------------------------------------------- /src/ck-core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/CMakeLists.txt -------------------------------------------------------------------------------- /src/ck-core/charm++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/charm++.h -------------------------------------------------------------------------------- /src/ck-core/charm-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/charm-api.h -------------------------------------------------------------------------------- /src/ck-core/charm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/charm.h -------------------------------------------------------------------------------- /src/ck-core/charmf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/charmf.C -------------------------------------------------------------------------------- /src/ck-core/charmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/charmf.h -------------------------------------------------------------------------------- /src/ck-core/charmmod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/charmmod.f90 -------------------------------------------------------------------------------- /src/ck-core/ck.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ck.C -------------------------------------------------------------------------------- /src/ck-core/ck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ck.h -------------------------------------------------------------------------------- /src/ck-core/ckIgetControl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckIgetControl.C -------------------------------------------------------------------------------- /src/ck-core/ckIgetControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckIgetControl.h -------------------------------------------------------------------------------- /src/ck-core/ckarray.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckarray.C -------------------------------------------------------------------------------- /src/ck-core/ckarray.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckarray.ci -------------------------------------------------------------------------------- /src/ck-core/ckarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckarray.h -------------------------------------------------------------------------------- /src/ck-core/ckarrayindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckarrayindex.h -------------------------------------------------------------------------------- /src/ck-core/ckarrayoptions.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckarrayoptions.C -------------------------------------------------------------------------------- /src/ck-core/ckarrayoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckarrayoptions.h -------------------------------------------------------------------------------- /src/ck-core/ckcallback-ccs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckcallback-ccs.h -------------------------------------------------------------------------------- /src/ck-core/ckcallback.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckcallback.C -------------------------------------------------------------------------------- /src/ck-core/ckcallback.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckcallback.ci -------------------------------------------------------------------------------- /src/ck-core/ckcallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckcallback.h -------------------------------------------------------------------------------- /src/ck-core/ckcheckpoint.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckcheckpoint.C -------------------------------------------------------------------------------- /src/ck-core/ckcheckpoint.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckcheckpoint.ci -------------------------------------------------------------------------------- /src/ck-core/ckcheckpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckcheckpoint.h -------------------------------------------------------------------------------- /src/ck-core/ckfutures.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckfutures.C -------------------------------------------------------------------------------- /src/ck-core/ckfutures.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckfutures.ci -------------------------------------------------------------------------------- /src/ck-core/ckfutures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckfutures.h -------------------------------------------------------------------------------- /src/ck-core/cklocation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/cklocation.C -------------------------------------------------------------------------------- /src/ck-core/cklocation.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/cklocation.ci -------------------------------------------------------------------------------- /src/ck-core/cklocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/cklocation.h -------------------------------------------------------------------------------- /src/ck-core/cklocrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/cklocrec.h -------------------------------------------------------------------------------- /src/ck-core/ckmarshall.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckmarshall.ci -------------------------------------------------------------------------------- /src/ck-core/ckmarshall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckmarshall.h -------------------------------------------------------------------------------- /src/ck-core/ckmemcheckpoint.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckmemcheckpoint.C -------------------------------------------------------------------------------- /src/ck-core/ckmemcheckpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckmemcheckpoint.h -------------------------------------------------------------------------------- /src/ck-core/ckmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckmessage.h -------------------------------------------------------------------------------- /src/ck-core/ckmigratable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckmigratable.h -------------------------------------------------------------------------------- /src/ck-core/ckmulticast.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckmulticast.C -------------------------------------------------------------------------------- /src/ck-core/ckmulticast.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckmulticast.ci -------------------------------------------------------------------------------- /src/ck-core/ckmulticast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckmulticast.h -------------------------------------------------------------------------------- /src/ck-core/ckobjQ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckobjQ.C -------------------------------------------------------------------------------- /src/ck-core/ckobjQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckobjQ.h -------------------------------------------------------------------------------- /src/ck-core/ckrdma.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckrdma.C -------------------------------------------------------------------------------- /src/ck-core/ckrdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckrdma.h -------------------------------------------------------------------------------- /src/ck-core/ckrdmadevice.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckrdmadevice.C -------------------------------------------------------------------------------- /src/ck-core/ckrdmadevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckrdmadevice.h -------------------------------------------------------------------------------- /src/ck-core/ckreduction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckreduction.C -------------------------------------------------------------------------------- /src/ck-core/ckreduction.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckreduction.ci -------------------------------------------------------------------------------- /src/ck-core/ckreduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckreduction.h -------------------------------------------------------------------------------- /src/ck-core/cksection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/cksection.h -------------------------------------------------------------------------------- /src/ck-core/ckstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/ckstream.h -------------------------------------------------------------------------------- /src/ck-core/cksyncbarrier.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/cksyncbarrier.C -------------------------------------------------------------------------------- /src/ck-core/cksyncbarrier.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/cksyncbarrier.ci -------------------------------------------------------------------------------- /src/ck-core/cksyncbarrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/cksyncbarrier.h -------------------------------------------------------------------------------- /src/ck-core/debug-charm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/debug-charm.C -------------------------------------------------------------------------------- /src/ck-core/debug-charm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/debug-charm.h -------------------------------------------------------------------------------- /src/ck-core/debug-message.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/debug-message.C -------------------------------------------------------------------------------- /src/ck-core/envelope-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/envelope-path.h -------------------------------------------------------------------------------- /src/ck-core/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/envelope.h -------------------------------------------------------------------------------- /src/ck-core/init.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/init.C -------------------------------------------------------------------------------- /src/ck-core/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/init.h -------------------------------------------------------------------------------- /src/ck-core/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/main.C -------------------------------------------------------------------------------- /src/ck-core/mainf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/mainf.f90 -------------------------------------------------------------------------------- /src/ck-core/middle-conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/middle-conv.h -------------------------------------------------------------------------------- /src/ck-core/middle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/middle.h -------------------------------------------------------------------------------- /src/ck-core/msgalloc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/msgalloc.C -------------------------------------------------------------------------------- /src/ck-core/objid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/objid.h -------------------------------------------------------------------------------- /src/ck-core/qd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/qd.C -------------------------------------------------------------------------------- /src/ck-core/qd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/qd.h -------------------------------------------------------------------------------- /src/ck-core/readonly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/readonly.h -------------------------------------------------------------------------------- /src/ck-core/register.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/register.C -------------------------------------------------------------------------------- /src/ck-core/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/register.h -------------------------------------------------------------------------------- /src/ck-core/sdag.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/sdag.C -------------------------------------------------------------------------------- /src/ck-core/sdag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/sdag.h -------------------------------------------------------------------------------- /src/ck-core/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/stats.h -------------------------------------------------------------------------------- /src/ck-core/waitqd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/waitqd.C -------------------------------------------------------------------------------- /src/ck-core/waitqd.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/waitqd.ci -------------------------------------------------------------------------------- /src/ck-core/waitqd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-core/waitqd.h -------------------------------------------------------------------------------- /src/ck-cp/controlPoints.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-cp/controlPoints.C -------------------------------------------------------------------------------- /src/ck-cp/controlPoints.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-cp/controlPoints.ci -------------------------------------------------------------------------------- /src/ck-cp/controlPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-cp/controlPoints.h -------------------------------------------------------------------------------- /src/ck-cp/controlPointsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-cp/controlPointsf.h -------------------------------------------------------------------------------- /src/ck-cp/pathHistory.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-cp/pathHistory.C -------------------------------------------------------------------------------- /src/ck-cp/pathHistory.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-cp/pathHistory.ci -------------------------------------------------------------------------------- /src/ck-cp/pathHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-cp/pathHistory.h -------------------------------------------------------------------------------- /src/ck-ldb/BaseLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/BaseLB.C -------------------------------------------------------------------------------- /src/ck-ldb/BaseLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/BaseLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/BaseLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/BaseLB.h -------------------------------------------------------------------------------- /src/ck-ldb/CentralLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/CentralLB.C -------------------------------------------------------------------------------- /src/ck-ldb/CentralLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/CentralLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/CentralLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/CentralLB.h -------------------------------------------------------------------------------- /src/ck-ldb/CentralLBMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/CentralLBMsg.h -------------------------------------------------------------------------------- /src/ck-ldb/CommonLBs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/CommonLBs.C -------------------------------------------------------------------------------- /src/ck-ldb/CommonLBs.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/CommonLBs.ci -------------------------------------------------------------------------------- /src/ck-ldb/DistBaseLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/DistBaseLB.C -------------------------------------------------------------------------------- /src/ck-ldb/DistBaseLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/DistBaseLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/DistBaseLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/DistBaseLB.h -------------------------------------------------------------------------------- /src/ck-ldb/DistributedLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/DistributedLB.C -------------------------------------------------------------------------------- /src/ck-ldb/DistributedLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/DistributedLB.h -------------------------------------------------------------------------------- /src/ck-ldb/EveryLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/EveryLB.C -------------------------------------------------------------------------------- /src/ck-ldb/EveryLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/EveryLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/HybridBaseLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/HybridBaseLB.C -------------------------------------------------------------------------------- /src/ck-ldb/HybridBaseLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/HybridBaseLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/HybridBaseLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/HybridBaseLB.h -------------------------------------------------------------------------------- /src/ck-ldb/HybridLBMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/HybridLBMsg.h -------------------------------------------------------------------------------- /src/ck-ldb/LBComm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBComm.C -------------------------------------------------------------------------------- /src/ck-ldb/LBComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBComm.h -------------------------------------------------------------------------------- /src/ck-ldb/LBDatabase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBDatabase.C -------------------------------------------------------------------------------- /src/ck-ldb/LBDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBDatabase.h -------------------------------------------------------------------------------- /src/ck-ldb/LBMachineUtil.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBMachineUtil.C -------------------------------------------------------------------------------- /src/ck-ldb/LBMachineUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBMachineUtil.h -------------------------------------------------------------------------------- /src/ck-ldb/LBManager.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBManager.C -------------------------------------------------------------------------------- /src/ck-ldb/LBManager.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBManager.ci -------------------------------------------------------------------------------- /src/ck-ldb/LBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBManager.h -------------------------------------------------------------------------------- /src/ck-ldb/LBOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBOM.h -------------------------------------------------------------------------------- /src/ck-ldb/LBObj.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBObj.C -------------------------------------------------------------------------------- /src/ck-ldb/LBObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBObj.h -------------------------------------------------------------------------------- /src/ck-ldb/LBSimulation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBSimulation.C -------------------------------------------------------------------------------- /src/ck-ldb/LBSimulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LBSimulation.h -------------------------------------------------------------------------------- /src/ck-ldb/LButil.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/LButil.C -------------------------------------------------------------------------------- /src/ck-ldb/Make.lb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/Make.lb -------------------------------------------------------------------------------- /src/ck-ldb/Makefile_lb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/Makefile_lb.sh -------------------------------------------------------------------------------- /src/ck-ldb/MetaBalancer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/MetaBalancer.C -------------------------------------------------------------------------------- /src/ck-ldb/MetaBalancer.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/MetaBalancer.ci -------------------------------------------------------------------------------- /src/ck-ldb/MetaBalancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/MetaBalancer.h -------------------------------------------------------------------------------- /src/ck-ldb/MetisLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/MetisLB.C -------------------------------------------------------------------------------- /src/ck-ldb/MetisLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/MetisLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/MetisLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/MetisLB.h -------------------------------------------------------------------------------- /src/ck-ldb/RecBipartLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/RecBipartLB.C -------------------------------------------------------------------------------- /src/ck-ldb/RecBipartLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/RecBipartLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/RecBipartLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/RecBipartLB.h -------------------------------------------------------------------------------- /src/ck-ldb/Refiner.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/Refiner.C -------------------------------------------------------------------------------- /src/ck-ldb/Refiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/Refiner.h -------------------------------------------------------------------------------- /src/ck-ldb/RefinerTemp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/RefinerTemp.C -------------------------------------------------------------------------------- /src/ck-ldb/RefinerTemp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/RefinerTemp.h -------------------------------------------------------------------------------- /src/ck-ldb/ScotchLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ScotchLB.C -------------------------------------------------------------------------------- /src/ck-ldb/ScotchLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ScotchLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/ScotchLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ScotchLB.h -------------------------------------------------------------------------------- /src/ck-ldb/ScotchTopoLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ScotchTopoLB.C -------------------------------------------------------------------------------- /src/ck-ldb/ScotchTopoLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ScotchTopoLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/ScotchTopoLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ScotchTopoLB.h -------------------------------------------------------------------------------- /src/ck-ldb/TreeBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/TreeBuilder.h -------------------------------------------------------------------------------- /src/ck-ldb/TreeLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/TreeLB.C -------------------------------------------------------------------------------- /src/ck-ldb/TreeLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/TreeLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/TreeLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/TreeLB.h -------------------------------------------------------------------------------- /src/ck-ldb/TreeLevel.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/TreeLevel.ci -------------------------------------------------------------------------------- /src/ck-ldb/TreeLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/TreeLevel.h -------------------------------------------------------------------------------- /src/ck-ldb/ZoltanLB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ZoltanLB.C -------------------------------------------------------------------------------- /src/ck-ldb/ZoltanLB.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ZoltanLB.ci -------------------------------------------------------------------------------- /src/ck-ldb/ZoltanLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ZoltanLB.h -------------------------------------------------------------------------------- /src/ck-ldb/ckgraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ckgraph.C -------------------------------------------------------------------------------- /src/ck-ldb/ckgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ckgraph.h -------------------------------------------------------------------------------- /src/ck-ldb/ckheap.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ckheap.C -------------------------------------------------------------------------------- /src/ck-ldb/ckheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ckheap.h -------------------------------------------------------------------------------- /src/ck-ldb/ckset.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ckset.C -------------------------------------------------------------------------------- /src/ck-ldb/ckset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/ckset.h -------------------------------------------------------------------------------- /src/ck-ldb/elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/elements.h -------------------------------------------------------------------------------- /src/ck-ldb/forestTest.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/forestTest.C -------------------------------------------------------------------------------- /src/ck-ldb/greedy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/greedy.h -------------------------------------------------------------------------------- /src/ck-ldb/idm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/idm.h -------------------------------------------------------------------------------- /src/ck-ldb/lbdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/lbdb.h -------------------------------------------------------------------------------- /src/ck-ldb/lbdbf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/lbdbf.C -------------------------------------------------------------------------------- /src/ck-ldb/libmoduleCommonLBs.dep: -------------------------------------------------------------------------------- 1 | -lckmetis 2 | -------------------------------------------------------------------------------- /src/ck-ldb/libmoduleEveryLB.dep: -------------------------------------------------------------------------------- 1 | -lckmetis 2 | -------------------------------------------------------------------------------- /src/ck-ldb/manager.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/manager.C -------------------------------------------------------------------------------- /src/ck-ldb/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/manager.h -------------------------------------------------------------------------------- /src/ck-ldb/pheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/pheap.h -------------------------------------------------------------------------------- /src/ck-ldb/readmodel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/readmodel.C -------------------------------------------------------------------------------- /src/ck-ldb/refine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/refine.h -------------------------------------------------------------------------------- /src/ck-ldb/treeTest.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/treeTest.C -------------------------------------------------------------------------------- /src/ck-ldb/weakTest.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-ldb/weakTest.C -------------------------------------------------------------------------------- /src/ck-perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/CMakeLists.txt -------------------------------------------------------------------------------- /src/ck-perf/trace-all.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/trace-all.C -------------------------------------------------------------------------------- /src/ck-perf/trace-common.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/trace-common.C -------------------------------------------------------------------------------- /src/ck-perf/trace-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/trace-common.h -------------------------------------------------------------------------------- /src/ck-perf/trace-memory.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/trace-memory.C -------------------------------------------------------------------------------- /src/ck-perf/trace-memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/trace-memory.h -------------------------------------------------------------------------------- /src/ck-perf/trace-simple.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/trace-simple.C -------------------------------------------------------------------------------- /src/ck-perf/trace-simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/trace-simple.h -------------------------------------------------------------------------------- /src/ck-perf/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/trace.h -------------------------------------------------------------------------------- /src/ck-perf/tracec.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/tracec.C -------------------------------------------------------------------------------- /src/ck-perf/tracec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/tracec.h -------------------------------------------------------------------------------- /src/ck-perf/tracef.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/tracef.C -------------------------------------------------------------------------------- /src/ck-perf/tracef_f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-perf/tracef_f.f90 -------------------------------------------------------------------------------- /src/ck-pics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-pics/CMakeLists.txt -------------------------------------------------------------------------------- /src/ck-pics/picsautoperf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-pics/picsautoperf.C -------------------------------------------------------------------------------- /src/ck-pics/picsautoperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-pics/picsautoperf.h -------------------------------------------------------------------------------- /src/ck-pics/picsdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-pics/picsdefs.h -------------------------------------------------------------------------------- /src/ck-pics/picsdefscpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-pics/picsdefscpp.h -------------------------------------------------------------------------------- /src/ck-pics/picstreenode.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-pics/picstreenode.C -------------------------------------------------------------------------------- /src/ck-pics/picstreenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-pics/picstreenode.h -------------------------------------------------------------------------------- /src/ck-pics/trace-perf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-pics/trace-perf.C -------------------------------------------------------------------------------- /src/ck-pics/trace-perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/ck-pics/trace-perf.h -------------------------------------------------------------------------------- /src/conv-ccs/ccs-auth.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ccs/ccs-auth.C -------------------------------------------------------------------------------- /src/conv-ccs/ccs-auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ccs/ccs-auth.h -------------------------------------------------------------------------------- /src/conv-ccs/ccs-client.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ccs/ccs-client.C -------------------------------------------------------------------------------- /src/conv-ccs/ccs-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ccs/ccs-client.h -------------------------------------------------------------------------------- /src/conv-ccs/ccs-server.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ccs/ccs-server.C -------------------------------------------------------------------------------- /src/conv-ccs/ccs-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ccs/ccs-server.h -------------------------------------------------------------------------------- /src/conv-ccs/conv-ccs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ccs/conv-ccs.C -------------------------------------------------------------------------------- /src/conv-ccs/conv-ccs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ccs/conv-ccs.h -------------------------------------------------------------------------------- /src/conv-ccs/middle-ccs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ccs/middle-ccs.C -------------------------------------------------------------------------------- /src/conv-core/cmipool.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/cmipool.C -------------------------------------------------------------------------------- /src/conv-core/cmipool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/cmipool.h -------------------------------------------------------------------------------- /src/conv-core/cmishmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/cmishmem.h -------------------------------------------------------------------------------- /src/conv-core/conv-conds.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/conv-conds.C -------------------------------------------------------------------------------- /src/conv-core/conv-cpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/conv-cpath.h -------------------------------------------------------------------------------- /src/conv-core/conv-cpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/conv-cpm.h -------------------------------------------------------------------------------- /src/conv-core/conv-ooc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/conv-ooc.h -------------------------------------------------------------------------------- /src/conv-core/conv-qd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/conv-qd.h -------------------------------------------------------------------------------- /src/conv-core/conv-rdma.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/conv-rdma.C -------------------------------------------------------------------------------- /src/conv-core/conv-rdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/conv-rdma.h -------------------------------------------------------------------------------- /src/conv-core/conv-taskQ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/conv-taskQ.C -------------------------------------------------------------------------------- /src/conv-core/conv-taskQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/conv-taskQ.h -------------------------------------------------------------------------------- /src/conv-core/conv-trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/conv-trace.h -------------------------------------------------------------------------------- /src/conv-core/convcore.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/convcore.C -------------------------------------------------------------------------------- /src/conv-core/converse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/converse.h -------------------------------------------------------------------------------- /src/conv-core/cpath.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/cpath.C -------------------------------------------------------------------------------- /src/conv-core/cpm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/cpm.C -------------------------------------------------------------------------------- /src/conv-core/cpthreads.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/cpthreads.C -------------------------------------------------------------------------------- /src/conv-core/cpthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/cpthreads.h -------------------------------------------------------------------------------- /src/conv-core/debug-conv.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/debug-conv.C -------------------------------------------------------------------------------- /src/conv-core/debug-conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/debug-conv.h -------------------------------------------------------------------------------- /src/conv-core/futures.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/futures.C -------------------------------------------------------------------------------- /src/conv-core/global-nop.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/global-nop.C -------------------------------------------------------------------------------- /src/conv-core/hrctimer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/hrctimer.C -------------------------------------------------------------------------------- /src/conv-core/hrctimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/hrctimer.h -------------------------------------------------------------------------------- /src/conv-core/isomalloc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/isomalloc.C -------------------------------------------------------------------------------- /src/conv-core/mem-arena.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/mem-arena.C -------------------------------------------------------------------------------- /src/conv-core/mem-arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/mem-arena.h -------------------------------------------------------------------------------- /src/conv-core/memory-gnu.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/memory-gnu.C -------------------------------------------------------------------------------- /src/conv-core/memory.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/memory.C -------------------------------------------------------------------------------- /src/conv-core/msgmgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/msgmgr.C -------------------------------------------------------------------------------- /src/conv-core/msgq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/msgq.h -------------------------------------------------------------------------------- /src/conv-core/persistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/persistent.h -------------------------------------------------------------------------------- /src/conv-core/queueing.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/queueing.C -------------------------------------------------------------------------------- /src/conv-core/queueing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/queueing.h -------------------------------------------------------------------------------- /src/conv-core/quiescence.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/quiescence.C -------------------------------------------------------------------------------- /src/conv-core/quiescence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/quiescence.h -------------------------------------------------------------------------------- /src/conv-core/random.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/random.C -------------------------------------------------------------------------------- /src/conv-core/taskqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/taskqueue.h -------------------------------------------------------------------------------- /src/conv-core/threads.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-core/threads.C -------------------------------------------------------------------------------- /src/conv-ldb/cldb.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/cldb.C -------------------------------------------------------------------------------- /src/conv-ldb/cldb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/cldb.h -------------------------------------------------------------------------------- /src/conv-ldb/cldb.none.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/cldb.none.C -------------------------------------------------------------------------------- /src/conv-ldb/cldb.rand.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/cldb.rand.C -------------------------------------------------------------------------------- /src/conv-ldb/cldb.spray.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/cldb.spray.C -------------------------------------------------------------------------------- /src/conv-ldb/cldb.test.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/cldb.test.C -------------------------------------------------------------------------------- /src/conv-ldb/edgelist.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/edgelist.C -------------------------------------------------------------------------------- /src/conv-ldb/generate.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/generate.C -------------------------------------------------------------------------------- /src/conv-ldb/graphdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/graphdefs.h -------------------------------------------------------------------------------- /src/conv-ldb/topology.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/topology.C -------------------------------------------------------------------------------- /src/conv-ldb/topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-ldb/topology.h -------------------------------------------------------------------------------- /src/conv-perf/allEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-perf/allEvents.h -------------------------------------------------------------------------------- /src/conv-perf/traceCore.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-perf/traceCore.C -------------------------------------------------------------------------------- /src/conv-perf/traceCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/conv-perf/traceCore.h -------------------------------------------------------------------------------- /src/langs/pvmc/pvm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/langs/pvmc/pvm3.h -------------------------------------------------------------------------------- /src/langs/pvmc/pvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/langs/pvmc/pvmc.h -------------------------------------------------------------------------------- /src/langs/pvmc/pvmc_buf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/langs/pvmc/pvmc_buf.C -------------------------------------------------------------------------------- /src/langs/pvmc/pvmc_comm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/langs/pvmc/pvmc_comm.C -------------------------------------------------------------------------------- /src/langs/pvmc/pvmc_conv.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/langs/pvmc/pvmc_conv.C -------------------------------------------------------------------------------- /src/langs/pvmc/pvmc_main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/langs/pvmc/pvmc_main.C -------------------------------------------------------------------------------- /src/langs/pvmc/pvmc_pack.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/langs/pvmc/pvmc_pack.C -------------------------------------------------------------------------------- /src/langs/pvmc/pvmctest.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/langs/pvmc/pvmctest.C -------------------------------------------------------------------------------- /src/langs/simplemsg/sm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/langs/simplemsg/sm.C -------------------------------------------------------------------------------- /src/langs/simplemsg/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/langs/simplemsg/sm.h -------------------------------------------------------------------------------- /src/libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/libs/Makefile -------------------------------------------------------------------------------- /src/libs/ck-libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/libs/ck-libs/Makefile -------------------------------------------------------------------------------- /src/libs/ck-libs/NDMeshStreamer/libmoduleNDMeshStreamer.dep: -------------------------------------------------------------------------------- 1 | -module completion 2 | -------------------------------------------------------------------------------- /src/libs/ck-libs/ParFUM-Tops-Dev/ParFUM_TOPS.ci: -------------------------------------------------------------------------------- 1 | module ParFUM_TOPS{ 2 | }; 3 | -------------------------------------------------------------------------------- /src/libs/ck-libs/ampi/libmoduleampi.dep: -------------------------------------------------------------------------------- 1 | -module tcharm -lampi-compat 2 | -------------------------------------------------------------------------------- /src/libs/ck-libs/ampi/libmoduleampif.dep: -------------------------------------------------------------------------------- 1 | -module tcharm -flibs -lampi-compat -lconv-utilf 2 | -------------------------------------------------------------------------------- /src/libs/ck-libs/ampi/romio/adio/ad_hfs/README: -------------------------------------------------------------------------------- 1 | This code is no longer supported. 2 | -------------------------------------------------------------------------------- /src/libs/ck-libs/ampi/romio/adio/ad_piofs/README: -------------------------------------------------------------------------------- 1 | This code is no longer supported. 2 | -------------------------------------------------------------------------------- /src/libs/ck-libs/ampi/romio/adio/ad_sfs/README: -------------------------------------------------------------------------------- 1 | This code is no longer supported. 2 | -------------------------------------------------------------------------------- /src/libs/ck-libs/amr/amr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/libs/ck-libs/amr/amr.C -------------------------------------------------------------------------------- /src/libs/ck-libs/amr/amr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/libs/ck-libs/amr/amr.h -------------------------------------------------------------------------------- /src/libs/ck-libs/collide/libmodulecollide.dep: -------------------------------------------------------------------------------- 1 | -module tcharm 2 | -------------------------------------------------------------------------------- /src/libs/ck-libs/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/libs/ck-libs/common.mk -------------------------------------------------------------------------------- /src/libs/ck-libs/dummy/ckdummy.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/libs/ck-libs/io/ckio.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/libs/ck-libs/io/ckio.C -------------------------------------------------------------------------------- /src/libs/ck-libs/io/ckio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/libs/ck-libs/io/ckio.h -------------------------------------------------------------------------------- /src/libs/ck-libs/liveViz3d/liveViz3d.dep: -------------------------------------------------------------------------------- 1 | -module liveViz 2 | 3 | -------------------------------------------------------------------------------- /src/libs/ck-libs/mblock/libmodulemblock.dep: -------------------------------------------------------------------------------- 1 | -module tcharm 2 | 3 | -------------------------------------------------------------------------------- /src/libs/ck-libs/pose/libmodulepose.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libs/ck-libs/tcharm/libmoduletcharmmain.dep: -------------------------------------------------------------------------------- 1 | -module tcharm 2 | -------------------------------------------------------------------------------- /src/scripts/Make.cidepends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/Make.cidepends -------------------------------------------------------------------------------- /src/scripts/Make.depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/Make.depends -------------------------------------------------------------------------------- /src/scripts/Make.gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/Make.gpu -------------------------------------------------------------------------------- /src/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/Makefile -------------------------------------------------------------------------------- /src/scripts/charm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/charm.mk -------------------------------------------------------------------------------- /src/scripts/charmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/charmc -------------------------------------------------------------------------------- /src/scripts/commitid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/commitid.sh -------------------------------------------------------------------------------- /src/scripts/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/configure.ac -------------------------------------------------------------------------------- /src/scripts/conv-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/conv-config.sh -------------------------------------------------------------------------------- /src/scripts/dep.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/dep.pl -------------------------------------------------------------------------------- /src/scripts/gatherflat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/gatherflat -------------------------------------------------------------------------------- /src/scripts/gathertree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/gathertree -------------------------------------------------------------------------------- /src/scripts/testrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/scripts/testrun -------------------------------------------------------------------------------- /src/util/SSE-Double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/SSE-Double.h -------------------------------------------------------------------------------- /src/util/SSE-Float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/SSE-Float.h -------------------------------------------------------------------------------- /src/util/ck128bitHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ck128bitHash.h -------------------------------------------------------------------------------- /src/util/ckBIconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckBIconfig.h -------------------------------------------------------------------------------- /src/util/ckbitvector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckbitvector.C -------------------------------------------------------------------------------- /src/util/ckbitvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckbitvector.h -------------------------------------------------------------------------------- /src/util/ckcomplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckcomplex.h -------------------------------------------------------------------------------- /src/util/ckdll.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckdll.C -------------------------------------------------------------------------------- /src/util/ckdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckdll.h -------------------------------------------------------------------------------- /src/util/ckdll_dlopen.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckdll_dlopen.C -------------------------------------------------------------------------------- /src/util/ckdll_system.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckdll_system.C -------------------------------------------------------------------------------- /src/util/ckdll_win32.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckdll_win32.C -------------------------------------------------------------------------------- /src/util/ckhashtable.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckhashtable.C -------------------------------------------------------------------------------- /src/util/ckhashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckhashtable.h -------------------------------------------------------------------------------- /src/util/ckimage.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckimage.C -------------------------------------------------------------------------------- /src/util/ckimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckimage.h -------------------------------------------------------------------------------- /src/util/cklists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/cklists.h -------------------------------------------------------------------------------- /src/util/ckliststring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckliststring.h -------------------------------------------------------------------------------- /src/util/ckregex.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckregex.C -------------------------------------------------------------------------------- /src/util/ckregex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckregex.h -------------------------------------------------------------------------------- /src/util/cksequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/cksequence.h -------------------------------------------------------------------------------- /src/util/ckstandalone.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckstandalone.C -------------------------------------------------------------------------------- /src/util/ckstatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckstatistics.h -------------------------------------------------------------------------------- /src/util/ckvector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/ckvector3d.h -------------------------------------------------------------------------------- /src/util/cmirdmautils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/cmirdmautils.C -------------------------------------------------------------------------------- /src/util/cmirdmautils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/cmirdmautils.h -------------------------------------------------------------------------------- /src/util/cmitls.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/cmitls.C -------------------------------------------------------------------------------- /src/util/cmitls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/cmitls.h -------------------------------------------------------------------------------- /src/util/conv-lists.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/conv-lists.C -------------------------------------------------------------------------------- /src/util/conv-lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/conv-lists.h -------------------------------------------------------------------------------- /src/util/crc32.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/crc32.C -------------------------------------------------------------------------------- /src/util/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/crc32.h -------------------------------------------------------------------------------- /src/util/fuzzytree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/fuzzytree.txt -------------------------------------------------------------------------------- /src/util/hilbert.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/hilbert.C -------------------------------------------------------------------------------- /src/util/hilbert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/hilbert.h -------------------------------------------------------------------------------- /src/util/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/json.hpp -------------------------------------------------------------------------------- /src/util/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/json_fwd.hpp -------------------------------------------------------------------------------- /src/util/pup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup.h -------------------------------------------------------------------------------- /src/util/pup_c.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_c.C -------------------------------------------------------------------------------- /src/util/pup_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_c.h -------------------------------------------------------------------------------- /src/util/pup_c_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_c_functions.h -------------------------------------------------------------------------------- /src/util/pup_cmialloc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_cmialloc.C -------------------------------------------------------------------------------- /src/util/pup_cmialloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_cmialloc.h -------------------------------------------------------------------------------- /src/util/pup_f.f90.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_f.f90.sh -------------------------------------------------------------------------------- /src/util/pup_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_mpi.h -------------------------------------------------------------------------------- /src/util/pup_paged.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_paged.C -------------------------------------------------------------------------------- /src/util/pup_paged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_paged.h -------------------------------------------------------------------------------- /src/util/pup_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_stl.h -------------------------------------------------------------------------------- /src/util/pup_toNetwork.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_toNetwork.C -------------------------------------------------------------------------------- /src/util/pup_toNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_toNetwork.h -------------------------------------------------------------------------------- /src/util/pup_toNetwork4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_toNetwork4.C -------------------------------------------------------------------------------- /src/util/pup_toNetwork4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_toNetwork4.h -------------------------------------------------------------------------------- /src/util/pup_util.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_util.C -------------------------------------------------------------------------------- /src/util/pup_xlater.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pup_xlater.C -------------------------------------------------------------------------------- /src/util/pupf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/pupf.h -------------------------------------------------------------------------------- /src/util/random_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/random_sequence.h -------------------------------------------------------------------------------- /src/util/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/simd.h -------------------------------------------------------------------------------- /src/util/sockRoutines.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/sockRoutines.C -------------------------------------------------------------------------------- /src/util/sockRoutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/sockRoutines.h -------------------------------------------------------------------------------- /src/util/spanningTree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/spanningTree.C -------------------------------------------------------------------------------- /src/util/spanningTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/spanningTree.h -------------------------------------------------------------------------------- /src/util/tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/tree.txt -------------------------------------------------------------------------------- /src/util/uFcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/uFcontext.h -------------------------------------------------------------------------------- /src/util/uJcontext.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/uJcontext.C -------------------------------------------------------------------------------- /src/util/uJcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/uJcontext.h -------------------------------------------------------------------------------- /src/util/valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/valgrind.h -------------------------------------------------------------------------------- /src/util/vector2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/util/vector2d.h -------------------------------------------------------------------------------- /src/xlat-i/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/CMakeLists.txt -------------------------------------------------------------------------------- /src/xlat-i/sdag/CEntry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/sdag/CEntry.C -------------------------------------------------------------------------------- /src/xlat-i/sdag/CEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/sdag/CEntry.h -------------------------------------------------------------------------------- /src/xlat-i/sdag/CToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/sdag/CToken.h -------------------------------------------------------------------------------- /src/xlat-i/sdag/EToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/sdag/EToken.h -------------------------------------------------------------------------------- /src/xlat-i/xi-AstNode.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-AstNode.C -------------------------------------------------------------------------------- /src/xlat-i/xi-AstNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-AstNode.h -------------------------------------------------------------------------------- /src/xlat-i/xi-Chare.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Chare.C -------------------------------------------------------------------------------- /src/xlat-i/xi-Chare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Chare.h -------------------------------------------------------------------------------- /src/xlat-i/xi-Construct.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Construct.C -------------------------------------------------------------------------------- /src/xlat-i/xi-Construct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Construct.h -------------------------------------------------------------------------------- /src/xlat-i/xi-Entry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Entry.C -------------------------------------------------------------------------------- /src/xlat-i/xi-Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Entry.h -------------------------------------------------------------------------------- /src/xlat-i/xi-Member.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Member.C -------------------------------------------------------------------------------- /src/xlat-i/xi-Member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Member.h -------------------------------------------------------------------------------- /src/xlat-i/xi-Message.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Message.C -------------------------------------------------------------------------------- /src/xlat-i/xi-Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Message.h -------------------------------------------------------------------------------- /src/xlat-i/xi-Module.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Module.C -------------------------------------------------------------------------------- /src/xlat-i/xi-Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Module.h -------------------------------------------------------------------------------- /src/xlat-i/xi-Parameter.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Parameter.C -------------------------------------------------------------------------------- /src/xlat-i/xi-Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Parameter.h -------------------------------------------------------------------------------- /src/xlat-i/xi-Template.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Template.C -------------------------------------------------------------------------------- /src/xlat-i/xi-Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Template.h -------------------------------------------------------------------------------- /src/xlat-i/xi-Type.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Type.C -------------------------------------------------------------------------------- /src/xlat-i/xi-Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Type.h -------------------------------------------------------------------------------- /src/xlat-i/xi-Value.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Value.C -------------------------------------------------------------------------------- /src/xlat-i/xi-Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-Value.h -------------------------------------------------------------------------------- /src/xlat-i/xi-grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-grammar.y -------------------------------------------------------------------------------- /src/xlat-i/xi-main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-main.C -------------------------------------------------------------------------------- /src/xlat-i/xi-main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-main.h -------------------------------------------------------------------------------- /src/xlat-i/xi-scan.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-scan.C -------------------------------------------------------------------------------- /src/xlat-i/xi-scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-scan.l -------------------------------------------------------------------------------- /src/xlat-i/xi-symbol.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-symbol.C -------------------------------------------------------------------------------- /src/xlat-i/xi-symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-symbol.h -------------------------------------------------------------------------------- /src/xlat-i/xi-util.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-util.C -------------------------------------------------------------------------------- /src/xlat-i/xi-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi-util.h -------------------------------------------------------------------------------- /src/xlat-i/xi.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlat-i/xi.makefile -------------------------------------------------------------------------------- /src/xlatcpm/conv-cpm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlatcpm/conv-cpm.C -------------------------------------------------------------------------------- /src/xlatcpm/conv-cpm.flex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/src/xlatcpm/conv-cpm.flex -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/ampi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/ampi/Makefile -------------------------------------------------------------------------------- /tests/ampi/chkpt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/ampi/chkpt/Makefile -------------------------------------------------------------------------------- /tests/ampi/chkpt/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/ampi/chkpt/hello.c -------------------------------------------------------------------------------- /tests/ampi/exit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/ampi/exit/.gitignore -------------------------------------------------------------------------------- /tests/ampi/exit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/ampi/exit/Makefile -------------------------------------------------------------------------------- /tests/ampi/jacobi3d/kill_01.txt: -------------------------------------------------------------------------------- 1 | 3 40 2 | -------------------------------------------------------------------------------- /tests/ampi/jacobi3d/kill_02.txt: -------------------------------------------------------------------------------- 1 | 3 70 2 | -------------------------------------------------------------------------------- /tests/ampi/megampi/test.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/ampi/megampi/test.C -------------------------------------------------------------------------------- /tests/ampi/mpich-test/ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/ampi/mpich-test/ToDo -------------------------------------------------------------------------------- /tests/ampi/mpich-test/basic/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/ckpoint/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/cxx/comm/testlist: -------------------------------------------------------------------------------- 1 | commname2 4 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/cxx/errhan/testlist: -------------------------------------------------------------------------------- 1 | commcallx 2 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errhan/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/attr/testlist: -------------------------------------------------------------------------------- 1 | keyvalmis 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/attr/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/coll/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/comm/testlist.ampi: -------------------------------------------------------------------------------- 1 | manysplit 4 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/cxx/testlist.in: -------------------------------------------------------------------------------- 1 | errhan 2 | @iodir@ 3 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/datatype/testlist: -------------------------------------------------------------------------------- 1 | getcnterr 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/f08/io/testlist: -------------------------------------------------------------------------------- 1 | uerrhandf08 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/f08/testlist: -------------------------------------------------------------------------------- 1 | io 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/f77/io/testlist: -------------------------------------------------------------------------------- 1 | uerrhandf 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/f77/testlist.in: -------------------------------------------------------------------------------- 1 | @iodir@ 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/f90/io/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/f90/io/testlist: -------------------------------------------------------------------------------- 1 | # This file generated by f77tof90 2 | uerrhandf90 1 3 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/f90/testlist.in: -------------------------------------------------------------------------------- 1 | @iodir@ 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/group/testlist: -------------------------------------------------------------------------------- 1 | gerr 1 -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/group/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/pt2pt/testlist.ampi: -------------------------------------------------------------------------------- 1 | proberank 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/topo/testlist: -------------------------------------------------------------------------------- 1 | cartsmall 4 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/errors/topo/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f08/init/testlist: -------------------------------------------------------------------------------- 1 | baseenvf90 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f08/misc/testlist: -------------------------------------------------------------------------------- 1 | sizeof2 1 2 | hello 1 3 | ring 4 4 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f08/profile/testlist: -------------------------------------------------------------------------------- 1 | profile1f90 2 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f08/timer/testlist: -------------------------------------------------------------------------------- 1 | wtimef90 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f77/init/testlist: -------------------------------------------------------------------------------- 1 | baseenvf 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f77/profile/testlist: -------------------------------------------------------------------------------- 1 | profile1f 2 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/attr/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/coll/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/comm/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/datatype/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/ext/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/info/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/init/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/init/testlist: -------------------------------------------------------------------------------- 1 | # This file generated by f77tof90 2 | baseenvf90 1 3 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/io/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/misc/testlist: -------------------------------------------------------------------------------- 1 | sizeof2 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/misc/testlist.ap: -------------------------------------------------------------------------------- 1 | sizeof2 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/profile/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/pt2pt/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/rma/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/spawn/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/timer/testlist: -------------------------------------------------------------------------------- 1 | wtimef90 1 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/topo/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/f90/util/Makefile.am-stamp: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/ft/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/impls/mpich/mpi_t/testlist: -------------------------------------------------------------------------------- 1 | collparmt 16 -------------------------------------------------------------------------------- /tests/ampi/mpich-test/impls/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/impls/testlist.in: -------------------------------------------------------------------------------- 1 | @impldir@ -------------------------------------------------------------------------------- /tests/ampi/mpich-test/init/testlist.ampi: -------------------------------------------------------------------------------- 1 | initstat 1 2 | timeout 2 3 | version 1 4 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/mpi_t/testlist.ampi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ampi/mpich-test/threads/mpi_t/testlist: -------------------------------------------------------------------------------- 1 | mpit_threading 1 2 | -------------------------------------------------------------------------------- /tests/ampi/pmpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/ampi/pmpi/Makefile -------------------------------------------------------------------------------- /tests/ampi/pmpi/pmpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/ampi/pmpi/pmpi.c -------------------------------------------------------------------------------- /tests/charm++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/charm++/Makefile -------------------------------------------------------------------------------- /tests/charm++/charmxi_error_messages/invalid_construct.ci: -------------------------------------------------------------------------------- 1 | mainmodule m { 2 | foo_construct{} 3 | }; 4 | -------------------------------------------------------------------------------- /tests/charm++/chkpt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/charm++/chkpt/README -------------------------------------------------------------------------------- /tests/charm++/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/charm++/io/Makefile -------------------------------------------------------------------------------- /tests/charm++/io/iotest.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/charm++/io/iotest.C -------------------------------------------------------------------------------- /tests/charm++/io/iotest.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/charm++/io/iotest.ci -------------------------------------------------------------------------------- /tests/charm++/jacobi3d-sdag/kill_01.txt: -------------------------------------------------------------------------------- 1 | 3 50 2 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d-sdag/kill_02.txt: -------------------------------------------------------------------------------- 1 | 3 33 2 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d-sdag/kill_03.txt: -------------------------------------------------------------------------------- 1 | 3 33 2 | 6 95 3 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d-sdag/kill_04.txt: -------------------------------------------------------------------------------- 1 | 3 18 2 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d-sdag/kill_05.txt: -------------------------------------------------------------------------------- 1 | 3 12 2 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d-sdag/kill_06.txt: -------------------------------------------------------------------------------- 1 | 3 12 2 | 6 38 3 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d/kill_01.txt: -------------------------------------------------------------------------------- 1 | 3 50 2 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d/kill_02.txt: -------------------------------------------------------------------------------- 1 | 3 35 2 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d/kill_03.txt: -------------------------------------------------------------------------------- 1 | 3 35 2 | 6 100 3 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d/kill_04.txt: -------------------------------------------------------------------------------- 1 | 3 20 2 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d/kill_05.txt: -------------------------------------------------------------------------------- 1 | 3 15 2 | -------------------------------------------------------------------------------- /tests/charm++/jacobi3d/kill_06.txt: -------------------------------------------------------------------------------- 1 | 3 15 2 | 6 45 3 | -------------------------------------------------------------------------------- /tests/charm++/megatest/bitvector.h: -------------------------------------------------------------------------------- 1 | #include "bitvector.decl.h" 2 | 3 | -------------------------------------------------------------------------------- /tests/charm++/queue/pgm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/charm++/queue/pgm.C -------------------------------------------------------------------------------- /tests/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/common.mk -------------------------------------------------------------------------------- /tests/converse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/converse/Makefile -------------------------------------------------------------------------------- /tests/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/util/Makefile -------------------------------------------------------------------------------- /tests/util/check.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/util/check.C -------------------------------------------------------------------------------- /tests/util/headerpad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/util/headerpad.C -------------------------------------------------------------------------------- /tests/util/headerpad.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/util/headerpad.ci -------------------------------------------------------------------------------- /tests/util/headerpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charmplusplus/charm/HEAD/tests/util/headerpad.h --------------------------------------------------------------------------------