Tagged Questions
The parallelism tag has no wiki summary.
11
votes
6answers
385 views
Unit testing concurrent software - what do you do?
As software gets more and more concurrent, how do you handle testing the core behaviour of the type with your unit tests (not the parallel behaviour, just the core behaviour)?
In the good old days, ...
9
votes
2answers
350 views
GPGPU vs. Multicore?
What are the key practical differences between GPGPU and regular multicore/multithreaded CPU programming, from the programmer's perspective? Specifically:
What types of problems are better suited ...
9
votes
1answer
202 views
Parallelism: Subtly different floating point results?
I'm trying to debug my parallelism library for the D programming language. A bug report was recently filed that indicates that the low-order bits of some floating point operations that are performed ...
7
votes
2answers
280 views
No speedup with naive merge sort parallelization in Haskell
Note: This post was completely rewritten 2011-06-10; thanks to Peter for helping me out. Also, please don't be offended if I don't accept one answer, since this question seems to be rather open-ended. ...
7
votes
2answers
945 views
how to run a javascript function asynchronously, without using setTimeout?
its a server side Javascript (rhino engine), so setTimeout is not available. how to run a function asynchronously?
6
votes
4answers
176 views
Scala parallel collection runtime puzzling
Edit: My sample size was too small. When I ran it against the real data on 8 CPU's, I saw a 7.2x speed increase. Not too shabby for adding 4 characters to my code ;)
I am currently in the process ...
6
votes
1answer
502 views
Has anyone used TPL Dataflow yet? [closed]
TPL Dataflow was recently released along with the Visual Studio 2010 Async CTP.
Now, I'm curious: Has anyone used this library yet? As I'm very interested in using it for an actor/agent-based ...
4
votes
2answers
76 views
Which clojure parallelism technique to use when searching a growing solution space?
What is the correct way, in Clojure, to do parallel processing when each job of the processing can occur in utter isolation and may generate a list of additional jobs that need to be evaluated?
My ...
4
votes
3answers
101 views
how to apply parallelism-programming in graph problems?
Problem Description:
there is n tasks, and in these tasks, one might be dependent on the others, which means if A is dependent on B, then B must be finished before A gets finished.
1.find a way to ...
4
votes
3answers
1k views
Is it possible to abort a Task like aborting a Thread (Thread.Abort method)?
We could abort a thread like this:
Thread thread = new Thread(SomeMethod);
.
.
.
thread.Abort();
But can I abort a Task (in .Net 4.0) in the same way not by cancellation mechanism. I want to kill ...
3
votes
3answers
112 views
High Performance Computing Terminology: What's a GF/s? [closed]
I'm reading this Dr Dobb's Article on CUDA
In my system, the global memory bandwidth is slightly over 60 GB/s.
This is excellent until you consider that this bandwidth must service
128 ...
3
votes
2answers
84 views
Multicore and operating systems
What changes, if any, would an operating system need to implement to take full advantage of multicore systems? I ask this because I'm doing some research on parallel algorithms and the scheduler, for ...
3
votes
4answers
217 views
Java GC Threading Bottleneck in Practice?
How well optimized is Java's parallel collecting GC for multithreaded environments? I've written some multithreaded Jython code that spends most of its time calling Java libraries. Depending on ...
2
votes
2answers
145 views
Shared-Exclusive lock implementation for F#
I am currently working on an F# project that contains many parallel calculations. As being bound to the trimmed .Net 4 Silverlight Framework (because of the required Silverlight compatibility) I ...
2
votes
1answer
340 views
Getting number of CPUs on Mac OS X from C?
Is there a C API function that will give me the number of CPUs/cores on Mac OS X? Ideally, it should be something that just works across all flavors of OS X. (I really know nothing about Mac OS. ...
2
votes
3answers
103 views
How to find hot spots for parallelism in .net 4?
So many of us would probably start with implementing something in non-parallel way and later need to refactor the code and employ parallelism. Is there any theory or suggestion about how to find hot ...
2
votes
4answers
262 views
Thread.Abort and alternatives
This is more out of personal curiosity/interest than a specific problem I'm trying to solve.
Suppose you have a program that is performing some operation on user-supplied information (such as a ...
2
votes
2answers
100 views
What about parallelism across network using multiple PCs?
Parallel computing is used more and more, and new framework features and shortcuts make it easier to use (for example Parallel extensions which are directly available in .NET 4).
Now what about the ...
2
votes
3answers
3k views
In Solr, How to query against one field for distinct set of values in a multi-valued field
I basically want Solr to search each record of the multivalued field for my search parameter.. read on for my example:
I am using Solr to index my data. I have application data in parallel arrays (in ...
2
votes
2answers
129 views
Concurrent system modeling tools
I'm currently taking a course in concurrent software design, and we're focusing a lot on modeling. I see the value in this, but I am not sure if the tool we are using is horrible, good, or somewhere ...
2
votes
6answers
553 views
Is opening too many threads in an application bad?
I have a C# winform application. it has many forms with different functionalities. These forms wrap to a WCF service. for example
form1 calls serviceMethod1 continuously and updates the results
...
2
votes
4answers
319 views
Can queries that read table variables generate parallel exection plans in SQL Server 2008?
First, from BOL:
Queries that modify table variables do not generate parallel query execution plans. Performance can be affected when very large table variables, or table variables in complex ...
2
votes
1answer
384 views
Grand Central Dispatch versus Cilk++
Anybody have any thoughts on Grand Central Dispatch (which has now been open-sourced by Apple) and Cilk++? Comparisons/contrasts? Is Cilk more Windows-only?
2
votes
3answers
190 views
Example of a parallel acceleration anomaly
What is an example of a parallel acceleration anomaly? ie. A task that when run over p processors, results in a speedup greater than p.
1
vote
3answers
78 views
How to make a IEnumerable method parallel method
Following to this post, I want parallelize this method :
public IEnumerable<string> GetAllLogs(IEnumerable<IComputer> computers)
{
foreach (var cpt in computers)
{
...
1
vote
2answers
40 views
Pausing and notifying particular threads in a Java Webservice
I'm writing a Java webservice with CXF. I have the following problem: A client calls a method from the webservice. The webservice has to do two things in parallel and starts two threads. One of the ...
1
vote
1answer
102 views
Using the Par monad with STM and Deterministic IO
I'm in the process of writing a report for an assignment in which I implemented a concurrent multicore branch and bound algorithm using the STM package and there was an issue I've come up against.
...
1
vote
5answers
109 views
Why Not Hybrid Out-Of-Order, Massively Parallel?
It seems in vogue to predict that superscalar out-of-order CPUs are going the way of the dodo and will be replaced by huge amounts of simple, scalar, in-order cores. This doesn't seem to be happening ...
1
vote
2answers
109 views
state of parallelism in MS C# and Mono
for a project I'm working on, I need to work with threads. I was wondering: what is the state of parallelism in MS C# and, particularly, Mono, as compared for example to OpenMP and pthreads? How much ...
1
vote
2answers
158 views
Is it possible to use thread-concurrency and parallelism together?
For one of my projects thats kind of a content-aggregator i'd like to introduce concurrency and if possible parallelism. At first hand this may seem pointless because concurrency and parallelism take ...
1
vote
3answers
86 views
Demonstrating instruction level parallelism at work
I'm trying to show instruction level parallelism at work. What I was originally doing was using python (willing to change) and doing the following:
def test():
for i in range(5000):
j = 0
...
1
vote
7answers
297 views
Highly concurrent multi-threaded application requires hardware
I am looking for a hardware, which must run about 256 computationally intensive real-time concurrent tasks in 24 hour mode (one multi-threaded C application). Each task takes about 40-50 MFLOPs, so ...
1
vote
3answers
193 views
How can parallelism affect number of results?
I have a fairly complex query that looks something like this:
create table Items(SomeOtherTableID int,SomeField int)
create table SomeOtherTable(Id int,GroupID int)
with cte1 as
(
select
...
1
vote
4answers
461 views
Spawning multiple SQL tasks in SQL Server 2005
I have a number of stored procs which I would like to all run simultaneously on the server. Ideally all on the server without reliance on connections to an external client.
What options are there to ...
0
votes
1answer
24 views
WithDegreeOfParallelism .Net Task
I Honestly don't understand when to use WithDegreeOfParallelism and how it can improve performance?
Not sure in what context limiting the number of maximum number of tasks that are executing the ...
0
votes
1answer
23 views
MaxDop setting for OLTP with 8 processors
I need to set MAXDOP for SQL 2008 R2 server for OLTP. It got 8 processors.
What is the recommended setting.
0
votes
2answers
75 views
TPL with Entity Framework Updates
I have a business case in which, for each record in a given source table, a number of changes in different tables need to be made, and each of these sourceTable records need to be processed in ...
0
votes
0answers
28 views
Why do we need parallelization of open source software? [closed]
I have been working on an open source software and this question bugging my mind time and again.
I want to work in parallelization of open source software but i could not get enough idea for it.
0
votes
2answers
204 views
SSIS Parallelism - Microsoft HPC Cluster?
I am new to SSIS, and am trying to use its Parallelism Feature to import data from a database.
My job is to do this: Import a multi terabyte database into a set of flat files as quickly as possible.
...
0
votes
3answers
229 views
Java programming using semaphores and shared variables
Hey everyone, I have a task to perform at school and really don't know how to get started.
I don't want the whole solution, but rather tips and how to get started with this. Sorry but I'm new to ...
0
votes
2answers
2k views
Task.Factory.StartNew with multiple parameters
I'm trying to refactor some code to achieve more throughput through parallelism. I did all the base refactoring to where I had my minimalist single call that would be thread-safe. My method takes ...
0
votes
0answers
165 views
How come adding “ORDER BY” reduce query processing time dramatically?
I have a SQL query like below, without the last ORDER BY statement, the query runs about 1 minute, and with that statement, the query finishes in 2 seconds.
SELECT A.C2, B.C2
FROM
(
SELECT C1, C2
...
0
votes
2answers
231 views
OpenMP thread mapping to physical cores
So I've looked around online for some time to no avail. I'm new to using OpenMP and so not sure of the terminology here, but is there a way to figure out a specific machine's mapping from OMPThread ...
0
votes
1answer
82 views
Parallelism with .NET 4.0 in a desktop sqlite single thread application?
Where do you see operation scenarios for parallelism/multi-threading/PLINQ etc for a single threaded WPF desktop app with sqlite?
I would like to know wether I could tune my application somehow and ...
0
votes
4answers
217 views
Data parallel libraries in C/C++
I have a C# prototype that is heavily data parallel, and I've had extremely successful order of magnitude speed ups using the Parallel.For construct in .NETv4. Now I need to write the program in ...
0
votes
3answers
125 views
Faking a Single Address Space
I have a large scientific computing task that parallelizes very well with SMP, but at too fine grained a level to be easily parallelized via explicit message passing. I'd like to parallelize it ...
0
votes
4answers
1k views
SQL Server & update (or insert) parallelism
I got a large conversion job- 299Gb of JPEG images, already in the database, into thumbnail equivalents for reporting and bandwidth purposes.
I've written a thread safe SQLCLR function to do the ...
-1
votes
2answers
176 views
How to configure parallelism in Oracle 10g?
I have created a table with parallelism degree 2, however it doesn't seem like it's actually working.