Réponse apportée
"parameter {0} must be a real scalar" error when using parfor
I think you need to use createConnectionForPool to make your database connection object and have it work correctly inside your p...

presque 4 ans il y a | 3

| A accepté

Réponse apportée
How to let a lab tell if another lab is idle or not in a spmd block at that time : isidle(labindex)
I can think of a few ways around this: As you suggest, labProbe can tell you if there's an incoming message ready to be receive...

presque 4 ans il y a | 1

Réponse apportée
When I use parfor in the program, the program seems to fall into an endless loop in the remoteparfor.m file, resulting in the program's delay in output.What's going on?
The file "remoteparfor.m" is part of the implementation of a parfor loop. The main job of this piece of code is to wait for resu...

presque 4 ans il y a | 0

Réponse apportée
reproducible and independent random stream generation in parfor loop
This topic is covered here in the documentation. You should not mix setting 'Seed' with setting 'Substream'. (The 'Seed' value s...

presque 4 ans il y a | 2

| A accepté

Réponse apportée
Running parfor loop in R2013a
Yes, Parallel Computing Toolbox was available for R2013a. Yes, in R2013a, you need to explicitly create the parallel pool using ...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
parfor for movie writeVideo
The problem is that you're trying to send a VideoWriter object to the workers, and that's not allowed. A secondary problem is th...

presque 4 ans il y a | 0

Réponse apportée
Dramatic but intermittent slow down of parallel system calls
This sort of sporadic slowness can be extremely hard to track down. I'm not an expert on how MATLAB manages system calls, but I'...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Access composite variables after parallelpool shutdown
Unfortunately there is not. The contents of Composite (and distributed arrays) are always left on the workers until you explicit...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Multiple Parallel Jobs on Server
You say that "main.m" script uses 4 cores to do parallel computing. I presume this means that it contains a parfor loop. One way...

presque 4 ans il y a | 0

Réponse apportée
parfor treats variable as function
This is a limitation of parfor. The documentation here describes the principle reason, but doesn't quite show an example exactly...

presque 4 ans il y a | 1

Réponse apportée
How can I make more efficient use of parallel workers?
A couple of suggestions: you could consider using DataQueue rather than writing files to track progress on the workers. Yes, it ...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
Passing composite variable to mex file
Unfortunately, there is no way to access the elements of a Composite from a MEX file. Is there any way you could run the MEX fil...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
Move from parfor to parfeval?
To run using parfeval, you basically need to pull out the body of your parfor loop into a function, something like this: cellli...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
Force CPU Parallel pool
There's no direct way to specify this using trainingOptions, but what you can do is disable the GPUs on the workers by running t...

environ 4 ans il y a | 0

Réponse apportée
How to use libpointer inside parfor loop?
I think you should be able to do this using parallel.pool.Constant. I think you might need 2 of them in fact - one to manage the...

environ 4 ans il y a | 0

Réponse apportée
Parfeval, Backgroundpool and Webread
Unfortunately, as you suspect, right now the only way to do this is to use a process pool via parpool('local') or similar.

environ 4 ans il y a | 0

| A accepté

Réponse apportée
How to specify GPU devices for parallel computing using "parfor"?
The documentation here describes how you might do this in general. Things get a little more complicated if you want to run more ...

environ 4 ans il y a | 1

| A accepté

Réponse apportée
pass Python object as argument to function in "parfeval"
One of the limitations of the MATLAB->Python support is that Python objects cannot be serialized. parfeval (and other parallel c...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
decomposition in parfor failure
Unfortunately, I think you're hitting the sort of problem that was mentioned in this answer to the question you linked to - the ...

environ 4 ans il y a | 1

| A accepté

Réponse apportée
How can an infinitely running worker be gracefully terminated?
The simplest way to fix this is to use onCleanup to ensure that your fclose statement is executed. This is good practice anyway,...

environ 4 ans il y a | 1

| A accepté

Réponse apportée
How exactly does MATLAB calculate a sum of array elements by its sum() function? Does it use any compensated summation algorithm such as Kahan?
The outtype parameter to sum controls the numeric type used for summation, described in the doc. The default is that sum on sing...

plus de 4 ans il y a | 0

Réponse apportée
How to slice these variables?
I think what you're trying to do is something like this, which doesn't work: N = 4; out = zeros(N, 3); try parfor idx = ...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How to store 2D arrays in a for loop inside a parfor loop?
I think you can do this simply by essentially "reshaping" the problem to satisfy the parfor requirement that the index expressio...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Passing a Global Variable to arrayfun for gpuArray
You can do this by using a nested function and variables in the containing parent workspace instead of global variables. Here's ...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
Parallel pool constant with a parfor and for loop
Yes, parallel.pool.Constant is generally most useful when there are multiple parfor loops. (There are other use-cases such as wh...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How do I use SatelliteScenario Groundstation objects inside of a Parallel Computing Toolbox parfor loop
Thanks for reporting this problem. You can work around this for now like so: fetchOutputs(parfevalOnAll(@() delete(figure), 0))...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How to create interleaved complex from real gpuArray in mex?
Yes, complex mxGPUArray data is always stored in interleaved-complex format, see this doc page for details.

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Fill structure in parallel loop
The main constraint here is the parfor "sliced output" requirement. Basically you cannot directly update a single struct using p...

plus de 4 ans il y a | 0

Réponse apportée
How can i use GPU Computing for Besselk & Besseli function and integral ?
Unfortunately, the Bessel functions are not yet supported on the GPU, so there is no straightforward workaround for this part. I...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
parallel processing for readtable function
You've manually disabled the AutoCreate for parallel pools - I presume you're manually creating a pool with a separate parpool s...

plus de 4 ans il y a | 0

| A accepté

Charger plus