Difference between revisions of "Run It"

From Linear Mixed Models Toolbox
Jump to navigation Jump to search
Line 61: Line 61:
experience a severe drop in performance of each of the runs. This is usually caused
experience a severe drop in performance of each of the runs. This is usually caused
by competition for resources and therefore parallel runs of several lmt instances should
by competition for resources and therefore parallel runs of several lmt instances should
be avoided. However, using the <b>numactl</b> environment may provide an option to avoid
be avoided. However, using the [https://linux.die.net/man/8/numactl numactl] environment to encapsulate {{lmt}} instances may provide an option to avoid performance drops.
performance drops. Please check out <b>numactl --help</b> for further reading.

Revision as of 05:11, 3 January 2021

Operation System

lmt is available for Linux operation systems only.

How to start

lmt is always started from the Linux command line interface.

Run time environment

lmt is developed for Linux operation systems on computers with an Intel architecture. Thus using lmt on AMD architecture will result in increased run time. For executables running on Windows or Mac please contact the author.

lmt requires that some environment variables are set to specific values. lmt will check those settings at start and will stop if the settings are wrong.

  • stack size must be set to unlimited via ulimit -s unlimited
  • OMP_DYNAMIC=FALSE
  • OMP_STACKSIZE='a reasonable value (i.e. 2000M)'
  • OMP_NESTED=TRUE

lmt is highly threaded and will try to use all available computing resources. Will this is desirable for very large models it can hamper performance when crunching medium to small data sets resulting in an increased run time. What "medium to small" means de- pends on the actual computer and must therefore be determined by the user. The user can set the lmt threading behaviour via the two environment variables OMP_NUM_THREADS and MKL_NUM_THREADS.

The performance of multi-threaded programs can also be heavily affected by thread affinity settings where the optimal settings must be found via trial and error. However, as a starting point, it is advisable to set the environment variable KMP_AFFINITY=granularity=core,scatter.

If you run several instances of lmt at the same time on the same computer you may experience a severe drop in performance of each of the runs. This is usually caused by competition for resources and therefore parallel runs of several lmt instances should be avoided. However, using the numactl environment to encapsulate lmt instances may provide an option to avoid performance drops.