Changes

Jump to: navigation, search

BetaT

1,091 bytes added, 19:08, 15 February 2017
Potential Speed Increase
4.49 107.11 4.88 1406087506 0.00 0.00 std::vector<double, std::allocator<double> >::operator[](unsigned int)''
== Potential Speed Increase with Amdahls Law ==
Using Amdahls Law ---- > Sn = 1 / ( 1 - P + P/n )
We can examine how fast out program is capable of increasing its speed.
P = 80is the part of the program we want to optimize which from above is 89.17%; n = 480 the amount of processors we will use. One GPU card has 384 processors or CUDA cores and another GPU we will use has 1020 processor or CUDA cores.  Applying the algorithm gives us. Amdahls Law for GPU with 384 Cores---- > Sn = 1 / ( 1 - 0.8919 + 0.8919/384 ) Sn = 9.0561125222S480 Amdahls Law for GPU with 1024 Cores---- > Sn = 1 / ( 1 - 0.80 8919 + 0.80 8919/ 480 1024 ) Sn = 49.176753777 Therefor According to Amdahls law we can expect a 9x increase in speed.96 97 seconds to execute main / 9 amdahls law = 10.7777 seconds to execute after using GPUInterestingly according to the law the difference in GPU cores does not significantly increase speed. Future tests will confirm or deny these results. --------------------------------------------------------------------------------------------------== Potential Speed Increase with Gustafsons Law ==
At best, we expect the process time to drop from 0.21 secs to about 0.21 / 4.96 = 0.04 secs.
------------------------------------------------------------------------------------------------------------------
Gustafsons Law S(n) = n - ( 1 - P ) ∙ ( n - 1 )
P S = 50% n 380 - ( 1 - .8918 ) * ( 380 - 1 ) = 10339.031S = 10 1024 - ( 1 - .50 8918 ) * ( 10 1024 - 1 ) = 5913.3114  Using Gustafsons law we see drastic changes in the amount speed increase, this time the additional Cores made a big difference and applying these speed ups we get: (Quadro K2000 GPU) 97 seconds to execute / 339.031 = 0.29(GeForce GTX960 GPU) 97 seconds to execute / 913.3114 = 0.511
212
edits

Navigation menu