Skip to content

Latest commit

 

History

History
165 lines (127 loc) · 7.69 KB

Dev_Setup.md

File metadata and controls

165 lines (127 loc) · 7.69 KB

Setting up your Environment

This document contains a guide for how to set up your development environment if you want to contribute to the code in this repository.

Working inside the provided development container (recommended)

This repository defines a development container to facilitate working in a controlled environment that does not depend on, or interfere with, other software that is installed on your system. We recommend you work within it. To do so, please follow the instructions for enabling Docker on your respective operating system, and then proceed to set up your IDE following the recommendations for developing with VS Code and Docker.

Enabling Docker on Mac and Linux

Docker Desktop is a free one-click-install application for Mac, Linux, or Windows that contains the Docker Engine needed to use our development container, as well as a GUI to manage your containers, images and volumes. It is not necessary to log into an account to use docker if you don't want to create one.

On Linux, it is possible and sufficient to install only the engine. However, we recommend installing Docker Desktop regardless of your operating system for a consistent experience across all platforms.

Enabling Docker on Windows

If you are working with a Windows machine, please enable the Windows Subsystem for Linux by running the command wsl --install. The subsystem gives you an easy way to work with Docker containers, as well as to develop and test code locally for a variety of Linux distributions.

Please install Docker Desktop on Windows to manage your containers. It is not necessary to log into an account if you don't want to create one. Make sure to select "Use WSL 2 instead of Hyper-V" during installation.

Developing with VS Code and Docker

VS Code is a robust cross-platform IDE that integrates well with Docker through the use of an extension. Extensions let you add languages and others tools to support specialized development workflows. To work with our development container please install the Development Containers extension.

Create a local clone of your fork of the CUDA Quantum repository, navigate to that folder, and open VS Code by executing the command code .. You should now get a pop up offering to open the folder in the container. Please select this option to work in a pre-configured environment that contains all necessary dependencies to build CUDA Quantum:

  • On Mac/Linux: Select the option Open Folder in Container
  • On Windows: Select the option Clone Repository in Container Volume for the best performance. You can also select Open Folder in Container, which will ensure that changes you made inside the container environment are visible also outside the container volume. For more information, see also this guide.

After you have selected the above option to launch the container, the VS Code window will reload and you should see a green box in the lower left corner that states Development Container: cudaq-dev.

The container also defines which extensions will be loaded automatically when launching it. This does not impact your VS Code configuration outside the container environment.

You should now be all set to build CUDA Quantum and run tests. Please open a terminal in VS Code and follow the instructions here to confirm that everything works as expected.

Language server support for LLVM and MLIR dialects in VS Code

The development container in this repository is configured with extensions to facilitate working with MLIR and LLVM files. The MLIR extension requires a language server to work properly. The cudaq-lsp-server tool in this repository extends the MLIR Language Server to add support for CUDA Quantum specific dialects. It recognizes files with extensions .mlir and .qke.

The cudaq-lsp-server is built when running the CUDA Quantum build script as described in Building CUDA Quantum from Source. If you customize the installation location, you will need to either add that location to your path, or edit the value of mlir.server_path in your workspace settings for the extension to work properly.

Working in your own environment

If you have followed the instructions for working inside the provided development container (recommended) you are all set and can proceed to Getting Started with Developing CUDA Quantum.

If you do not leverage the container definition provided in this repository, you will need to manually install all prerequisites for building the code on this repository, and configure your preferred IDE for working with Python, C++, MLIR, and LLVM components.

The CUDA Quantum codebase takes advantage of some of the most recent features of the LLVM toolchain. To build CUDA Quantum, you will need to build LLVM from source, since pre-built packages containing these features are not available yet. You will need to install a suitable C++ compiler to compile the source code that the LLVM submodule in this repository points to, and then configure the CUDA Quantum build accordingly.

More specific instructions for installing prerequisites are given below. These instructions have been tested on Ubuntu 22.04, and on Windows Subsystem for Linux (WSL) with Ubuntu 22.04.

  • If you are working on a Linux distribution other than Ubuntu 22.04, you may need to adjust the package manager calls accordingly.
  • If you are using Windows, we recommend you install Ubuntu 22.04. on WSL and set up your environment there. We refer to these instructions for more details.
  • If you are working on Mac, consider using the development container instead or contributing instructions for the set up that worked for you to this repository.

Installing prerequisites on Ubuntu 22.04

Make sure you have the latest version of Python installed. Install the latest version of CMake, Ninja and lit using the command

pip install cmake ninja lit

Install the compiler tools:

apt-get update && apt-get install -y software-properties-common wget
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
add-apt-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-15 main"
apt-get update && apt-get install -y --no-install-recommends gcc g++ llvm-15 clang-15 clang-format-15 autoconf

Optionally, install CUDA to work with and develop backends that leverage cuQuantum:

wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-keyring_1.0-1_all.deb \
dpkg -i cuda-keyring_1.0-1_all.deb
apt-get update && apt-get -y install cuquantum cuquantum-dev