Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
275 views

Parallel version of loop not faster than serial version

I'm writing a program in C++ to perform a simulation of particular system. For each timestep, the biggest part of the execution is taking up by a single loop. Fortunately this is embarassingly ...
2
votes
3answers
525 views

Writing long and double is not atomic?

Reading and writing of a single variable is atomic (language guarantee!), unless the variable is of type long or double. I was reading a course slides and i found that written. The class was about ...
1
vote
2answers
123 views

How can I structure a table so that the field remains atomic?

I have a shopping cart in which I have to keep track of stock, and this includes stock with attributes. For example: shirt -- blue, small = 50 -- blue, medium = 22 -- blue, large = 53 -- red, ...
1
vote
4answers
1k views

AtomicIntegerArray vs AtomicInteger[]

Is there any difference in meaning of AtomicIntegerArray and AtomicInteger[]? And which one is faster to use? (only thing that I noticed is that first is taking much less space, but that means that ...
0
votes
2answers
83 views

AtomicInteger not reading value from main memory for non-volatile mutable refrence

Below is a non-thread-safe implementation of popular Husband Wife bank account problem. (One thread first checks the account, and before the same thread performs withdraw, another thread performs ...