next up previous
Next: References. Up: HPJava: Data Parallel Extensions Previous: Distributed loops.

Discussion.

We have covered the most important language features we propose to implement. In the context of an explicitly SPMD programming environment with a good communication library, we claim these extensions provide much of the concise expressiveness of HPF, without relying on very sophisticated compiler analysis. The object-oriented features of Java are exploited to give an elegant parameterization of the distributed arrays in the extended language. Because of the relatively low-level programming model, interfacing to other parallel-programming paradigms is more natural than in HPF.

The language extensions described were devised partly to provide a convenient interface to a distributed-array library developed in the Parallel Compiler Runtime Consortium (PCRC) project. The HPJava compiler itself is being implemented initially as a translator to ordinary Java, through a compiler construction framework also developed in the PCRC project. The distributed arrays of the extended language will appear in the emitted code as a pair--an ordinary Java array of local elements and a Distributed Array Descriptor object (DAD). Details of the distribution format, including non-trivial details of global-to-local translation of the subscripts, are managed in the run-time library. Acceptable performance should nevertheless be achievable, because we expect that in useful parallel algorithms most work on distributed arrays will occur inside over constructs with large ranges. In normal usage, the formulae for address translation can then be linearized, and non-trivial aspects of address translation (including array bounds checking) can be amortized in the startup overheads of the loop. If array accesses are genuinely irregular, the necessary subscripting cannot usually be directly expressed in our language; subscripts cannot be computed randomly in parallel loops without violating the SPMD restriction that accesses be local. This is not regarded as a shortcoming: on the contrary it forces explicit use of an appropriate library package for handling irregular accesses (such as CHAOS). Of course a suitable binding of such a package is needed in our language.


next up previous
Next: References. Up: HPJava: Data Parallel Extensions Previous: Distributed loops.

Theresa Canzian
Mon Jul 27 22:18:44 EDT 1998