Skip to content

Welcome to our weekly research support coffee hour on Zoom! Click here for more information.

Cirq-on-iqm

Cirq on IQM is an open-source cirq adapter for IQM quantum computers. It is installed as fiqci-vtt-cirq on LUMI. It is used for running quantum circuits on the quantum computers.

Available

Currently supported cirq-on-iqm versions:

Module LUMI Notes
fiqci-vtt-cirq/18.0 X Default version. Supports only Q50
fiqci-vtt-cirq/16.2 X Supports only Helmi (Q5)

All modules are based on Tykky using LUMI-container-wrapper. Wrapper scripts have been provided so that common commands such as python, python3, pip and pip3 should work as normal. For more information, see LUMI container wrapper.

The module includes python packages that are often used with cirq, such as matplotlib, numpy, and jupyterlab.

License

cirq-on-iqm is licensed under Apache License 2.0.

Usage

To use fiqci-vtt-cirq on LUMI, initialize it with:

module use /appl/local/quantum/modulefiles

or 

module load Local-quantum

and

module load fiqci-vtt-cirq

This command will also show how to load fiqci-vtt-cirq:

module avail fiqci-vtt-cirq

Example batch script

Example batch script for running a quantum job:

#!/bin/bash -l

#SBATCH --job-name=quantumjob     # Job name
#SBATCH --output=quantumjob.o%j   # Name of stdout output file
#SBATCH --error=quantumjob.e%j    # Name of stderr error file
#SBATCH --partition=q_fiqci     # Partition (queue) name
#SBATCH --ntasks=1              # One task (process)
#SBATCH --cpus-per-task=1       # Number of cores (threads)
#SBATCH --mem-per-cpu=1G        # Memory allocation
#SBATCH --time=00:15:00         # Run time (hh:mm:ss)
#SBATCH --account=project_xxx   # Project for billing

module use /appl/local/quantum/modulefiles
module load fiqci-vtt-cirq/16.2
export DEVICES=("Q5")
source $RUN_SETUP
python -u quantum_job.py
#!/bin/bash -l

#SBATCH --job-name=quantumjob     # Job name
#SBATCH --output=quantumjob.o%j   # Name of stdout output file
#SBATCH --error=quantumjob.e%j    # Name of stderr error file
#SBATCH --partition=q_fiqci     # Partition (queue) name
#SBATCH --ntasks=1              # One task (process)
#SBATCH --cpus-per-task=1       # Number of cores (threads)
#SBATCH --mem-per-cpu=1G        # Memory allocation
#SBATCH --time=00:15:00         # Run time (hh:mm:ss)
#SBATCH --account=project_xxx   # Project for billing

module use /appl/local/quantum/modulefiles
module load fiqci-vtt-cirq
export DEVICES=("Q50")
source $RUN_SETUP
python -u quantum_job.py

Submit the script with sbatch <script_name>.sh.

More information