Parallel Object. What this term may refer in the context of object-oriented programming languages?
A natural way to define a parallel object is to implicitly distribute parts of the object and give access to data without programmers' knowledge of its location, synchronization handled by the runtime system on a transparent way and in order to facilitate the programmer's experience its access syntax can be implemented as a shared-memory model on top of the underlying distributed system.
After this attempt to describe a parallel object a question arise: Is this definition proper to High Performance Computing(HPC)?
In my opinion, the answer is no. Spatial locality is critical on HPC applications. Reducing control beyond a certain level may reduce severely the expected performance and cause an almost invisible bottleneck. The programmer will need to know how the runtime execution distribute data and this "transparent" access will be useless at all. A different definition is needed...
This blog is an attempt to discuss about Parallel Object-Oriented Programming Languages. I will try to post something about this subject once a week. See ya.