The simultaneous use of more than one CPU or processor core to execute a program or multiple computational threads
0
votes
0answers
8 views
Parallel tesseract ocr on Android
Is it possible to parallelize Tesseract OCR Process in order to speed up on Android? For example the basic process in all procedure is baseApi.getUTF8Text(); Can this be parallelized? and how?
I ...
0
votes
1answer
29 views
Shared memory C++ and Win API 32 with custom class
Are there any samples with getting custom class including large arrays as properties in shared memory? I need read/write access from different threads in same process. Size of class instance is ...
3
votes
1answer
52 views
Which C++ libraries should I use for a large parallel computing number-crunching project exploiting third-party applications
Introduction
I want to request a lot of advice on a new programming project I am going to start on my own. I am going to be very precise in what I would like to accomplish and in what my basic ...
0
votes
1answer
28 views
Creating parallel threads using Win 32 API
Here is the problem:
I have two sparse matrices described as vector of triplets.
The task is to write multiplication function for them using parallel processing with Win 32 API. So I need to know how ...
-1
votes
0answers
23 views
Bisection Method on Cuda
i was trying to implement the Bisection Method on CUDA, this method is capable to aproximate the eigenvalues from an aplication, Bisection Method, but when i try to make some comparisons on the CUDA ...
3
votes
1answer
28 views
Python: How split a string keyspace (id) for parallel processing of data in a mongoDB
Intro
I have a mongo cluster with several million documents in it. Each document have a string id that looks like this:
00072312e0761c6554c3606b50a21119773f2f7d
And I have a way of retrieving from ...
0
votes
1answer
32 views
Aggregate results from multiple mySQL databases in PHP
I have a large # (say 100) of databases with identical schemas and want to do SQL aggregates across this entire collection of databases.
Lets say the table is ATHLETES
CREATE TABLE ...
0
votes
2answers
47 views
Deadlock in go function channel
Why is there a deadlock even tho I just pass one and get one output from the channel?
package main
import "fmt"
import "math/cmplx"
func max(a []complex128, base int, ans chan float64, index chan ...
0
votes
0answers
33 views
ThreadPool performance overheads
I'm doing a little project which implies parallelism. I cannot use System.Threading.Threads, cause they are nearly impossible to recycle (and my job is in small pieces, so I need recycling). I didn't ...
0
votes
2answers
34 views
Ember Ajax Calls running in serial
Setup:
blah is my ember app
find essentially calls Ember.$.ajax(url, params, method)
the find method isn't a blocking call
Neither of the routes nor controllers have dependencies (needs) on each ...
1
vote
0answers
33 views
non parallelizable loop in jomp and openmp
i have a next loop
for(int i=1;i<n;i++){
a[i]=(a[i]+a[i-1])/2;
}
obviously that this loop isn't parallelizable
because the result of each element depends on the element that before it
anyway
i ...
3
votes
2answers
41 views
Parallelizing a while loop with arrays read from a file in bash
I have a while loop in Bash handled like this:
while IFS=$'\t' read -r -a line;
do
myprogram ${line[0]} ${line[1]} ${line[0]}_vs_${line[1]}.result;
done < fileinput
It reads from a file with ...
1
vote
0answers
41 views
Multiple process (or equivalent)
In the Google Chrome each tab (or window) is a different process (not only the tabs, but also plugins, extensions, etc.).
How can I make something like multi-process in Qt+WebKit?
Each time I open a ...
0
votes
1answer
14 views
Does Maven build “thread safe” for snapshot projects?
I have a question regarding parallel maven build. If several maven builds are running in same machine at the same time, and some build results are used by other builds with snapshot version ...
2
votes
1answer
30 views
Byte limit when transferring Python objects between Processes using a Pipe?
I have a custom simulator (for biology) running on a 64-bit Linux (kernel
version 2.6.28.4) machine using a 64-bit Python 3.3.0 CPython interpreter.
Because the simulator depends on many independent ...
1
vote
0answers
21 views
sudoku parallelization with MPI
I want to parallelize my sudoku solver program with MPI. The current serial code relies on backtracking with depth-first search. I did some research, but I am still not sure how to do it.
Some say ...
1
vote
2answers
52 views
GUI and Data loading parallel
first of all, I've been reading a lot about this issue, but it's not clear in my mind.
I'm developing a WPF app that implies loading large sets of information from databases, local/remote files, ...
1
vote
1answer
26 views
Error handling within parApply (in R, using parallel package)
I am trying to troubleshoot the following message I get when trying to use the parApply function from the parallel package:
Error in unserialize(node$con) : error reading from connection
The ...
0
votes
1answer
20 views
Can we use OpenMP with latest version of openCV
I want to parallelize my image processing codes using openMP. I have a doubt if OpenMP is supported by the latest versions of OpenCV like 2.4.4 or 2.4.5 versions. I know abt TBB but looks too ...
0
votes
0answers
11 views
Rake creating a rule that uses multitask
If I create a simple rule like
rule '.o' => ['.c'] do |t|
sh "cc #{t.source} -c -o #{t.name}"
end
How can I tell Rake that I want the auto-generated tasks to be parallelizable?
0
votes
0answers
38 views
Open CL Materials and hardware support required
I have just started to learn open CL,
1.can any body suggests any good links and materials to start learning OpenCL from scratch.
2.Which SDK to use to run Open CL program,without any hardware ...
1
vote
1answer
34 views
Parallel webservices access in a Weld CDI environment
We're developing a Web Frontend using JSF 2 and Weld Cdi on Tomcat.
Now I've a problem executing multiple webservices in parallel to optimize the request time.
The user may select mutliple items form ...
0
votes
1answer
49 views
Combining CUDA with Python's ODEInt and Parallel Reduction
I'm a graduate student in biophysics, trying to program a protein aggregation model using PyCUDA and Scipy's ODEInt. Within the past two weeks, I've gotten the code running, but it's very slow. Let ...
-1
votes
0answers
32 views
parallel downloading in java android from two servers [duplicate]
I am working on an Android app which purpose is to download chunks(parts of a video file) from 2 servers, append them in order(into a main video file) after each one is downloaded and finally play ...
2
votes
1answer
21 views
Is the distinction between vertex and pixel shader necessary or even beneficial?
From what I've been able to get, both vertex and pixel shader operations boil down to passing data and doing a lot of the same with it for every available unit. Surely, vetex and pixel shaders are in ...
0
votes
0answers
22 views
Use of private variables in openmp
I have some code fragments here where what I think as correct is not given as the answer. I need some help to clarify this.
given answer for parallelizing this code doesn not say k should be private. ...
0
votes
1answer
26 views
What is Parallel for usage in different for loops?
I have some code fragments here where what I think as correct is not given as the answer. I need some help to clarify this.
dotp=0;
for (i=0;i<n;i++){
dotp+= a[i]+b[i];
}
given answer for ...
0
votes
2answers
55 views
No performance gains with Parallel.ForEach and Regex?
I have a program which color codes a returned results set a certain way depending on what the results are. Due to the length of time it takes to color-code the results (currently being done with ...
1
vote
0answers
52 views
Can I paralellize this foreach loop in PHP?
Currently this script takes about 6 minutes to complete.
Here's my snippet:
$items = getSomeItems();
$results = array();
foreach ($items as $index => $value) {
$valueA = ...
1
vote
1answer
42 views
Performance with MS concurrency::parallel_for() for a single iteration
I suppose there have been numerous questions regarding performance issues while trying to achieve concurrency with parallel_for. Even I have noted a performance drop while trying to parallelize ...
0
votes
3answers
59 views
Parallelize a list consolidation in Python
I have a sorted list of "box definitions" that I would like to consolidate. The list looks something like:
big_list = [\
# ...
# ...
[3, 4, 5, 4, 5, 6, 65],\
[3, 4, 5, 4, 5, 6, 60],\
[3, 4, 5, 4, 5, ...
1
vote
1answer
30 views
Parallel.ForEach with MatchCollection
First off, I know this is a duplicate of this question, but I can't get the solution listed there to work for me. I understand that MatchCollection does not implement the IEnumerable Parallel.ForEach ...
2
votes
2answers
93 views
C# Multithread, which performs the best? [closed]
I'm currently writting an application that make a huge lot of call to slow webservices (I had no say in that pattern) that produce little output.
I'd like to make like 100 parallel calls (I know real ...
3
votes
0answers
73 views
background jobs' garbled output
I'm trying to gather line by line the output of several child processes in a bash script, in order to forward it to another process.
I found nothing that guarantees that the outputs of the ...
0
votes
0answers
28 views
Error when searching for nodes parallel python
I really need some help so please answer. I installed pp on my laptop an on my virtual machine both use ubuntu.
i can ssh to the virtual machine so the connection to it is fine but still i am not able ...
0
votes
1answer
10 views
Which flyn's taxonomy best suitable for computing intregral of function from 0 to 1?
We have p processor and each processor Pi knows it's identifier i. Each Pi uses own i to compute area of rectangle: i/p * f(i/p). Local area then sent to single identifier which accumulate to get ...
0
votes
1answer
30 views
Parallelized copying of Python objects
We have 100 large Python objects in memory (each object is mix of dictionaries, Python standard values (e.g., integers), NumPy objects, Python classes), and we need to copy the most of them "by ...
0
votes
0answers
31 views
Parallelizing A Cost Function
All, I am having trouble parallelizing a cost function. This cost function is very basic, it accumulates the cost of an object outline through a series of waypoints. This is currently done serially, ...
0
votes
2answers
39 views
Proper parallelization using parfor
I have written some image processing code in Matlab I'd like to speed up using prallel processing. I picked the task that takes longest: Applying gaussian blur to the image. With the help of file ...
0
votes
1answer
22 views
Variable changes during Task Start
I am really confused. I run the following code to execute two task, which work on separate folders, thats why I give them index. Unfortunately, when I run the code below, index passed to ...
1
vote
1answer
43 views
How does snow distribute list elements to workers?
How many list elements are sent to each worker process when calling parLapply()? For example, let's say we have a list of 6 elements and 2 workers on a snow SOCK cluster. Does parLapply() sends two ...
0
votes
0answers
50 views
Bubble sort in CUDA
So I know that parallel bubble sort isn't exactly popular, but I wanted to try a somewhat different way of doing it and want to know if there is a reason why it shouldn't work.
What I'm trying to ...
1
vote
1answer
25 views
Running PLSR predictions parallel in R using foreach
Users,
I am looking for a solution to "parallelize" my PLSR predictions in order to save pprocessing time. I was trying to use the "foreach" construct with "doPar" (cf. 2nd part of code below), but I ...
-2
votes
0answers
30 views
default connection information for ipython parallel computing?
I am looking at this one: http://ipython.org/ipython-doc/stable/parallel/parallel_multiengine.html
, which "assumes that the default connection information (stored in ipcontroller-client.json found in ...
0
votes
0answers
34 views
jRuby and Rubinius support parallel computing, but what about gems that don't support this?
What I'm trying to understand is, practically speaking, how much benefit do I get from the parallel computing support in jRuby / Rubinius? A lot of ruby libraries keep track of global internal state. ...
2
votes
1answer
37 views
Thrust OpenMP without CUDA?
Can I use Thrust with the OpenMP device system if my machine doesn't have a CUDA GPU? If so, do I still require the CUDA toolkit?
4
votes
3answers
81 views
Parallelize Fibonacci sequence generator
I'm learning about parallelization and in one exercise I'm given a couple of algorithms that I should improve in performance. One of them is a Fibonacci sequence generator:
array[0] = 0;
array[1] = ...
2
votes
1answer
39 views
Is there a limit on the number of slaves that R snow can create?
I'm trying to build a snow cluster with around 120 processes on 3 different hosts. These are AMD servers with 48 cores each. After building approx the first 90 slaves I get this error:
cl = ...
0
votes
0answers
20 views
Replacement MPI_Send and MPI_Recv function with MPI_ALLTOALL
I want to replace Send and Recv fucntion with ALLTOALL function, so can i do that.
I know, that in MPI_ALLTOALL(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm) function each process ...
0
votes
0answers
10 views
Parallel nosetests with test generators
I'm trying to get my tests to run in parallel with nosetests --processes=2, however I have several generated tests. These seem to error with
Failure: TypeError (Can't make a test from <module ...




