/limit_visible_cpus

Limits number of CPUs reported to programs on Linux - well suited for python code. Using LD_PRELOAD to hook sysconf call.

Primary LanguagePythonMIT LicenseMIT

limit_visible_cpus

Limit number of CPUs visible to processes on Linux, which use "sysconf" mechanism to count them.

Uses LD_PRELOAD hooking to overrride results of sysconf call.

Requirements

Linux, tested on Ubuntu 16.04, x86-64

Installation

On Linux, x86-64 systems, please install them like this:

git clone https://github.com/kadeng/limit_visible_cpus
cd limit_visible_cpus
sudo pip install py3nvml
sudo cp -av dist/bin/* /usr/local/bin/

The lpython scripts from dist/bin dynamically allocate a multiple of 8 cpus and 1 gpu based on current load, and then start a process limited to just these CPUs and gpus.

Usage within Conda Environments

The lpython scripts use python from the current PATH. So if you use "source activate myenv" and then use lpython, you should be fine. If, on the other hand, you use an IDE like PyCharm to run and debug your code within a conda environment, then do the following:

cp -a dist/bin/lpython_for_conda_env $ANACONDA_HOME/envs/$MY-ENV-NAME/bin/lpython

while replacing $ANACONDA_HOME with the path to your anaconda installation, and $MY_ENV_NAME with the name of your environment. After that, this lpython command will use the python executable from the same directory it is in. It assumes that the other scripts are all in /usr/local/bin, so please make sure they installed like above, or you'll have to adapt the script a bit.

Entry points in code

  • Use build.sh to build the library using gcc.
  • See get_ncpus.sh and get_ncpus.py for a minimal usage example.
  • Use OMP_NUM_THREADS environment variable to set the number of visible CPUs
  • See dynamic_cpu_and_gpu_limit.py for a complete script which automates all of this and combines it with dynamic CPU allocation and affinity setting via taskset

License

Licensed under MIT License. Copyright 2018, Kai Londenberg