Beantwortet
Parallel for loop problem
@Simone Fiumi think of the code running in the parfor as running on some entirely different machine. There is no "debugging" pe...

mehr als 2 Jahre vor | 1

Beantwortet
Extract variable from function after using parfeval
@Koren Murphy the issue is that you've told MATLAB there are no output arguments (even if there are) F(K)=parfeval(fcn,0,K); T...

mehr als 2 Jahre vor | 1

Beantwortet
Confirm if Parallel Server is installed on cluster
Hi @Michael Raba. Reach out to me directly and I'll help you work through this.

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
Issue using a parfor loop to control two instruments at the same time
Hi @james ingham, I see a couple of potential issues main1; %<------ Connects to laser and starts connection etc (WORKS FINE) ...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
Recommended approach to "resetting" the workers for each new parallel computation?
Hi @Mitsu You have the right idea. A couple of quick comments If you have a parallel pool running, then deleting the jobs wil...

mehr als 2 Jahre vor | 1

Beantwortet
Setting -configCluster- in Matlab 2018b
@Stefano Lombardi I wrote configCluster for your site. Reach out to me direclty if you have any questions regarding how to use ...

mehr als 2 Jahre vor | 0

Beantwortet
Running parfor on multiple nodes using Slurm
The local scheduler will only spawn workers on the same machine running the MATLAB client (e.g., on a Slurm compute node). In o...

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
parallel pool to increase code speed
Starting a parallel pool doesn't run subsequent MATLAB code in parallel, it simple starts a colletion of headless MATLAB process...

mehr als 2 Jahre vor | 1

Beantwortet
PARFOR is 10X Slower than FOR
@Paul Safier I believe the problem is that you're calling nested tic/toc. In clipSpacing_HELP, you call tic on line 16 and toc ...

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
How can I make expm running on many cores?
Starting a parallel pool doesn't run subsequent MATLAB code in parallel, it simple starts a colletion of headless MATLAB process...

mehr als 2 Jahre vor | 2

| akzeptiert

Beantwortet
How to limit CPU availabilty to Matlab
Try maxNumCompThreads(10);

mehr als 2 Jahre vor | 1

Beantwortet
How do I allocate cpu resources to a batch job?
It would help if you could provide an example of the script and how you're running the job. Let's assume you're using PBS, mayb...

mehr als 2 Jahre vor | 0

Beantwortet
multiple optimization problems under parfor
I'm assuming all of this works fine when you run a for-loop instead of a parfor loop. To address the first warning, I'm not an ...

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
What is going on when I call a function that uses parfor loop inside of a parfor loop in my main script?
The outer parfor-loop is parallelized and the inner parfor-loop is run as a for-loop.

mehr als 2 Jahre vor | 1

Beantwortet
Can I use GPU instead of CPU to run parfor-loop?
GPU threads aren't divided up by workers. Conversely, one worker controls a GPU at a time.

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to input global variables in function that is in parloop?
We can agree that if global variables were supported, you wouldn't modify data1 and have that reflected on the client -- that wo...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
Pausing to Save data and Then Rerun from the Same State
There isn't. parfor blocks MATLAB from anything else. To "stop" the parfor, you'd need to hit Ctrl-C, but then you'd stop the ...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
MATLAB Cloud. How to use if I have an Institution license
MATLAB has several cloud offerings MATLAB Online (matlab.mathworks.com) Cloud Center (cloudcenter.mathworks.com), running on A...

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
Parrellel server dir() for files local to the server
For starters, you don't want to hard code files/paths in your code. Your code should be functions so that you can pass in root ...

mehr als 2 Jahre vor | 2

| akzeptiert

Beantwortet
Do changes in .m file after batch submission, while the job is queued, take effect for the current run?
The latter. MATLAB attaches all the files it needs with the job. You'll want to delete the job, eg. c = parcluster; j = c.ba...

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
Parallel Computing Toolbox, Pausing, and Hibernation
What you're asking for would require "checkpointing", where an application has the ability to stop midstream and resume later. ...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
Parfor unnecessary communication overhead
This is a warning, not an error, displayed by the Code Analyzer. Not sure how MATLAB would "throw" this warning. Depending on ...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
accumulate values in aftereach function
Persistent variables should work. Try the following q = parallel.pool.DataQueue; q.afterEach(@afterFunc); f = parfeval(@genD...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
Estimated Time Left for Executing a Code Using MATLAB Parallel Computing Toolbox
MATLAB doesn't know how long your code should run for, so there's no way to know how much time is left. What I would suggest is...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to run this code in a for loop?
You don't provide the line number of the error. What is day? Is that they time function? Couldn't day(k+26) be written as j...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
how to increase the number of workers to 32 for parfor loop
Are you explicitly calling parpool? parpool(32); Alternatively, you can change the default by going to the Parallel preference...

mehr als 2 Jahre vor | 0

Beantwortet
severe speed degradation with batch function on cluster
Let me see if I have this right Method #1 finishes runMe in ~5 minutes, using local scheduler PBS jobscript #!/bin/sh #PBS -...

mehr als 2 Jahre vor | 0

Beantwortet
Parallelization of SVD on research clusters
Building off of Kamil's suggestion to look at Edric's post, Edric suggests you ought to build the distributed array directly on ...

mehr als 2 Jahre vor | 0

Beantwortet
Startting parallel pool from App Designer
Hi @Giuseppe Gallo, I'm assuming the corresponding message in the command window is that the parallel pool is starting up with X...

mehr als 2 Jahre vor | 0

Beantwortet
Unrecognized function or variable in parfor
I don't see how you're getting the error. Can you provide a bit more context? For example, when I run something similar (I thi...

mehr als 2 Jahre vor | 0

Mehr laden