Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
177 views

Parallelization and H.264 (or probably any compression codec)? Why's it so hard?

My limited (and probably wrong?) understanding of video compression is that intra-frames are completely independent. In other words, all the picture data for a intra frame (key frame) is stored in ...
3
votes
2answers
114 views

OpenMP Ordered Parallelization

I'm trying to parallelize the following function (pseudocode): vector<int32> out; for (int32 i = 0; i < 10; ++i) { int32 result = multiplyStuffByTwo(i); // Push to results ...
3
votes
1answer
153 views

What is JaMP and how can I learn about it?

In a project I was asked to achieve shared-memory parallelization in Java, by the means of JaMP, which extends Java for OpenMP. I am almost a complete beginner in the domain, and after 10 minutes of ...
3
votes
3answers
333 views

What are the recommended C++ parallelization libraries for large data processing

Can some one recommend approaches to parallelize in C++, when the data to be acted up on is huge. I have been reading about openMP and Intel's TBB for parallelization in C++, but have not experimented ...
3
votes
2answers
99 views

Papers or tools for parallelism discovering

I am looking for papers or tools about parallelism discovering. More explicitly, if you have a sequential source code, how to find sections which could be efficiently parallelized (taking account of ...
2
votes
2answers
248 views

Is this parallelizable?

I have a huge tab delimited file. (10,000 subjects as rows and >1-million assays as columns). I have a mapping file which has information related to each of the 1 million columns. I need to for every ...
2
votes
5answers
225 views

What's the quickest way to parallelize code?

I have an image processing routine that I believe could be made very parallel very quickly. Each pixel needs to have roughly 2k operations done on it in a way that doesn't depend on the operations ...
1
vote
2answers
196 views

Using akka futures and actors for parallelizing a list

I want to send a list of messages to an actor, receive a reply immediately in a future and then wait for all futures to complete before returning to the calling method. From reading the akka docs, I ...
1
vote
1answer
40 views

Thread Locking in Large Parralel Applications

I have a slightly more general question about parallelisation and threadlocking synchronization in large applications. I am working on an application with a large number of object types with a deep ...
1
vote
1answer
117 views

Strategies for automatic parallelization

I am building a node-based drag-and-drop editor, where each node represents one action (for example, read this file, or sort this data, etc.) Outputs and inputs of nodes can be connected. One of the ...
1
vote
2answers
182 views

matlab batch parallelization in bash

I'm trying to run a piece of code on a large computer cluster in order to analyze different parts of the data. I created 2 loops to assign the jobs to different nodes and the cpu's that the nodes ...
1
vote
3answers
99 views

Could the compiler automatically parallelize code that support parallelization?

Instead of adding the PLinq extension statement AsParallel() manually could not the compiler figure this out for us auto-magically? Are there any examples where you specifically do not want ...
1
vote
3answers
245 views

Parallelize or vectorize all-against-all operation on a large number of matrices?

I have approximately 5,000 matrices with the same number of rows and varying numbers of columns (20 x ~200). Each of these matrices must be compared against every other in a dynamic programming ...
0
votes
1answer
50 views

With PLINQ, how can I set the preferred chunk size when using AsParallel().MaxDegreeOfParallelism(4)?

I have a list with thousands of objects, on which an operation that can take between 1 and 3 minutes is performed. I am of course using PLINQ, but I have noticed that when approaching the end of the ...
0
votes
2answers
117 views

OpenMP: Which examples can get a better performance gain?

Which one can gain a better performance? Example 1 #pragma omp parallel for private (i,j) for(i = 0; i < 100; i++) { for (j=0; j< 100; j++){ ....do sth... } ...
0
votes
1answer
219 views

C, OpenMP: How can I make this parallisation of a triple loop better?

I'm trying to parallelise the Floyd-Warshall algorithm using OpenMP (basically editing a 2D array in-place), but I doubt that I'm going about it in the best way, here is what I've got so far: ...
0
votes
1answer
322 views

Intel TBB Parallelization Overhead

Why does Intel Threading Building Blocks (TBB) parallel_for have such a large overhead? According to section 3.2.2 Automatic Chunking in the Tutorial.pdf its around half a millisecond. This is an ...
0
votes
0answers
78 views

pgcc - Automatic parallelization with compile error

I am trying simple automatic parallelization with -Mconcur as a parameter when compiling the program with pgcc. My program in C is written for MPI by default, but now when I try to compile it with (I ...
0
votes
1answer
634 views

How to parllelize this, using OPENMP sections

I have this function which i want to parallelize using openmp sections. I broke the function into various sections and applied #pragma omp sections but it gives segmentation fault. Can somebody please ...