From: adrian <adr...@us...> - 2012-07-02 21:34:55
|
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 f780013ca1e66ff76f6191c72730c48dc743069d (commit) via 95f48ab2d4c55f8067d06dab0e299181e0928017 (commit) from b6942a74c703974ead8d3a9183506563776e7590 (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 f780013ca1e66ff76f6191c72730c48dc743069d Author: Adrian Prantl <ad...@ll...> Date: Mon Jul 2 14:34:13 2012 -0700 added raw implementation of pgas array commit 95f48ab2d4c55f8067d06dab0e299181e0928017 Author: Adrian Prantl <ad...@ll...> Date: Mon Jul 2 10:33:52 2012 -0700 template specialization ----------------------------------------------------------------------- Summary of changes: braid/BUGS | 10 +- .../examples/lulesh/cxx-pgas-experiement/Makefile | 4 +- .../lulesh/cxx-pgas-experiement/babel.make | 3 + .../cxx-pgas-experiement/libpgas/GNUmakefile} | 79 +- .../lulesh/cxx-pgas-experiement/libpgas/babel.make | 8 + .../lulesh/cxx-pgas-experiement/libpgas/pgas.chpl | 297 ++++ .../lulesh/cxx-pgas-experiement/libpgas/pgas.h | 6 + .../cxx-pgas-experiement/libpgas/pgas_Impl.chpl | 86 ++ .../cxx-pgas-experiement/libpgas/pgas_Skel.chpl | 7 + .../libpgas/pgas_blockedDouble3dArray_IOR.c | 728 ++++++++++ .../libpgas/pgas_blockedDouble3dArray_IOR.h | 131 ++ .../libpgas/pgas_blockedDouble3dArray_Skel.c | 66 + .../libpgas/pgas_blockedDouble3dArray_Skel.h | 32 + .../libpgas/pgas_blockedDouble3dArray_Stub.h | 27 + .../libpgas/pgas_blockedDouble3dArray_cStub.c | 70 + .../libpgas/pgas_blockedDouble3dArray_cStub.h | 48 + .../libpgas/pgas_blockedDoubleArray_IOR.c | 728 ++++++++++ .../libpgas/pgas_blockedDoubleArray_IOR.h | 131 ++ .../libpgas/pgas_blockedDoubleArray_Skel.c | 61 + .../libpgas/pgas_blockedDoubleArray_Skel.h | 28 + .../libpgas/pgas_blockedDoubleArray_Stub.h | 27 + .../libpgas/pgas_blockedDoubleArray_cStub.c | 70 + .../libpgas/pgas_blockedDoubleArray_cStub.h | 48 + .../libpgas/test/indexset.chpl | 74 + .../lulesh/cxx-pgas-experiement/luleshPGAS.cc | 89 +- .../examples/lulesh/cxx-pgas-experiement/pgas.hxx | 17 + .../lulesh/cxx-pgas-experiement/pgas_IOR.h | 23 + .../lulesh/cxx-pgas-experiement/pgas_array.sidl | 19 + .../pgas_blockedDouble3dArray.cxx | 1514 ++++++++++++++++++++ .../pgas_blockedDouble3dArray.hxx | 362 +++++ .../pgas_blockedDouble3dArray_IOR.h} | 167 ++- 31 files changed, 4794 insertions(+), 166 deletions(-) create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/babel.make copy braid/{braid/chapel/makefile.py => examples/lulesh/cxx-pgas-experiement/libpgas/GNUmakefile} (82%) create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/babel.make create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas.chpl create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas.h create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_Impl.chpl create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_Skel.chpl create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_IOR.c create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_IOR.h create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_Skel.c create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_Skel.h create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_Stub.h create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_cStub.c create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDouble3dArray_cStub.h create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDoubleArray_IOR.c create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDoubleArray_IOR.h create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDoubleArray_Skel.c create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDoubleArray_Skel.h create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDoubleArray_Stub.h create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDoubleArray_cStub.c create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/pgas_blockedDoubleArray_cStub.h create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/libpgas/test/indexset.chpl create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/pgas.hxx create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/pgas_IOR.h create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/pgas_array.sidl create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/pgas_blockedDouble3dArray.cxx create mode 100644 braid/examples/lulesh/cxx-pgas-experiement/pgas_blockedDouble3dArray.hxx copy braid/examples/{sandbox/hpl/libChpl/hplsupport_SimpleArray1dInt_IOR.h => lulesh/cxx-pgas-experiement/pgas_blockedDouble3dArray_IOR.h} (53%) hooks/post-receive -- compose-hpc |