Answered
Editing plugin scripts for Generic scheduler
Can you post the MATLAB code you wrote to add the sbatch options? Setting EnvironmentVariables won't resolve this issue (sbatch...

2 years ago | 0

Answered
Do worker nodes in a parallel pool need direct connectivity to the client?
Our scheduler, MJS, supports interactive pools running from your desktop machine because the traffic is routed via the scheduler...

2 years ago | 1

| accepted

Answered
I increased numworkers to 3 but still receiving an error message that they are set to a maximum of 2 and I cannot figure out how to change this.
How did you set the number of workers? Did you set it in the Cluster Manager Profile? Or did you set it to something similar t...

2 years ago | 0

Answered
Possibility of changing nested for into parfor
If I have this right, you're only working with PCNN_Y where its value is 1. Then you skip over the first sp instances where it'...

2 years ago | 1

Answered
Validation Error on the parallel cluster
The plugin scripts support "remote" and "on-cluster" submission. When you went through the wizard to create the profile, you se...

2 years ago | 0

Answered
Request exclusive use of slurm batch nodes for a parpool that is less than the total number of cores.
Renat your MATLAB code looks similar to installations we've supported in the past. If that's true, run c.AdditionalProperties ...

2 years ago | 0

Answered
Avoid broadcasting an array in parfor
As a side note, I suspect that parfor i=size(combinations,1) should be more like parfor i=1:size(combinations,1) as the orig...

2 years ago | 0

| accepted

Answered
Error using oddiyxy1 (line 23) Error: The variable a in a parfor cannot be classified. See Parallel for Loops in MATLAB, "Overview".
I'm not sure how long it took you, but your code as it's written only took 1-2s, which wouldn't make a good problem to paralleli...

2 years ago | 1

| accepted

Answered
How to enable two threads to tackle with different tasks? E.G. control hardware acquisition and data processing synchronously
parfeval can run different tasks. For example: pool = parpool(2); daq = pool.parfeval(@acquireData, ..); proc = pool.parfev...

2 years ago | 0

| accepted

Answered
Can i run matlab code on different PC's together?
Parallel Computing Toolbox should be installed on your desktop machine and MATLAB Parallel Server should be installed on your la...

2 years ago | 1

Answered
AWS EC2 link to MATLAB online
If I have my codes correct, you're running MATLAB with a commerical license and MATLAB Parallel Server with an academic license....

2 years ago | 0

Answered
PARFOR loop can not run due to the way variable "M" is used.
Collapse M(i,1) = data1(f1(i),1); M(i,2) = data1(f1(i),2); M(i,3) = Alt(i); M(i,4) = datenum(f1(i)); to M(i,:) = [data1(f1...

2 years ago | 0

| accepted

Answered
Parallel CPU computing for recurrent Neural Networks (LSTMs)
I'm assuming you're only running this on your local machine (with 23 cores)? And I'm assuming you don't have a GPU? If so, set...

2 years ago | 1

Answered
terminating a parfor loop early
The issue you'll have with parfor is that it can't terminate early. I believe what you're suggesting is to do checkpointing -- ...

2 years ago | 0

| accepted

Answered
optimize cluster configuration for virtual machine
When you run the code serially, do you see high core activity? If not, you might not see any appreciable difference increasing ...

2 years ago | 0

Answered
using Parfeval and BackgroundPool
You appear to be running R2021a. backgroundPool was introduced in R2021b.

2 years ago | 0

| accepted

Answered
What does it mean: fileStream::DetectCharset():frea ?
Here's a trivial example. Look at the documentation for more information. function zw d = parallel.pool.DataQueue; d.after...

2 years ago | 0

| accepted

Answered
MATLAB PollableDataQueue get last value
How about prepending the value to the poll? x0 = [rand(1), x0];

2 years ago | 0

| accepted

Answered
What does it mean: fileStream::DetectCharset():frea ?
Can't answer this for you, but you might consider looking at DataQueues https://www.mathworks.com/help/parallel-computing/parall...

2 years ago | 0

Answered
cluster profile validation failed
Hi. Please contact MathWorks Technical Support. They will be able to troubeshoot this.

2 years ago | 0

Answered
scaling a parfor to a more than one node on a cluster
Ciao Patrizio, We've worked with Cineca directly in the past. To begin with, yes we need to resolve the MATLAB Parallel Server...

2 years ago | 1

| accepted

Answered
scaling a parfor to a more than one node on a cluster
Parallel Computing Toolbo provides a "local" profile, for running multi-core jobs on the machine running the MATLAB client. If ...

2 years ago | 0

Answered
Parallel pool failed to start - Job test failed during validation MATLAB 2021b
This feels like an install issue. It's odd that Stage 2 would fail, but Stage 3 & 4 pass. And then especially have Stage 5 fai...

2 years ago | 0

Answered
How to know in advance if creating matrix will run out of memory?
Look at the memory command, but it's only for Windows operating system. The gpuDevice command will return AvailableMemory of a ...

2 years ago | 0

| accepted

Answered
Repetitive value arising in for loop
Please edit your posting so that it displays your code in CODE mode. This is not a parfor issue, you'd get the same results wit...

2 years ago | 0

| accepted

Answered
Parpool fails to run in between other lines of code
I'm guessing it's something to do with your environment. When I test with example.nc, it works fine. Is your code in a script ...

2 years ago | 0

| accepted

Answered
Unable to submit task result (Matlab parallel server)
Hi Maria, A few questions first: Which platform is MATLAB Parallel Server running on, Linux or Windows? Which scheduler are y...

2 years ago | 0

Answered
parfor loop: random samples are dependent
See if these help https://www.mathworks.com/help/parallel-computing/control-random-number-streams-on-workers.html https://www....

2 years ago | 0

Answered
How to use parfor with a range from a very large object and cause memory problems
Have you considered assigning R in the parfor? parfor t = 1:T R = rand(T,S,P,M) ... end It's less intuitive for MAT...

2 years ago | 0

Answered
Troubles with counter variables and file writings in parallelized for loop
For Problem 1, use a parallel.pool.DataQueue https://www.mathworks.com/help/parallel-computing/parallel.pool.dataqueue.html In...

2 years ago | 0

Load more