Describe what parts of the algorithms can be potentially


Assignment

Objectives

The main goal of this exercise is introducing the student to the basic concepts of parallel programming. To do that, two different options are provided. The first one is more theoretical and is oriented to those students that do not have strong computer science background (i.e: programming, linux etc.). This option will let the student to propose a parallelization of a specific scientific problem. The second one is more practical and it is oriented to those students that have programming and system skills. In this second option the student will implement a parallel application using OpenMP and MPI+OpenMP.

What it is expected

1) the sources for the developed code; 2) one document with the answers with the proposed questions, the performance evaluation and the comments that the student wants to make. The developments must be done in C and with the required extensions for OpenMP and MPI.

The maximum length for the document is 4 pages.

1. The serial algorithm

The goal of this first part is to understand the nature of the smith-waterman algorithm: what is solves, what inputs needs, what generates, it computational cost and what parts of it can be potentially parallelized.

Describe what the smith-waterman algorithm does (include the references that you have used): inputs, outputs and pseudo-code describing the algorithm. The pseudo-code must and comments on

Describe the computational complexity of the algorithm. It is expected to provide a description on the serial implementation (i.e: O(n^2), O(nlogn))

Describe what parts of the algorithms can be potentially parallelized.

2. Parallel implementation

The goal of this second part is to propose a pseudo-code parallel implementation for the parts identified in 1.3.

Describe in pseudo-code a potential parallel implementation for this algorithm:

What strategy have you selected? (i.e: pipeline, shared memory, message passing etc.) Why?

What other options you could use?

Describe the pseudo-code including comments on why the different parallel selected parts.

Describe the computational complexity of the algorithm. It is expected to provide a description on the serial implementation (i.e: O(n^2), O(nlogn))

3. Performance projection

Given the pseudo-code proposed in 2.1 and 1.1 propose a theoretical model to project the speedup that the parallel implementation may show with respect to the serial implementation. (It's a model so it's not expected to provide 100% accuracy).

Provide a speedup analysis using the previous model for: 1, 2, 4, 16 and 32 threads.

Provide a description of what type of computational system would be better for the provided implementation and what components would be important to invest more:

Software
Hardware.

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: Describe what parts of the algorithms can be potentially
Reference No:- TGS02250791

Expected delivery within 24 Hours