已回答
HELP: received error when trying to run two functions in parallel.
It's unclear to me what could be causing the exception. Might need to troubleshoot this with Technical Support (support@mathwor...

3 years 前 | 0

已回答
Matlab only uses half of the number of logical cores. How can I use all of them?
Increase the cluster profile's number of workers. c = parcluster; c.NumWorkers = 12; p = c.parpool(12); You might not see an...

3 years 前 | 0

| 已接受

已回答
Can't use as many cores as available
I believe what you're saying is that from your desktop machine you connect to some server. From there, you run MATLAB on a mach...

3 years 前 | 0

已回答
Slim installation of MATLAB Runtime
Paul see if this will help: https://www.mathworks.com/help/compiler/package-matlab-standalone-applications-into-docker-images.ht...

3 years 前 | 1

已回答
Submitting batch jobs across multiple nodes using slurm
Hi Sebastian, I'm going to assume that my_script is the code "workerTable{ii} = ..." There are several ways to approach this...

3 years 前 | 0

| 已接受

已回答
Using parfor and external program via network
The problem is that GeckoCIRCUITS must not allow for multiple running instances. I glanced through their doc, but don't see any...

4 years 前 | 0

已回答
how to use gpu in matlab online?
The issus is that you're running MATLAB on a machine that (most likely) doesn't haeve a GPU on it. You'll need to run MATLAB on...

4 years 前 | 0

已回答
Problem with text output during parallel computation
I'm gathering from above that none of the jobs fail -- that if you were to look at the output before it's written, you would see...

4 years 前 | 0

已回答
Fail to create more than 12 workers using parallel toolbox on linux (matlab R2019b)
Here are a couple of similar posts that might help https://www.mathworks.com/matlabcentral/answers/478171-parpool-consistent...

4 years 前 | 0

已回答
How to create pool of workers from a list of hostnames?
This isn't feasible at this time; however, you might consider wrapping your code with batch. For example, let's assume your cod...

4 years 前 | 0

| 已接受

已回答
Build Simulink Real-Time Applications in Parallel
I'm not a Simulink expert, so I'm assuming that loading the workspace (which is the same for all?) will introduce, for example, ...

4 years 前 | 0

已回答
Local parallel cluster profile validation createJob takes a very long time to run
Do you happen to have a local parallel pool already running, using all your cores, as you run your validation? I'm not sure whe...

4 years 前 | 0

已回答
HPC Slurm --ntasks and Matlab parcluster NumWorkers question
In Slurm, a single task (i.e. MATLAB) can not run across multiple nodes. Let's look at a couple of options. MATLAB on a single...

4 years 前 | 2

| 已接受

已回答
Force all licenses checks at beginning of code in Azure Server
You can force a checkout for each toolbox with the license command % [TF errmsg] = LICENSE('checkout', FEATURE) checks out a ...

4 years 前 | 0

已回答
How to make matlab use more CPUs
You need to provide more information on how you're running MATLAB on the server. Are you running through a scheduler (e.g. PBS)...

4 years 前 | 0

已回答
How to restart a CommunicatingJob using only the MATLAB workspaces?
There's no automated process for reading the Job files and recreating the job. It'd be much easier to recreate the steps you've...

4 years 前 | 1

| 已接受

已回答
Is the installation same for 2020b MATLAB Parallel Server and regular matlab installation?
You can use the same installer, but you download and install a different binary, with its own license file. Two things: When i...

4 years 前 | 1

已回答
Interrupt parfor from uiprogressdlg CancelRequested
I'm not entirely sure what you're hoping to have happen with the cancel, but I'll say that parfor can only be cancelled by Ctrl-...

4 years 前 | 1

| 已接受

已回答
AWS_Client, License manager_Server
There are two license options. network license (i.e. Flex, which sounds like what you're using) online licensing (enabled by a...

4 years 前 | 1

已回答
Connecting to cluster fails: Algorithm negotiation fail
Please reach out to Technical Support (support@mathworks.com) and have them contact me about this. I recognize your cluster and...

4 years 前 | 1

已回答
How to find function and variable value at each iteration for genetic algorithm with Parallel Computing ?
This doesn't address your issue, but you can't have a nested parfor loop/spmd block, which is in essense, what you're suggesting...

4 years 前 | 0

| 已接受

已回答
How I resume my Matlab job from previous saved data in NCI(Australian supercomputer facilities)?
My understanding is that NCI will allow for longer running jobs than 48 hours. Email help.nci.org.au for an exception on queue ...

4 years 前 | 1

| 已接受

已回答
Multi-level parallelization
MATLAB does not support multiple parallel pools in the same session. With that said, as you've pointed out, batch will do what ...

4 years 前 | 0

| 已接受

已回答
Error running MATLAB Parallel Server toolbox "Admincenter"
I would suggest contacting Technical Support (support@mathworkscom). They ought to be able to help with this and with your othe...

4 years 前 | 0

已回答
How can I open a matlabpool in matlab2020?? Also, I have the parallel computing toolbox (PCT).
Not sure how far back ago, but we've deprecated the matlabpool command. Use the parpool command instead.

4 years 前 | 0

已回答
Advice on cluster creation
Hi Mazen, I'm sorry to hear you're having issues installing and configuring MATLAB Parallel Server. I have two suggestions for...

4 years 前 | 0

已回答
Unable to start parallel pool for more than 12 cores
I'm a bit confused how setting the default size of a parallel pool would throw "failed to start parallel pool", since setting th...

4 years 前 | 0

已回答
Is it possible to set a remote folder on HPC as a current folder?
Can you provide a bit more info on how you'd like this to work. Given that you're using parcluster, batch, etc., I suspect you'...

4 years 前 | 1

已回答
Recommendations for hardware acceleration for AI work
Your university has some documentation about running MATLAB & MATLAB Parallel Server at your site. Get in touch with me if you ...

4 years 前 | 0

已回答
Does the batch job run on a single worker if the code batched doesn't contain any parallel for loop?
Your local machine is making use of maxNumCompThreads, which is set to the number of physical cores on your machine. The 'paral...

4 years 前 | 0

| 已接受

加载更多