Beantwortet
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) ...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 13 Jahre vor | 0

Beantwortet
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(...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 13 Jahre vor | 1

Beantwortet
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...

etwa 13 Jahre vor | 0

Beantwortet
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...

etwa 13 Jahre vor | 1

| akzeptiert

Beantwortet
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 ...

mehr als 13 Jahre vor | 2

| akzeptiert

Beantwortet
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...

mehr als 13 Jahre vor | 3

| akzeptiert

Beantwortet
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...

mehr als 13 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 13 Jahre vor | 2

| akzeptiert

Beantwortet
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...

mehr als 13 Jahre vor | 0

Beantwortet
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...

mehr als 13 Jahre vor | 2

Beantwortet
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 ...

mehr als 13 Jahre vor | 0

Beantwortet
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...

mehr als 13 Jahre vor | 1

| akzeptiert

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 1

Beantwortet
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...

mehr als 13 Jahre vor | 1

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

mehr als 13 Jahre vor | 0

Beantwortet
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...

mehr als 13 Jahre vor | 2

Beantwortet
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...

mehr als 13 Jahre vor | 2

| akzeptiert

Beantwortet
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...

mehr als 13 Jahre vor | 1

Beantwortet
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...

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

fast 14 Jahre vor | 2

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

fast 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

Beantwortet
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...

etwa 14 Jahre vor | 0

Beantwortet
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...

etwa 14 Jahre vor | 2

| akzeptiert

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

etwa 14 Jahre vor | 2

| akzeptiert

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

etwa 14 Jahre vor | 0

Mehr laden