Difference between revisions of "Appendix F: expert-level options"
(→Intel Xeon Phi coprocessor support) |
(→Greedy parallelisation) |
||
| Line 45: | Line 45: | ||
sys.enable={'greedy'}; | sys.enable={'greedy'}; | ||
| − | overrides the default setting and allows the worker processes to use as much CPU as they see fit. This is useful in situations when state spaces are dominated by a single large subspace. Note that, once a job with this setting is run, it would persist in the parallel pool unitl the pool is restarted. | + | overrides the default setting and allows the worker processes to use as much CPU as they see fit. This is useful in situations when state spaces are dominated by a single large subspace. Note that, once a job with this setting is run, it would persist in the parallel pool unitl the pool is restarted or a job with different settings is run. |
''Revision 3284, authors: [[Ilya Kuprov]]'' | ''Revision 3284, authors: [[Ilya Kuprov]]'' | ||
Revision as of 12:33, 9 November 2016
This section catalogs very advanced functionality that is stable and well-tested, but switched off by default.
Contents
NVidia Tesla coprocessor support
Several functions in Spinach can make use of CUDA GPUs. If your computer has a recent NVidia graphics card, enabling that functionality may be beneficial. This is done by adding 'gpu' to the enable array:
sys.enable={'gpu'};
Spinach kernel modules that can make use of GPU arithmetic are:
- Time evolution in evolution.m function.
- Matrix exponential calculation in propagator.m function.
- Matrix inverse-times-vector operation during the slow-passage detection in slowpass.m function.
- Krylov propagation in krylov.m and step.m functions.
Numerical pseudocontact shift solvers also support GPUs for the Fourier solver option. GPU support is enabled in ipcs.m and kpcs.m by specifying
options.gpu=1;
For the typical 128x128x128 point grids used in paramagnetic centre probability density reconstructions from PCS, using a Tesla K40 card results in up to an order of magnitude acceleration relative to 32 CPU cores. Note that commodity NVidia graphics cards (e.g. GeForce) have artificially capped 64-bit floating-point performance - the Tesla range is more expensive, but much recommended.
Intel Xeon Phi coprocessor support
Matlab 2016b and later use the version of Intel MKL that supports automatic offload of low-level MKL functions to Xeon Phi coprocessors. Set the following environment variables in Linux or Windows to enable automatic offload:
BLAS_VERSION=mkl_rt.dll
LAPACK_VERSION=mkl_rt.dll
MKL_MIC_MAX_MEMORY=16G
MKL_MIC_ENABLE=1
Change the amount of memory to match your version of the Xeon Phi card.
Propagator caching
Spinach may be instructed to keep a disk record of the matrices that propagator.m function has previously seen, so that propagators are not recomputed, but instead fetched from the disk next time the matrix is encountered. This can save large amounts of time in simulations of very repetitive pulse sequences. To turn this functionality on, add 'caching' to the enable array:
sys.enable={'caching'};
The cached propagators are placed into /scratch directory in the Spinach root folder.
Spinach uses Matlab's built-in Java interface for the hashing operation that is used to generate matrix identifiers. For very large matrices it may be necessary to increase the Java heap size (Preferences/MATLAB/General/Java Heap Memory). It is not a good idea to set the defailt Matlab file save format to v7.3 because the files in that format are not compressed. If at all possible, leave the default value of v7.0 unchanged.
Greedy parallelisation
The default setting in Matlab is that every worker process only runs in a single thread. Adding the 'greedy' flag to the enable array:
sys.enable={'greedy'};
overrides the default setting and allows the worker processes to use as much CPU as they see fit. This is useful in situations when state spaces are dominated by a single large subspace. Note that, once a job with this setting is run, it would persist in the parallel pool unitl the pool is restarted or a job with different settings is run.
Revision 3284, authors: Ilya Kuprov