Skip to content

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

Qiskit-on-iqm

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

Available

Currently supported qiskit-on-iqm versions:

Module LUMI Notes
fiqci-vtt-qiskit/18.0 X Default version. Supports only Q50
fiqci-vtt-qiskit/17.8 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 qiskit, such as qiskit-experiments, matplotlib, numpy, and jupyterlab.

License

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

Usage

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

module use /appl/local/quantum/modulefiles

or 

module load Local-quantum

and

module load fiqci-vtt-qiskit

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

module avail fiqci-vtt-qiskit

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-qiskit/17.8
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-qiskit
export DEVICES=("Q50")
source $RUN_SETUP
python -u quantum_job.py

Submit the script with sbatch <script_name>.sh.

More information