UPC (Computer program language)
Enlarge text Shrink text- Work cat.: UPC : distributed shared memory programming, 2002:eCIP t.p. (UPC) data v., etc. (UPC, or Unified Parallel C is an explicit parallel language, providing the facilities for direct user specification of program parallelism and control of the data distribution and access)
- MichiganTech Computer Science home page:viewed Oct. 5, 2004 (UPC (Unified Parallel C) is a new programming language designed for parallel computing. It is a small extention to the C language with particular features for handling parallel processing)
Unified Parallel C (UPC) is an extension of the C programming language designed for high-performance computing on large-scale parallel machines, including those with a common global address space (SMP and NUMA) and those with distributed memory (e. g. clusters). The programmer is presented with a single partitioned global address space; where shared 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. In order to express parallelism, UPC extends ISO C 99 with the following constructs: An explicitly parallel execution model A shared address space (shared storage qualifier) with thread-local parts (normal variables) Synchronization primitives and a memory consistency model Explicit communication primitives, e. g. upc_memput Memory management primitives The UPC language evolved from experiences with three other earlier languages that proposed parallel extensions to ISO C 99: AC, Split-C, and Parallel C preprocessor (PCP). UPC is not a superset of these three languages, but rather an attempt to distill the best characteristics of each. UPC combines the programmability advantages of the shared memory programming paradigm and the control over data layout and performance of the message passing programming paradigm.
Read more on Wikipedia >