Changes between Version 7 and Version 8 of cypress/Matlab
- Timestamp:
- 05/27/16 16:40:28 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/Matlab
v7 v8 64 64 matlab -nodesktop -nodisplay -nosplash < mymatlabprog.m 65 65 }}} 66 66 '''Note : Since the number of license is limited, it is recommended to compile Matlab code and make an executable.''' 67 68 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab] 67 69 68 70 === Running MATLAB in Parallel with Multithreads === … … 111 113 This value goes to '''SLURM_JOB_CPUS_PER_NODE''' and you can use it to determine the number of threads used in the code. 112 114 115 '''Note : Since the number of license is limited, it is recommended to compile Matlab code and make an executable.''' 116 117 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab] 113 118 114 119 ==== Explicit parallelism ==== … … 171 176 }}} 172 177 178 '''Note : Since the number of license is limited, it is recommended to compile Matlab code and make an executable.''' 179 180 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab] 181 173 182 === Running MATLAB with Automatic Offload === 174 183 Internally MATLAB uses Intel MKL Basic Linear Algebra Subroutines (BLAS) and Linear Algebra package (LAPACK) routines to perform the underlying computations when running on Intel processors. … … 215 224 fprintf('Real Time = %f(sec)\n',realT); 216 225 }}} 226 227 '''Note : Since the number of license is limited, it is recommended to compile Matlab code and make an executable.''' 228 229 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/Matlab#CompiledMatlab] 230 231 232 ---- 217 233 218 234 == Compiled Matlab ==