From: adrian <adr...@us...> - 2012-07-25 01:21:28
|
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 5abdaf74e1342b306ef6ce94727be303250f272e (commit) from 951fc619784df39c2ba6699da12d67a450568020 (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 5abdaf74e1342b306ef6ce94727be303250f272e Author: Adrian Prantl <ad...@ll...> Date: Tue Jul 24 18:20:41 2012 -0700 added the humble beginnings of a UPC backend to braid. ----------------------------------------------------------------------- Summary of changes: braid/Makefile.am | 48 +- braid/Makefile.in | 1711 ++++++++--- braid/README | 10 +- braid/aclocal.m4 | 21 + braid/braid/Makefile.include | 27 +- braid/braid/babel.py | 46 +- braid/braid/backend.py | 267 ++ braid/braid/braid.py | 45 +- braid/braid/chapel/__init__.py | 2 +- braid/braid/chapel/{backend.py => chpl_backend.py} | 329 +-- braid/braid/chapel/{cgen.py => chpl_code.py} | 2 +- .../{conversions.burg => chpl_conversions.burg} | 0 .../braid/chapel/{makefile.py => chpl_makefile.py} | 0 braid/braid/upc/__init__.py | 8 + braid/braid/upc/upc.py | 21 + braid/braid/upc/upc_backend.py | 943 ++++++ braid/braid/upc/upc_code.py | 76 + braid/braid/upc/upc_conversions.burg | 176 + .../{chapel/makefile.py => upc/upc_makefile.py} | 15 +- braid/chpl/Makefile.include | 103 +- braid/configure | 285 ++ braid/configure.ac | 23 +- braid/doc/braid.1 | 6 +- braid/doc/users_guide.html | 18 +- braid/gen-runtime-deps.sh | 43 + braid/regression/interop/tests.mk | 3465 +++++++++++++++++++- braid/upc/Makefile.include | 141 + 27 files changed, 7011 insertions(+), 820 deletions(-) create mode 100644 braid/braid/backend.py rename braid/braid/chapel/{backend.py => chpl_backend.py} (80%) rename braid/braid/chapel/{cgen.py => chpl_code.py} (99%) rename braid/braid/chapel/{conversions.burg => chpl_conversions.burg} (100%) copy braid/braid/chapel/{makefile.py => chpl_makefile.py} (100%) create mode 100644 braid/braid/upc/__init__.py create mode 100644 braid/braid/upc/upc.py create mode 100644 braid/braid/upc/upc_backend.py create mode 100644 braid/braid/upc/upc_code.py create mode 100644 braid/braid/upc/upc_conversions.burg rename braid/braid/{chapel/makefile.py => upc/upc_makefile.py} (97%) create mode 100644 braid/gen-runtime-deps.sh create mode 100644 braid/upc/Makefile.include hooks/post-receive -- compose-hpc |