Answered
How can I get parfor to work when a cycle is parallelizable but I cannot slice a variable in disjoint chunks?
Try aliasing your A variable like so: A0 = A; A1 = A; A2 = A; Then inside the parfor loop, when you need A(i) ...

11 years ago | 0

| accepted

Answered
Thread Subject: Hessian calculated by fmincon within a parfor or spmd environment
If you want to leverage the inherent parallelism in fmincon via the 'UseParallel' parameter then you shouldn't invoke the parfor...

11 years ago | 0

Answered
for loop and data in GPU memory
The for loop is not performed in parallel when you write code like this: A = gpuArray(X); for i = 1:length(A) B(...

11 years ago | 0

| accepted

Answered
Random Number Generation for Parallel Computing Toolbox
The R2012b documentation provides a section on controlling the random number streams on the client and on the workers. If it doe...

11 years ago | 1

Answered
How can I speedup neural network training and simulation of a radial basis network using parallel computing toolbox in Matlab R2012A
I think that the useParallel flag was introduced to the Neural Network Toolbox in the R2012b release. Here is a link to the doc...

11 years ago | 0

Answered
Synchronization for parallel code
It sounds like you have independent tasks with more work to do than workers to do it. You also would like the tasks to be prope...

11 years ago | 1

| accepted

Answered
Using the GPU through the parallel comp. toolbox to optimize matrix inversion
As of MATLAB R2010b this functionality has been available on the GPU in the Parallel Computing Toolbox. In order to use it, at ...

11 years ago | 2

| accepted

Answered
Distributing arrays to workers for local processing ?
Hello. If you are able to successfully open a matlabpool with your installation of R2011b, then you must have the Parallel Comp...

11 years ago | 3

| accepted

Answered
clear mex causes segmentation fault when using cuda RT API
Do you have the Parallel Computing Toolbox installed as well? If so, conflicts can arise between the version of the CUDA librar...

11 years ago | 1

| accepted

Answered
Calling competition when calling CUDA kernels using PCT
In MATLAB we always run CUDA kernels in the order in which they were requested. The add1 kernel should always execute before th...

11 years ago | 0

| accepted

Answered
how to calculate cosine similarity on a codistributed array?
It would be much more efficient to lump all of the multiplications together. Also, when you use for loops with codistributed ar...

11 years ago | 2

| accepted

Answered
In-place editing of (co)distributed arrays?
This is the right way to perform an in-place operation with codistributed arrays. You should also make sure that the implementa...

11 years ago | 0

Answered
Convert Distributed Array to Matrix
The functionality you are looking for is "gather": xdata = gather(cal_data); If you don't mind my asking, what particula...

11 years ago | 2

Answered
parallel version of ilu and cg
A number of linear algebra functions are supported in the Parallel Computing Toolbox for use in data parallel computations with ...

12 years ago | 0

Answered
Why is batch job status' stays "queued"?
The interactive matlabpool that you explicitly opened is using all of your resources. Therefore, when you submit a batch job it...

12 years ago | 1

| accepted

Answered
Sparse matrix inversion in parallel
Hi Alex. Unfortunately, distributed/mldivide is currently limited to solving full linear systems. Thanks for pointing out that...

12 years ago | 0

Answered
spmd, composites and hidden overheads
Thomas, (1) The getCodistributor() function operates only on codistributed arrays; therefore, it must be called from within...

12 years ago | 1

Answered
is it possible to perform the inverse of a matrix in matlab via parallel way?
You can use distributed arrays to solve linear systems ( mldivide or the \ operator) in parallel. If you really do want to f...

12 years ago | 1

Answered
spmd-parfor
Generally speaking, spmd is used when you need communication to occur between workers in the matlabpool. Another difference is ...

12 years ago | 0

Answered
strfind on gpu
gpuArray currently only supports full, numeric types, so you cannot store a string on the GPU. How are you trying to call str...

12 years ago | 2

Answered
Run custom function on GPU with Parallel Computing Toolbox?
Arrayfun on the GPU only supports elementwise operations, so it is not the command that you want to use in this case. You nee...

12 years ago | 2

| accepted

Answered
Invoking my kernel in Matlab affects fft2 speed on GPU?
In R2012a, all GPU calculations run *asynchronously* with MATLAB. Because of this a new command was introduced to facilitate acc...

12 years ago | 1

Answered
Passing GPUArray to feval
You are creating gtm as a double, and trying to pass it as the first input to a kernel that expects a float. Try using this ins...

12 years ago | 0

| accepted

Answered
Whats the best command to write to file inside parfor loop?
If you are able to run your code inside an spmd block instead of via parfor, then you will be able to use the labindex variable ...

12 years ago | 2

Answered
Parallel Computing Question
You might take a look at the DLOAD functionality that is part of the Parallel Computing Toolbox. This function loads distribute...

12 years ago | 0

Answered
Accessing Shared File in spmd
What scheduler are you using, and what does its configuration look like?

12 years ago | 0

Answered
for-loop GPU Parallelization
R2011a does support loops with arrayfun executing on the GPU. Without knowing more details about the code you'd like to execute...

12 years ago | 0

Answered
NVIDIA GTS250 problem
Hi Marcin. Unfortunately, there is no workaround other than to use a GPU with compute capability 1.3 or higher, as the error me...

12 years ago | 2

| accepted

Answered
Use of local scheduler with Matlab Compiler and PCT (batch)
You can use the local scheduler in a deployed application starting in R2011a.

12 years ago | 2

| accepted

Answered
very large matrix manipulation
If you have access to Parallel Computing Toolbox and MATLAB Distributed Computing Server, you may find that distributed arrays w...

12 years ago | 0

Load more