..

Programmazione concorrente, parallela e su cloud

Master Degree Course of prof. Vittorio Scarano and Carmine Spagnuolo, Ph.D.

Università degli Studi di Salerno

Books and References

  1. Kai Hwang, Jack Dongarra, and Geoffrey C. Fox. 2011. Distributed and Cloud Computing: From Parallel Processing to the Internet of Things (1st ed.). Morgan Kaufmann Publishers Inc., San Francisco, CA, USA.
  2. Czech, Z. (2017). Introduction to Parallel Computing. Cambridge: Cambridge University Press.

Materials for online course

Class Question Forum

We use issues on GitHub. Please use it for sharing ideas and issues on both theoretical and practical course part.


Which is my course homework?

Each student must develop a solution for the assigned homework using Hybrid parallel programming approach, exploiting shared and distributed memory. The solution must be written in C programming language exploiting OpenMPI and OpenMP, using point-to-point and/or collective communication and all OpenMP features. The developed solution must experiment on a homogeneous cluster scenario.

The cluster must be created on the Amazon Web Services using a supported AWS Educate Instances. The obtained results must be presented in terms of strong and weak scalability, varying the number of computing processors from 1 to NUMBER-OF-VCPU-FOR-INSTANCE-TYPE x NUMBER-OF-INSTANCES. For instance if we run a cluster machine of 4 t2.large (2 VCPU) nodes, we experimente the scalability of our solution for P={1,2,4,5,6,7,8}.

The total number of processors is equal to the number of Virtual CPU on the running instances. The benchmark must exploit 8 instances for the bigger experiment. The student must describe the solution and the benchmark in a README file, written in Markdown, and included in the submission. The README file must describe also the compilation phase and how to reproduce the results obtained.

Homeworks

Name Description Details
gameoflife Conway’s Game of Life Game link
jacobi Simple Jacobi iteration link
matrixmultiplication Parallel matrix multiplication link
nbody n-body problem link
pi Compute in parallel an approximation of PI link
wordscount Compute the frequency of words in a set of files link

Amzon Web Services educate supported instances

  1. t2.small
  2. t2.large
  3. t2.xlarge
  4. t2.2xlarge
  5. m4.large
  6. m4.xlarge

Give me a project now!

Compute the MD5 of your name, surname, and birth date, md5(namesurnamedate):

Characters table conversion (use case insentive):

Character Value
a-g-m-s-y-4 1
b-h-n-t-z-5 2
c-i-o-u-0-6 3
d-j-p-v-1-7 4
e-k-q-w-2-8 5
f-l-r-x-3-9 6

Example Alice Wonderland 01/01/1865, your assignment is alicewonderland01011865, md5(alicewonderland01011865)=89820e2ce860966ccd9165e4029035e7, that is solve the pi problem on t2.2xlarge instances.

Prepare your submition

Each solution folder must contain the C sources and a report Readme file (in Markdown format) describing all benchmarks (expressed in terms of strong and weak scalability) of the application. Solutions without the Readme file or that cannot easily compile using mpicc will be not considered.

In your home project directory archives your project:

tar -cvf solution.tar.gz *

Extract your project:

tar -xvf solution.tar.gz

Submit a solution

Each solution should be compliant with the problem project template. You can submit a solution via mail to cspagnuolo+PCPC-2019@unisa.it. The submitted file should be a compressed directory using tape archive.

Homework Evaluation Criteria

Homeworks are evaluated on a range of 30 total points. The final score is diveded in four level:

Points

Benchmarks TIPS

Present your results in terms of strong and week scalability:


How benchmark your applications on a AWS?

Cluster Computing Scenario

Our computing environment Ubuntu with OpenMPI and OpenMP

For our purposes we need a Linux machine running OpenMPI and OpenMP. The repository provides installation scripts to build our computing environment on a Ubuntu Machine.

Configure a MPI cluster of two istances?

Here is described how to execute and manually configure a cluster of two t2.micro instances using the AWS WebConsole.

  1. Create a new key-pair and store it on your local machine, suppose that the name of the key is kcluster.
  2. Start two new t2.micro instances using the Ubuntu AMI (ami-0f65671a86f061fcd) and select the kcluster key-pair, additionally rename it as master and slave0. Set a new rule to the default security group that allows to open all TCP ports (0-65535) from anywhere (you can do it in the Configure Security Group tab).
  3. Execute on the master node the command ```ssh-keygen`` in order to generate new ssh key pairs for configure the access to the cluser. Note. By using this command without parameters the key is stored in the folder .ssh, in the file id_rsa e id_rsa.pub.
  4. Download and your local machine the install.sh script and change the SSH key pairs using the previous generated key.
  5. Copy the install.sh using SCP on all nodes scp -i kcluster install.sh ubuntu@ec2-34-207-88-239.compute-1.amazonaws.com:.
  6. Connect via SSH ssh -i kcluster_ubuntu@ec2-34-207-88-239.compute-1.amazonaws.com: and execute install.sh on all nodes.

Test an MPI and OpenMP Program

Follow these steps in order to create and test a Hello World MPI program. Consider that you are logged as pcpc user on the master node.

vim hello.c

#include <stdio.h>
#include "mpi.h"
#include <omp.h>

int main(int argc, char *argv[]) {
  int numprocs, rank, namelen;
  char processor_name[MPI_MAX_PROCESSOR_NAME];
  int iam = 0, np = 1;

  MPI_Init(&argc, &argv);
  MPI_Comm_size(MPI_COMM_WORLD, &numprocs);
  MPI_Comm_rank(MPI_COMM_WORLD, &rank);
  MPI_Get_processor_name(processor_name, &namelen);

  #pragma omp parallel default(shared) private(iam, np)
  {
    np = omp_get_num_threads();
    iam = omp_get_thread_num();
    printf("Hello from thread %d out of %d from process %d out of %d on %s\n",
           iam, np, rank, numprocs, processor_name);
  }

  MPI_Finalize();
}