From: adrian <adr...@us...> - 2012-07-16 23:49:26
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "compose-hpc". The branch, master has been updated via ba56b02ed13a9f20ee7ca8df05c36360d654a0b6 (commit) via ed91d332b68d1afe3fd57427613a5f96166bcbef (commit) via 00e3c3ed0f057f67530503769980bf61965fee80 (commit) via 065ee2737dd8e56ba022c1b41e93cc62b2220c5d (commit) via bf08e233cb064e0e93693d3dfd3cc5dd4672c2e8 (commit) via 105277b27d4879ba9a38a8da49829cfaa6ec375a (commit) from c9717a022319ea5d14f3f2782db69103f81105a1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ba56b02ed13a9f20ee7ca8df05c36360d654a0b6 Author: Adrian V. Prantl <pr...@an...> Date: Mon Jul 16 16:48:40 2012 -0700 WIP: luleshPGAS runs slowly (wrong array index) commit ed91d332b68d1afe3fd57427613a5f96166bcbef Author: Adrian V. Prantl <pr...@an...> Date: Fri Jul 13 15:15:45 2012 -0700 make babel_program_name a weak symbol commit 00e3c3ed0f057f67530503769980bf61965fee80 Author: Adrian V. Prantl <pr...@an...> Date: Fri Jul 13 15:15:31 2012 -0700 more work on hybrid lulesh commit 065ee2737dd8e56ba022c1b41e93cc62b2220c5d Author: Adrian V. Prantl <pr...@an...> Date: Fri Jul 13 11:57:26 2012 -0700 cleanup commit bf08e233cb064e0e93693d3dfd3cc5dd4672c2e8 Author: Adrian V. Prantl <pr...@an...> Date: Fri Jul 13 11:55:47 2012 -0700 added missing files commit 105277b27d4879ba9a38a8da49829cfaa6ec375a Author: Adrian V. Prantl <pr...@an...> Date: Fri Jul 13 11:48:59 2012 -0700 fixed patch ----------------------------------------------------------------------- Summary of changes: braid/braid/chapel/backend.py | 2 +- braid/braid/chapel/makefile.py | 9 +- braid/chapel-patches/0012-dual-atexits.diff | 40 +- braid/doc/braid.1 | 2 +- braid/doc/users_guide.html | 6 +- .../lulesh/cxx-pgas-experiement/GNUmakefile | 31 +- .../lulesh/cxx-pgas-experiement/babel.make | 6 +- .../cxx-pgas-experiement/libpgas/GNUmakefile | 128 +- .../lulesh/cxx-pgas-experiement/libpgas/babel.make | 10 +- .../lulesh/cxx-pgas-experiement/libpgas/pgas.chpl | 563 ---- .../lulesh/cxx-pgas-experiement/libpgas/pgas.h | 6 - .../cxx-pgas-experiement/libpgas/pgas_Impl.chpl | 202 +- .../libpgas/pgas_MPIinitializer_IOR.c | 708 ---- .../libpgas/pgas_MPIinitializer_IOR.h | 120 - .../cxx-pgas-experiement/libpgas/pgas_Skel.chpl | 13 - .../libpgas/pgas_blockedDouble3dArray_IOR.c | 728 ---- .../libpgas/pgas_blockedDouble3dArray_IOR.h | 131 - .../libpgas/pgas_blockedDouble3dArray_Skel.c | 85 - .../libpgas/pgas_blockedDouble3dArray_Skel.h | 32 - .../libpgas/pgas_blockedDouble3dArray_Stub.h | 27 - .../libpgas/pgas_blockedDouble3dArray_cStub.c | 70 - .../libpgas/pgas_blockedDouble3dArray_cStub.h | 48 - .../lulesh/cxx-pgas-experiement/luleshPGAS.cc | 180 +- .../examples/lulesh/cxx-pgas-experiement/pgas.hxx | 21 - .../lulesh/cxx-pgas-experiement/pgas_IOR.h | 26 - .../lulesh/cxx-pgas-experiement/pgas_array.sidl | 30 +- .../pgas_blockedDouble3dArray.cxx | 1514 --------- .../pgas_blockedDouble3dArray.hxx | 362 -- .../pgas_blockedDouble3dArray_IOR.h | 286 -- .../examples/lulesh/cxx-pgas-experiement/run8.moab | 2 +- .../parallel-chpl-lib/libhello/partest_Impl.chpl | 75 + braid/examples/parallel-chpl-lib/partest.cc | 38 + braid/examples/parallel-chpl-lib/partest.moab | 19 + braid/examples/parallel-chpl-lib/partest.sidl | 14 + braid/regression/interop/tests.mk | 3465 +------------------- 35 files changed, 529 insertions(+), 8470 deletions(-) delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas.chpl delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas.h delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_MPIinitializer_IOR.c delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_MPIinitializer_IOR.h delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_Skel.chpl delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_IOR.c delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_IOR.h delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_Skel.c delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_Skel.h delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_Stub.h delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_cStub.c delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_cStub.h delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/pgas.hxx delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/pgas_IOR.h delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/pgas_blockedDouble3dArray.cxx delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/pgas_blockedDouble3dArray.hxx delete mode 100644 braid/examples/lulesh/cxx-pgas-experiement/pgas_blockedDouble3dArray_IOR.h create mode 100644 braid/examples/parallel-chpl-lib/libhello/partest_Impl.chpl create mode 100644 braid/examples/parallel-chpl-lib/partest.cc create mode 100644 braid/examples/parallel-chpl-lib/partest.moab create mode 100644 braid/examples/parallel-chpl-lib/partest.sidl hooks/post-receive -- compose-hpc |