multithread/concurrency/parallel methods and performance

Jordan Wilson wilsonjord at gmail.com
Sun Feb 18 19:14:21 UTC 2018


On Sunday, 18 February 2018 at 17:54:58 UTC, SrMordred wrote:
> I´m experimenting with threads and related recently.
> (i´m just started so may be some terrrible mistakes here)
>
> With this base work:
>
> foreach(i ; 0 .. SIZE)
> {
>     results[i] = values1[i] * values2[i];
> }
>
> and then with this 3 others methods: parallel, spawn and 
> Threads.
>
> this was my results:
>
> _base : 456 ms and 479 us
> _parallel : 331 ms, 324 us, and 4 hnsecs
> _concurrency : 367 ms, 348 us, and 2 hnsecs
> _thread : 369 ms, 565 us, and 3 hnsecs
>
> (code here : https://run.dlang.io/is/2pdmmk )
>
> All methods have minor speedup gains.  I was expecting a lot 
> more.
> Since I have 7 cores I expected like below 100ms.
>
> I´m not seeing false sharing in this case. or i'm wrong?
>
> If someone can expand on this, i'll be grateful.
>
> Thanks!

It may be due to thread local storage:
https://tour.dlang.org/tour/en/multithreading/thread-local-storage
https://dlang.org/articles/migrate-to-shared.html

I'm not sure though, as I don't know how your results array 
initialised.

Jordan


More information about the Digitalmars-d-learn mailing list