Edric Ellis - MATLAB Central
photo

Edric Ellis

MathWorks

Last seen: ein Tag vor Aktiv seit 2011

Followers: 0   Following: 0

Developer at MathWorks, working on Parallel Computing Toolbox. Professional Interests: parallel computing, distributed arrays, gpu

Statistik

All
MATLAB AnswersCodyFile ExchangeFrom 01/11 to 02/25Use left and right arrows to move selectionFrom 01/11Use left and right arrows to move left selectionTo 02/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%

RANG
56
of 297.202

REPUTATION
3.480

BEITRÄGE
0 Fragen
984 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
641

  • 5-Star Galaxy Level 3
  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • 36 Month Streak
  • Thankful Level 1
  • Guiding Light
  • Revival Level 2
  • Knowledgeable Level 5
  • First Answer
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Error message in the console when using batch
As mentioned by @Walter Roberson you can use the Diary property of the job to view this information. Another (more intrusive) op...

18 Tage vor | 0

Beantwortet
saving a job.parallel object
It is not supported to save job / task objects themselves - the expected workflow is that you use parcluster to get back your jo...

18 Tage vor | 0

| akzeptiert

Beantwortet
Setting global variables independently on each worker for parallel computation
You can modify the global workspace of a parallel pool worker, but you cannot do it directly within the body of an spmd block or...

18 Tage vor | 0

| akzeptiert

Beantwortet
Error using Parfor "Unable to classify the variable 'Sort'"
I just came here to mention that we tried to improve the error reporting for this case. Here's what happens now, hopefully it ma...

26 Tage vor | 1

Beantwortet
parfor unable to classify, why?
By the way, just wanted to mention that we attempted to improve the message for this particular error case. Hope it makes sense....

26 Tage vor | 1

Beantwortet
Distributed and spmd not running faster
You're not missing anything. If you're only using the cores on your local machine, distributed is unlikely to be much use to you...

29 Tage vor | 1

| akzeptiert

Beantwortet
Li-ion battery calibration - Not able to disable parallel computing
The doc page you reference https://uk.mathworks.com/help/autoblks/ref/battery.pulsesequence.estimateparameters.html states that ...

etwa ein Monat vor | 0

Beantwortet
Displaying a struct containing gpuArray fields takes an extremely long time in R2024b
Thanks for reporting this, I can reproduce the problem here (though not so severely). For now I'm afraid the only workaround is ...

etwa ein Monat vor | 0

| akzeptiert

Beantwortet
Is there a faster method than parfor?
There's quite a bit going on here, and without seeing the details of modifyArray, it's hard to know exactly what to suggest to m...

2 Monate vor | 0

Beantwortet
How does a local parpool manage path per worker?
Workers in a local parallel pool inherit their MATLAB path (and current working directory) from the MATLAB client. However, if y...

2 Monate vor | 0

| akzeptiert

Beantwortet
Did the default NumWorkers change for a local pool in R2024a?
Check the answer here: https://uk.mathworks.com/matlabcentral/answers/2062522-how-does-parallel-computing-toolbox-handle-perform...

7 Monate vor | 0

| akzeptiert

Beantwortet
parpool memory allocation per worker
Further to the other suggestions here, using parpool("Threads") will use less memory than parpool("Processes"), but not everythi...

7 Monate vor | 0

Beantwortet
How to resolve warning message about broadcast variable while using 'parfor'?
I think you should ignore this message in this case. It looks like you really need all the values of males for each iteration of...

8 Monate vor | 0

| akzeptiert

Beantwortet
parfor problems (structure, reduction assignment, etc)
The problem here is that you're trying to extend the arrays like Ball by assigning off the end of the current size of the array....

8 Monate vor | 0

| akzeptiert

Beantwortet
Cancel parfeval causes workers to throw errors
My guess is that whatever myFunc is doing is not safe against being interrupted with CTRL-C. When you cancel a parallel.Future, ...

9 Monate vor | 0

Beantwortet
How to run multiple functions simultaneously and communicate with each other?
Your spmd block as written instructs each worker to run first aData() and then bData(). This is the general pattern of spmd - al...

9 Monate vor | 1

Beantwortet
Error when running function with batch()
This is nothing to do with batch, and everything to do with workspace transparency. Basically when a parfor loop exists inside a...

9 Monate vor | 0

| akzeptiert

Beantwortet
FFT is suddenly slow down for repeated operations.
This is due to the asynchronous nature of gpuArray operations. Where possible, operations on the GPU are queued up and run in th...

10 Monate vor | 2

| akzeptiert

Beantwortet
generalizedInverseKinematics in a nested parforloop
You haven't given us a lot to go on there, but the form of assignment you mention is only valid if qWaypoints is a parfor "tempo...

10 Monate vor | 0

| akzeptiert

Beantwortet
How can I know which worker performs each iteration of the parfor loop?
You can use getCurrentTask (if you're using a process pool rather than a thread pool). This has a field ID which tells you which...

10 Monate vor | 0

Beantwortet
Multiply tall array with array
You need to use a bit of a trick to construct the colon vector. (This trick is alluded to on this doc page). Basically, you need...

10 Monate vor | 0

Beantwortet
How to output variables properly from a parfor loop
For your first case, you could use a parfor "reduction variable". Like this: loops = 10000000; b = []; parfor ii = 1:loops ...

10 Monate vor | 0

| akzeptiert

Beantwortet
Parallel tool (parfor) and COM objects
The general approach to fixing cases where a variable is needed inside parfor, but cannot be directly sent there, is to use para...

10 Monate vor | 0

Beantwortet
Problem working with parfor
That stack frame in the profiler is simply where your MATLAB client is waiting for the workers to complete their work. You can g...

10 Monate vor | 0

| akzeptiert

Beantwortet
Updating a parallel.pool.Constant within a parfor loop
You can't directly update the Value of a parallel.pool.Constant inside a parfor loop - not least because the parfor constraints ...

10 Monate vor | 0

| akzeptiert

Beantwortet
Interference in parfor when using global variables
Separate workers have their own completely separate global workspaces. If the function that you call from parfor first assigns a...

11 Monate vor | 0

Beantwortet
Parsing files and computing in parfor - GA
When working with a remote cluster parpool, usually Parallel Computing Toolbox is able to work out automatically which files nee...

12 Monate vor | 0

Beantwortet
Parallelize cumulative average algorithm
You can use a parfor "reduction variable" to compute this, with a slight modification which may or may not be significant: dat ...

12 Monate vor | 0

| akzeptiert

Beantwortet
doubts about parfeval memory allocation
If the entire dataset only just fits in memory once, then a better option than readall might be to use partition on the datastor...

12 Monate vor | 0

| akzeptiert

Beantwortet
Error Implementing parfor while creating satellite objects
I'm guessing you are trying to use this with a thread-based parallel pool. I had to add a line to your code to make it work, nam...

12 Monate vor | 0

| akzeptiert

Mehr laden

Go to top of page