Answered
Parfor Loop Error with Classification
I think you can adapt this to work with parfor, but it's going to be a little bit of a stretch. Your variable z_new can be consi...

ongeveer 3 jaar ago | 1

| accepted

Answered
Critical code section inside parfor
Further to Walter's response, the closest analogy in parfor is a reduction variable. These may appear to be updated by multiple ...

ongeveer 3 jaar ago | 0

Answered
Can I use parfor and CVX togther
I'm not familiar with the CVX toolbox. However, a lot of parfor problems can be remedied by pushing the body of the loop into a ...

ongeveer 3 jaar ago | 1

| accepted

Answered
How to set all one gpuArray in mex?
You basically have two options: either create and uninitialized mxGPUArray and fill the values using CUDA code (either a kernel,...

ongeveer 3 jaar ago | 0

| accepted

Answered
How to check the Bytes of gpuArray?
Unfortunately, whos does not currently report the number of bytes used by a gpuArray on the GPU - the 4 bytes you see reported i...

ongeveer 3 jaar ago | 0

| accepted

Answered
Alternative ways to slice/manage data using PARFOR
parfor can work with struct and cell, but it's often a bit tricky because you need to satisfy the requirement that the slicing i...

ongeveer 3 jaar ago | 0

| accepted

Answered
Restart random numbers with parallel loop
The error that you're seeing there I think is because you've got an old version of your "State.mat" file - the error is the one...

ongeveer 3 jaar ago | 0

| accepted

Answered
Behaviour ofparfeval depends on debugging state (Bug?)
I suspect this is because when you don't stop in the debugger, the function can return as soon as F gets into state 'running', i...

ongeveer 3 jaar ago | 0

| accepted

Answered
Possible to speed up this gpuArray calculation with arrayfun() (or otherwise)?
A few points here. Firstly, (and most importantly), to time code on the GPU, you need to use either gputimeit, or you need to in...

meer dan 3 jaar ago | 1

| accepted

Answered
User defined functions with dynamic parameterisation in a parfor loops
This documentation for parfor notes various limitations - and also notes explicitly that you can create anonymous functions insi...

meer dan 3 jaar ago | 1

| accepted

Answered
In parfor-loop, can I call a multi-threaded mex and get some speed-up?
You should be able to run a multi-threaded MEX file correctly inside a parfor loop. However, you will be oversubscribing your ma...

meer dan 3 jaar ago | 0

| accepted

Answered
Parallel computing, occasionally get Exception message "Message Catalog MATLAB:load was not loaded from the file"
The probable cause of this is the file handle limit. This page: https://www.mathworks.com/help/parallel-computing/recommended-sy...

meer dan 3 jaar ago | 0

| accepted

Answered
How can I run parallel job on a specific node?
Based on this stackexchange answer https://unix.stackexchange.com/questions/443438/how-to-submit-a-job-to-a-specific-node-using-...

meer dan 3 jaar ago | 0

| accepted

Answered
Are temporary variables eliminated at the end of each parfor loop on every single worker?
Yes, as mentioned in the documentation https://www.mathworks.com/help/parallel-computing/temporary-variable.html temporary varia...

meer dan 3 jaar ago | 0

| accepted

Answered
Help with parfor progress bar using data queue
The problem here is that the documentation example is using a nested function, which is able to acces variables in the containin...

meer dan 3 jaar ago | 1

| accepted

Answered
warning messages when using parfor in appdesigner app
It looks like you're either implicitly or explicitly using ASI within your parfor loop. You don't show the problematic code, but...

meer dan 3 jaar ago | 0

| accepted

Answered
Distributing individual tasks over my pool of workers, scaling should be perfect
There are several confounding factors here that go some way at least to explaining your timings. In your first example (the fo...

meer dan 3 jaar ago | 0

Answered
Problem using parfor for reading variable sized chunks of data into a larger pre-allocated container
There's no simple way to do this without at least some duplication of data. With some duplication of data, you could do somethin...

meer dan 3 jaar ago | 0

| accepted

Answered
MATLAB NVIDIA Ampere GPU Support
See this answer: https://www.mathworks.com/matlabcentral/answers/592198-does-matlab-support-nvidia-ampere-cards-for-gpu-computat...

meer dan 3 jaar ago | 0

Answered
"unable to classify the variable in the body of the parfor-loop"
The doc page you mention describes the valid ways of getting results out of a parfor loop. In your case, you appear to be comput...

meer dan 3 jaar ago | 0

Answered
cplex object params not transferred to parfor loop
The most likely cause of the problem here is that the output of Cplex cannot be saved to a file and then loaded again. Transfer ...

meer dan 3 jaar ago | 0

| accepted

Answered
Variable in parfor cannot be classified, error not shown in editor
The code you've shown there isn't complete enough for us to attempt to run and see the error you're encountering. It would be he...

meer dan 3 jaar ago | 1

| accepted

Answered
parallel loop in matlab
Output variables in parfor loops must be either sliced outputs or reduction outputs. More info here in the doc. In this case, yo...

meer dan 3 jaar ago | 0

Answered
MATLAB parfor index exceeds the number of array elements
To run a parfor loop, MATLAB analyses each variable used within the loop and classifies them. In the original code, non_crack_by...

meer dan 3 jaar ago | 1

| accepted

Answered
how can i use pcg with Parallel Computing Toolbox ?
Simply: this problem is far too small for distributed arrays to be effective. You should use distributed arrays only for problem...

bijna 4 jaar ago | 1

Answered
The Tag Field of labSendReceive() Function
The function labSendReceive requires matched communication, so the receiver always knows which lab sent the data. In your exampl...

bijna 4 jaar ago | 0

| accepted

Answered
An Issue with SPMD
I think the problem here is the transformation of data types from outside spmd to inside. If you create a variable inside an spm...

bijna 4 jaar ago | 0

| accepted

Answered
Fast gpuArray slicing for cart2sph
Like all arrays in MATLAB, gpuArray data is stored in "column-major" order. One consequence of this is that it is much more effi...

bijna 4 jaar ago | 0

| accepted

Answered
parfor problems ( add attached files)
I think the problem here is that "fbt_.m" is a script file. You should convert it to a function. More in the doc about scripts a...

bijna 4 jaar ago | 0

| accepted

Answered
fetchNext idx always returning 1
The first output of fetchNext tells you which of the futures you passed in as an input has just completed. In your case, you are...

bijna 4 jaar ago | 1

| accepted

Load more