Skip to content

Fortran-FOSS-Programmers/opencoarrays

 
 

Repository files navigation

OpenCoarrays

CI Build Status GitHub license Download as PDF

Download this file as a PDF document here.

Overview

OpenCoarrays is an open-source software project that supports the coarray Fortran (CAF) parallel programming features of the Fortran 2008 standard and several features proposed for Fortran 2015 in the draft Technical Specification TS 18508 Additional Parallel Features in Fortran.

OpenCoarrays provides a compiler wrapper (named caf), a runtime library (named libcaf_mpi.a by default), and an executable file launcher (named cafrun). With OpenCoarrays-aware compilers, the compiler wrapper passes the provided source code to the chosen compiler (mpif90 by default). For non-OpenCoarrays-aware compilers, the wrapper transforms CAF syntax into OpenCoarrys procedure calls before invoking the chosen compiler on the transformed code. The runtime library supports compiler communication and synchronization requests by invoking a lower-level communication library--the Message Passing Interface (MPI) by default. The launcher passes execution to the chosen communication library's parallel program launcher (mpirun by default).

OpenCoarrays defines an application binary interface (ABI) that translates high-level communication and synchronization requests into low-level calls to a user-specified communication library. This design decision liberates compiler teams from hardwiring communication-library choice into their compilers and it frees Fortran programmers to express parallel algorithms once and reuse identical CAF source with whichever communication library is most efficient for a given hardware platform. The communication substrate for OpenCoarrays built with the preferred build system, CMake, is the Message Passing Interface (MPI).

OpenCoarrays enables CAF application developers to express parallel algorithms without hardwiring a particular version of a particular communication library or library version into their codes. Such abstraction makes application code less sensitive to the evolution of the underlying communication libraries and hardware platforms.

Downloads

Please see our [Releases] page.

Compatibility

The GNU Compiler Collection (GCC) Fortran front end (gfortran) is OpenCoarrays-aware for release versions 5.1.0 and higher. Users of other compilers, including earlier versions of gfortran, can access a limited subset of CAF features via the provided opencoarrays module. After installation, please execute the caf script (which is installed in the bin directory of the installation path) with no arguments to see a list of the corresponding limitations. Please also notify the corresponding compiler vendor and the OpenCoarrays team that you would like for a future version of the compiler to be OpenCoarrays-aware.

Prerequisites

We expect our LIBCAF_MPI library to be the default OpenCoarrays library. LIBCAF_MPI is the most straightforward to install and use, the most robust in terms of its internal complexity, and the most frequently updated and maintained. Building LIBCAF_MPI requires prior installation of an MPI implementation. We recommend MPICH generally or, if available, [MVAPICH] for better performance. [OpenMPI] is another option.

We offer an unsupported LIBCAF_GASNet alternative. We intend for LIBCAF_GASNet to be an "expert" alternative capable of outperforming MPI for some applications on some platforms. LIBCAF_GASNet requires greater care to configure and use and building LIBCAF_GASNet requires prior installation of [GASNet].

Installation

Please see the [INSTALL.md] file.

Getting Started

To start using OpenCoarrays, please see the [GETTING_STARTED.md] file.

Contributing

Please see the [CONTRIBUTING.md] file.

Status

Please see the [STATUS.md] file.

Support

  • Please submit bug reports and feature requests via our [Issues] page.
  • Please submit questions regarding installation and use via our [Google Group] by signing into [Google Groups] or [subscribing] and sending email to [[email protected]].

Acknowledgements

We gratefully acknowledge support from the following institutions:

  • [National Center for Atmospheric Research] for access to the Yellowstone/Caldera supercomputers and for logistics support during the initial development of OpenCoarrays.
  • [CINECA] for access to Eurora/PLX for the project HyPS- BLAS under the ISCRA grant program for 2014.
  • [Google] for support of a related [Google Summer of Code] 2014 project.
  • The National Energy Research Scientific Computing Center ([NERSC]), which is supported by the Office of Science of the U.S. Department of Energy under Contract No. DE-AC02-05CH11231, for access to the Hopper and Edison supercomputers under the OpenCoarrays project start allocation.
  • [Sourcery, Inc.], for financial support for the domain registration, web hosting, advanced development, and conference travel.

[MVAPICH]: http://mvapich.cse.ohio-state.edu/) [OpenMPI]: http://www.open-mpi.org [Sourcery, Inc.]: http://www.sourceryinstitute.org [Google]: http://google.com [CINECA]: http://www.cineca.it/en [NERSC]: http://www.nersc.gov [National Center for Atmospheric Research]: http://ncar.ucar.edu [INSTALL.md]: ./INSTALL.md [GASNet]: http://gasnet.lbl.gov [CONTRIBUTING.md]: ./CONTRIBUTING.md [STATUS.md]: ./STATUS.md [GETTING_STARTED.md]: ./GETTING_STARTED.md [Google Groups]: https://groups.google.com [Google Group]: https://groups.google.com/forum/#!forum/opencoarrays [subscribing]: https://groups.google.com/forum/#!forum/opencoarrays/join [[email protected]]: mailto:[email protected] [Google Summer of Code]: https://www.google-melange.com/gsoc/org2/google/gsoc2014/gcc [OpenCoarrays Google Group]: https://groups.google.com/forum/#!forum/opencoarrays) [Issues]: https://github.com/sourceryinstitute/opencoarrays/issues [Releases]: https://github.com/sourceryinstitute/opencoarrays/releases

Packages

No packages published

Languages

  • Fortran 50.6%
  • C 21.9%
  • Shell 20.4%
  • CMake 4.5%
  • Makefile 1.7%
  • Ruby 0.6%
  • Assembly 0.3%