Only 2 ways into parallelism: - Arrays of 64 byte Structures with C. (client) - Java. (server) Everything else is not atomic.
- Arrays of 64 byte Structures with C. (client)
All you need for parallelism is to spawn threads and give each thread a range of an array to work on. You don't need each element to be atomic because you aren't synchronizing on each element.
What makes you think you need specific data and a specific language?
- Java. (server)
This makes even less sense. A language doesn't matter and how it's used doesn't matter.
Where did you get this idea? Can you link something?
Everything else is not atomic.
I think you don't understand what parallelism means. Read about openMP, it is very simple.