답변 있음
What is the origin of this bus error?
Hi, When you submit your Slurm job, you can specify the flag --mem-per-cpu=<mem, usually in gb> look to increase that. ...

5년 초과 전 | 0

답변 있음
validation process failed for slurm scheduler in matlab parallel server
Hi Lior, Please contact support@mathworks.com. They can walk you through this. Thanks, Raymond

5년 초과 전 | 0

답변 있음
improve and speed up parfor loop
It's possible that your code is already making use of mulitple cores (i.e linear algebra); therefore, running local Workers may ...

거의 6년 전 | 0

답변 있음
Silent install MATLAB on AWS
Hi, We've recently posted a reference architecture on GitHub for MATLAB on AWS. https://github.com/mathworks-ref-arch/m...

7년 초과 전 | 0

제출됨


ClusterInfo
Used for passing parameters to third party schedulers

9년 초과 전 | 다운로드 수: 1 |

0.0 / 5

답변 있음
Continious message "starting parallel pool (parpool) using the local profile"?
It might be because both pools are accessing the same JobStorageLocation. If you're going to run two instances of MATLAB and a ...

거의 11년 전 | 0

답변 있음
Is it possible to run job from client on server with different version?
Hi, The versions have to match. In your case, imagine if you're using a feature in R2014b that's not supported in R2014a -- ...

거의 11년 전 | 0

| 수락됨

답변 있음
How to make sure matlab uses all the cores on a remote cluster ?
Try running the following code. Set N to the number of cores you want to run on. This should take ~4 seconds to run. N = ...

대략 11년 전 | 0

| 수락됨

답변 있음
parfor on a supercomputer
I would suggest contacting MathWorks Technical Support (support@mathworks.com)

11년 초과 전 | 0

답변 있음
How to reset the 'default' RemoteClusterAccess object?
I thought that was where this might be going :) There should be a function, ClusterInfo. Call >> ClusterInfo.state Dis...

11년 초과 전 | 0

| 수락됨

답변 있음
Can this implementation of Matlabpool in parallel?
The code will run in parallel. Keep in mind, one path may run quicker than the other paths, so you may nee to create a "barrie...

11년 초과 전 | 0

| 수락됨

답변 있음
How to use a Windows 7 MATLAB client on a Ubuntu based MATLAB cluster?
The issue may be that the Linux cluster can't resolve bowser. Run the following before validation pctconfig('hostname','<i...

11년 초과 전 | 0

답변 있음
parallel call external exe file?
Have you tried calling system? By the way, as it's written, you don't need eval, you ought to be able to just use !

11년 초과 전 | 0

답변 있음
Im having trouble fixing the "cannot be classified error" in my parfor loop (The variable perror in a parfor cannot be classified)
The formatting of the code isn't displaying properly, so I may not have the same code you have. Could you reformat it? Assumin...

11년 초과 전 | 0

| 수락됨

답변 있음
Parallel computing on multiple computers in a Network
Hi, In order to run a MATLAB Pool across multiple computers, use the <http://www.mathworks.com/products/distriben/ MATLAB Dis...

11년 초과 전 | 2

답변 있음
SLURM Distributed Computing error
If it helps, there are SLURM integration scripts on File Exchange http://www.mathworks.com/matlabcentral/fileexchange/2991...

대략 12년 전 | 0

답변 있음
Undefined function or variable 'querybuilder'.
The querybuilder function is part of the Database Toolbox. You can find more information <http://www.mathworks.com/products/dat...

거의 13년 전 | 0

| 수락됨

문제를 풀었습니다


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

대략 14년 전

문제를 풀었습니다


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

대략 14년 전

문제를 풀었습니다


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

대략 14년 전

문제를 풀었습니다


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

대략 14년 전

문제를 풀었습니다


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

대략 14년 전

문제를 풀었습니다


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

대략 14년 전

문제를 풀었습니다


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

대략 14년 전

문제를 풀었습니다


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

대략 14년 전

문제를 풀었습니다


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

대략 14년 전

문제를 풀었습니다


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

대략 14년 전

문제를 풀었습니다


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

대략 14년 전

문제를 풀었습니다


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

대략 14년 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

대략 14년 전

더 보기