Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a serial implementation to calculate the standard-deviation of an array of randomly generated floating point values (or doubles!). Then thread it using std::threads as

Write a serial implementation to calculate the standard-deviation of an array of randomly generated floating point values (or doubles!). Then thread it using std::threads as well as OpenMP (yes, two implementations!). Compare the performance results (over both N and P). Estimate the overhead costs for both parallelization methods.

Benchmark times for P = 10 and N = 1,000,000,000:

OpenMP: 0.20s

Std::threads: 0.20s

2) Add a capability to the OpenMP implementation to return a list (values and indices) of all values over a sigma value specified by the user.

3) Add the same capability to the std::threads implementation.

use openMP

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions