Re: [eigen] Help on solving a race condition

[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]


On Mon, Jun 11, 2012 at 10:00 PM, Gael Guennebaud
<gael.guennebaud@xxxxxxxxx> wrote:
> Thanks a lot, that's the kind of explanations I expected.
>
>
> So I'm afraid the only truly portable and robust solution will be to
> add an initialize function.

No please do not do that. Thread and tls function are pretty portable
(see below) and moreover c++11 need it in order to implement some
construct.

And please prefer GNUC solution that use the tls register that is a
free to use if your binary use dso.

you could fallback to static constructor if you want but I believe in
pratice it will be not used (local thread is used by gnulib and well
tested on a variety of platform).

If you want to use volatile notice that written to a volatile int is
safe a least in C language (therefore extern C), because int read is
in pratice atomic and if not it will break a lot of code. Thus a
portable solution will be to compute your value in a tempory struct
union
{
 struct {
 char  m_l1CacheSize;
 char m_l2CacheSize;
 char power;
 char initialized;
 };
 int word;
}

and move this struct to the final destination using the int word.
Initialised will be either 0 or 1. And if one it will other member
will be correctly initialised, due to implicit write an int is locally
safe (even on brain dead alpha). The problem is that you could not
have more than 32 bits of data in 32 bits processor.

here l1cache size is  (1 << power) << m_l1CacheSize
l2cahce is (1<<power) << m_l2CacheSize

but if you use only one bit for initialised you could have only use
one bit for initialised (1<<15 for l1cache and 1<<16 for l2cache)

Bastien



Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/