The simultaneous use of more than one CPU or processor core to execute a program or multiple computational threads
1
vote
0answers
5 views
Run Cucumber Features in Parallel using parallel_tests gem
I am using Selenium locally to run two .feature files. Both pass locally. Neither of the tests interact with a db (nor will future tests). I would like to use the parallel_tests gem to spin up two ...
0
votes
0answers
15 views
Filling Shared Memory CUDA
All, I am attempting to implement an algorithm which uses cells with 27 dimensional vectors.
Imagine that we have an 80x60x27 cell feature map. I use CUDA to calculate 2x2 cells at once. (Each cell ...
0
votes
0answers
7 views
run Pig in parallel job
I know pig script will translate several mapreduce job, now i'm in this situation and my pig script is like this
split A into A1 if **, A2 if ** , A3 if ***;
B = MACRO_B(A1);
C = MACRO_C(A2);
B ...
0
votes
1answer
22 views
running parallel stored procedures using php
i'm looking for a reliable way of sending and controlling parallel stored procedures using php.
i want to call many stored procedures in the same time and controlling their results.
for example, i ...
1
vote
4answers
63 views
How to add two arrays in Java in parallel manner?
For example, there are two huge (length 2-3 million) of the array float [] or double []. Need them very quickly add up. How to do it? Are there any libraries for this?
0
votes
0answers
7 views
Calling parallel subroutines from serial in Fortran using Openmp
I have a simulation code that I am attempting to parallelize using OpenMP. Is there special OpenMP syntax when calling from a serial 'main' part of the program, a subroutine in which I would like to ...
1
vote
1answer
33 views
Shared memory and waiting sessions in Matlab
Doing a regression on a large dataset, I have a huge read-only matrix that I'd like to share among several threads. I've looked at various way of doing this and found sharedmatrix toolkit to be ...
0
votes
1answer
14 views
Get current job number in makefile
Is there a way to get current job number to use in makefile rule?
Let me give you a little context.
I am using a tool which runs on multiple files. Naturally I use parallel jobs to speed things up. ...
1
vote
1answer
32 views
Using struct arrays in parfor
I am having trouble using struct arrays in Matlab's parfor loop. The following code has 2 problems I do not understand:
s=struct('a',{},'b',{});
if matlabpool('size')==0
matlabpool open local 2
end
...
1
vote
1answer
20 views
Minimising number of calls to std::max in nested loop
I'm trying to reduce the number of calls to std::max in my inner loop, as I'm calling it millions of times (no exaggeration!) and that's making my parallel code run slower than the sequential code. ...
0
votes
1answer
34 views
maximum number of variables in private() clause in OpenMP
I want to know whether there is any limitation on number of variables that can be defined in a private() clause in OpenMP.
I have a code which has 4 for loops with lot of variables. The outermost ...
2
votes
1answer
52 views
Parallelize a function in R (not a loop!)
I want to parallelize a function called unparallelizedfnc. The funtion calls four other functions (that take a long time to compute) and stores the results. At the end the results are combined. ...
7
votes
3answers
115 views
Why is there no significant speedup using reducers in this example?
(require '[clojure.core.reducers :as r])
(def data (into [] (take 10000000 (repeatedly #(rand-int 1000)))))
(defn frequencies [coll]
(reduce (fn [counts x]
(merge-with + counts {x 1}))
{} ...
4
votes
2answers
47 views
Detect if MATLAB startup.m is running on a worker
A colleague has a MATLAB startup.m file that contains interactive code (it calls the command questdlg to ask him which project directory he wishes to work in).
This works fine for him when running ...
0
votes
1answer
30 views
Using all cores for R MASS::stepAIC process
I've been struggling to perform this sort of analysis and posted on the stats site about whether I was taking things in the right direction, but as I've been investigating I've also found that my ...
1
vote
1answer
30 views
Find execution time for parallel programs in matlab
I have written parallel program for HYPR sequential algorithm which basically reconstructs medical image in matalb. I want to know how to find the execution time of parallel program in matlab. I ...
0
votes
0answers
13 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
32 views
Shared memory C++ and Win API 32 with custom class [closed]
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
71 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
32 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
1answer
34 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
30 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
34 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
49 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
45 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
37 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
52 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
1answer
61 views
Multi-process in WebKit
In the Google Chrome each tab (or window/gui) is a different process (not only the tabs, but also plugins, extensions, etc.).
How can I make something like multi-process in Qt+WebKit?
Note: No need ...
0
votes
1answer
20 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
32 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
26 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
58 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
29 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
27 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
40 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
39 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
53 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
22 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
24 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
27 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
57 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
53 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
45 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
33 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
96 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
1answer
89 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 ...



