Difference between revisions of "Parallel Languages"

From Cluster Documentation Project
Jump to: navigation, search
(No difference)

Revision as of 14:36, 14 April 2006

Languages that support parallel computation:

  • HPF - High Performance Fortran
  • LINDA - Dynamic
  • UPC - Unified Parallel C

Unified Parallel C (UPC) is an extension of the C programming language designed for high performance computing on large-scale parallel machines.The language provides a uniform programming model for both shared and distributed memory hardware. The programmer is presented with a single shared, partitioned address space, where variables may be directly read and written by any processor, but each variable is physically associated with a single processor. UPC uses a Single Program Multiple Data (SPMD) model of computation in which the amount of parallelism is fixed at program startup time, typically with a single thread of execution per processor.

  • ZPL - parallel matrix language
  • OpenMP - OpenMP is a specification for a set of compiler directives, library routines, and environment variables that can be used to specify shared memory parallelism in Fortran and C/C++ programs.