1
edit
Changes
Hu3Team
,no edit summary
So this is a good candidate for parallelization because we can send each iteration of the average calculation to a different GPU thread and since this is a simple average calculation, the GPU will be able to do it.
Running with a 1000x1000 matrix, with a epsilon error factor of 0.001, the program took almost 5 minutes to run completely and 99% of the time was on the getHeat() method (the heat calculation core).
[[File:execution-NO_CUDA.JPG]]
====Carlos's Findings====
=== Assignment 2 ===