4
votes
6answers
59 views
concurrent write to same memory address
If two threads try to write to the same address at the same time, is the value after the concurrent write guaranteed to be one of the values that the threads tried to write? or is …
1
vote
1answer
24 views
C# Parallel Extensions Task.Factory.StartNew invokes method on wrong object
Ok, playing around with the .Net 4.0 Parellel Extensions in System.Threading.Tasks. I'm finding what seems like weird behaivor, but I assume I'm jsut doing something wrong. I have …
1
vote
1answer
29 views
How to: Parallel Reduction of many unequally sized arrays in CUDA?
Hi there
I am wondering if anyone could suggest the best approach to computing the mean / standard deviation of a large number of relatively small but differently sized arrays in …
1
vote
2answers
68 views
C# OutOfMemoryException on MemoryStream writing
I have a little sample application I was working on trying to get some of the new .Net 4.0 Parallel Extensions going (they are very nice). I'm running into a (probably really stupi …
1
vote
8answers
147 views
Interlocked and Memory Barriers
I have a question about the following code sample (*m_value* isn't volatile, and every thread runs on a separate processor)
void Foo() // executed by thread #1, BEFORE Bar() is ex …
0
votes
1answer
27 views
Master-Slave Pattern for Distributed Environment
Hi,
Currently we have a batch driven process at work which runs every 15 mins and everytime it runs it repeats this cycle several times:
Calls a sproc and get some data back fro …
4
votes
3answers
74 views
Difference between multithreaded and parallel programming
Is there a difference between multithreaded and parallel programming?
If related (which I guess they are) is parallel programming the successor of multithreaded programming in ter …
6
votes
6answers
144 views
Optimal number of threads per core
Let's say I have a 4-core CPU, and I want to run some process in the minimum amount of time. The process is ideally parallelizable, so I can run chunks of it on an infinite number …
3
votes
3answers
116 views
minimum work size of a goroutine
Does anyone know approximately what the minimum work size is needed in order for a goroutine to be beneficial (assuming that there are free cores for the work to be offloaded to)?
0
votes
1answer
28 views
How to use database server for distributed job scheduling?
I have around 100 computers and few workers on each of them. The already connect to a central database to query for job parameters.
Now I have to do job scheduling for them. One j …
4
votes
15answers
596 views
How to create a system with 1500 servers that deliver results instantaneously?
I want to create a system that delivers user interface response within 100ms, but which requires minutes of computation. Fortunately, I can divide it up into very small pieces, so …
0
votes
2answers
46 views
How to parallelize execution on remote systems
What's a good method for assigning work to a set of remote machines? Consider an example where the task is very CPU and RAM intensive, but doesn't actually process a large dataset …
2
votes
3answers
107 views
how to efficiently apply a medium-weight function in parallel
I'm looking to map a modestly-expensive function onto a large lazy seq in parallel. pmap is great but i'm loosing to much to context switching. I think I need to increase the size …
2
votes
2answers
54 views
Is there a simple process-based parallel map for python?
I'm looking for a simple process-based parallel map for python, that is, a function
parmap(function,[data])
that would run function on each element of [data] on a different proc …
0
votes
2answers
75 views
What was the name of the parallel implementation of Linq (not from Microsoft)
I remember seeing a link about it here where some people claimed it's 1000 times faster than the BCL Linq.
Anyone used it here? Is it true?
Also is Microsoft's PLinq gonna be alo …
