147
edits
Changes
→Demo: Concurrency and parallelism in Go
Profiling the execution time at a computation hot spot for both the serial and parallel version of the Monte Carlo Simulations program.<br/>
[[Image:EP.PNG|alt=Monte Carlo Simulations]]<br/>
We can see that the parallel version gives us about a '''~4x performance gain'''.
===== Results - Serial vs parallel Performance =====
Evaluating the time it takes the serial and parallel version of the program to run through the Monte Carlo Iterations for 1,000,000,000 (1 billion) iterations.<br/>
[[Image:MCSim.PNG|alt=Monte Carlo Simulations]]<br/>
We can see that the parallel version gives us about a '''~4x performance gain''' matching our benchmark results.