Installation¶
Quick Install¶
pip install qulacs
If your CPU is older than Intel Haswell architecture, the binary installed with the above command does not work. In this case, please install Qulacs with the following command. Even if your CPU is newer than Haswell, Qulacs installed with the below command shows better performance but takes a longer time. See “Install Python library from source” section for detail.
pip install git+https://github.com/qulacs/qulacs.git
If you have NVIDIA GPU and CUDA is installed, GPU-version can be installed with the following command:
pip install qulacs-gpu
Install Python library from source¶
To install Qulacs optimized for your system, we recommend the following install procedure for faster simulation of quantum circuits, while this requires a compiler and takes time for installation. In addition, you can enable or disable optimization features such as SIMD optimization, OpenMP parallelization, and GPU support.
A binary that is installed via pip command is optimized for Haswell architecture. Thus, Qulacs installed via pip command does not work with a CPU older than Haswell. If your CPU is newer than Haswell, Qualcs built from source shows the better performance.
Requirements¶
C++ compiler (gcc or VisualStudio)
gcc/g++ >= 7.0.0 (checked in Linux, MacOS, cygwin, MinGW, and WSL)
Microsoft VisualStudio C++ 2015 or 2017
Boost >= 1.71.0 (Minimum version tested in CI)
Python 2.7 or 3.x
CMake >= 3.0
Git
(option) CUDA >= 8.0
(option) AVX2 support
If your system supports AVX2 instructions, SIMD optimization is automatically enabled. If you want to enable GPU simulator, install qulacs through qulacs-gpu
package or build from source. Note that qulacs-gpu
includes a CPU simulator. You don’t need to install both.
Qulacs is tested on the following systems.
Ubuntu 20.04
macOS Big Sur 11
Windows Server 2019
If you encounter some troubles, see FAQ.
How to install¶
Install with default options (Multi-thread without GPU):
pip install .
Your build may fail with python’s cmake
package installed. Adding --no-build-isolation
option will help.
If AVX2 instructions are not supported, SIMD optimization is automatically disabled.
Install with GPU support (CUDA is required):
USE_GPU=Yes pip install .
Install single-thread Qulacs:
USE_OMP=No pip install .
The number of threads used in Qulacs installed with default options can be controlled via the environment variable OMP_NUM_THREADS
or QULACS_NUM_THREADS
.
While OMP_NUM_THREADS
affects the parallelization of other libraries, QULACS_NUM_THREADS
controls only the parallelization of QULACS.
Or, if you want to force only Qulacs to use a single thread, You can install single-thread Qulacs with the above command.
For development purpose, optional dependencies can be installed as follows.
# Install development tools
pip install .[dev]
# Install dependencies for document generation
pip install .[doc]
Uninstall Qulacs:
pip uninstall qulacs
Build C++ and Python library¶
Build with GCC¶
Static libraries of Qulacs can be built with the following command:
git clone https://github.com/qulacs/qulacs.git
cd qulacs
./script/build_gcc.sh
To build shared libraries, execute make shared
at ./qulacs/build
folder. When you want to build with GPU, use build_gcc_with_gpu.sh
instead of build_gcc.sh
.
When you want to build with GPU, use build_gcc_with_gpu.sh
.
Build with MSVC¶
Static libraries of Qulacs can be built with the following command:
git clone https://github.com/qulacs/qulacs.git
cd qulacs
script/build_msvc_2017.bat
When you want to build with GPU, use build_msvc_2017_with_gpu.bat
. If you use MSVC with other versions, use build_msvc_2015.bat
or edit the generator name in build_msvc_2017.bat
.