parallel computing language

Salem_

Commendable
Aug 8, 2016
23
0
1,510
what type of computer language is a parallel computer made of and any tips on parallel computing books?
 
Solution
There is no one language. It is usually multiple processes sharing data on a network. OpenMPI is an example of an infrastructure used in clustered computers.

Folding@Home and SETI@Home as well as BOINC are examples of distributed, loosely coupled parallel computation models.

If you follow those links you will see that they all are associated with universities.

Before attempting parallel processing master single threaded programming. Then, you can use compiler PRAGMAs to parallelize you code to multiple threads on a single host. You could use OpenCL or CUDA to parallelize code onto a GPU. After you have exhausted the resources of a single host, then add the complexity of...

kanewolf

Titan
Moderator
There is no one language. It is usually multiple processes sharing data on a network. OpenMPI is an example of an infrastructure used in clustered computers.

Folding@Home and SETI@Home as well as BOINC are examples of distributed, loosely coupled parallel computation models.

If you follow those links you will see that they all are associated with universities.

Before attempting parallel processing master single threaded programming. Then, you can use compiler PRAGMAs to parallelize you code to multiple threads on a single host. You could use OpenCL or CUDA to parallelize code onto a GPU. After you have exhausted the resources of a single host, then add the complexity of multiple hosts.
 
Solution