Skip to content
This repository has been archived by the owner on Oct 13, 2020. It is now read-only.

Latest commit

 

History

History
15 lines (7 loc) · 1.06 KB

README.md

File metadata and controls

15 lines (7 loc) · 1.06 KB

HOC MIT license Size

This repository contains two separate projects, both of them are about an educational introduction in Parallel and Distributed Computer Architecture.

Projects

  • Hamming Distance In this project, a serial NON-optimized calculation of Hamming distance between two randomly generated arrays of equal length is implemented. Then using pthreads and OpenMP API try to speed up the calculation time of this operation. The same process is repeated for different array lengths, word lengths, threads number, and some useful results are exported during this procedure.

  • ω Statistic Along the same lines, there is the implementation of the serial, NON-optimized, and simplified ω statistic calculation among a population sample of DNA sequence. Then, the same calculation is repeated using Streaming SIMD Extensions (SSE) and Message Passing Interface (MPI).