SchusterLab / rbqoc

Robust Quantum Optimal Control with Trajectory Optimization

Home Page:https://journals.aps.org/prapplied/abstract/10.1103/PhysRevApplied.17.014036

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rbqoc

Repository for Robust Quantum Optimal Control with Trajectory Optimization

Contents

About

This repository is associated with the paper Robust Quantum Optimal Control with Trajectory Optimization, a collaboration between Schuster Lab and the Robotic Exploration Lab. This repo contains the files and information necessary to reproduce the work.

This repo is NOT a package. The optimization problems are defined using TrajectoryOptimization.jl and RobotDynamics.jl. The optimization problems are solved with Altro.jl. For those familiar with the quantum optimal control (QOC) literature, ALTRO is a solver in the same sense that GOAT, GRAPE, and Krotov are solvers. This repo is merely a set of files to demonstrate how to use ALTRO for QOC, and in particular, how to engineer robustness to parameter uncertainties and mitigate decoherence using the techniques we introduced in the paper.

This repo will NOT be updated to reflect new versions of its dependencies. However, this repo will be updated for clarity. If you feel that an aspect of the documentation for this work is lacking, e.g. a part of this README is ambiguous or a file could be better commented / explained, or you find a bug, please file a GitHub issue. Other inquiries about this work can be directed to Thomas Propson or David Schuster.

Quick Start

Who's Julia?

To execute the code in this repo, you will need to install Julia.

Julia is a dynamically-typed and just-in-time (JIT) compiled programming language designed for high performance computing. Julia is similar to Python in terms of the easy-to-read syntax you have come to love, but dissimilar in terms of the slow for-loops you have come to not so love. Julia provides substantial performance benefits for this work through compiler optimizations, most importantly those in StaticArrays.jl. We encourage the interested reader to check out the links in the Related Work section to find out more about Julia's performance benefits.

I have Julia, how do I work with this repo?

Julia uses a different package-management scheme than Python. With Python, you use third-party installers like pip or conda to manage your global environment. With Julia, you use the Pkg module from the standard library to manage an environment for each project. This is similar to the concept of a pipfile. The packages used by this project are defined in Manifest.toml and Project.toml at the top level of the repo.

First, clone the repo.

$ git clone https://github.com/SchusterLab/rbqoc.git

Navigate to the top level.

$ cd rbqoc

Enter the Julia read-eval-print-loop (REPL).

$ julia

Import the Pkg module.

julia> using Pkg

Activate the project.

julia> Pkg.activate(".")

Instantiate the project.

julia> Pkg.instantiate()

You have now downloaded all of the necessary packages.

I have Julia and the repo, what should I run?

The base optimization outlined in section III of the paper is a good starting point. It can be found in src/spin/spin13.jl.

Navigate to the file.

$ cd src/spin

Enter the Julia REPL.

$ julia

Include the file. If this is your first time including the file, all of the dependent packages will be precompiled. Precompiling will take some time, but it will only happen once.

julia> include("spin13.jl")

Run the optimization. All of the optimizations in this repo are called with a function named run_traj. The hyperparameters and output of the optimization can be modified by passing arguments to this function, see the corresponding file for details.

juila> run_traj()

Beyond Quick Start

src/rbqoc.jl and src/spin/spin.jl contain common definitions.

The analytic pulses were generated with src/spin/spin14.py.

In Figure 1, the depolarization aware pulses were generated with src/spin/spin15.jl

In Figure 2, the sampling method corresponds to src/spin/spin12.jl, the unscented sampling method corresponds to src/spin/spin30.jl, and the derivative methods correspond to src/spin/spin11.jl.

In Figure 3, the sampling method corresponds to src/spin/spin18.jl, the unscented sampling method corresponds to src/spin/spin25.jl, and the derivative methods correspond to src/spin/spin17.jl.

The data for the figures in the paper can be produced with src/spin/figures.jl and the figures can be produced with src/spin/figures.py. In src/spin/figures.jl you will find references to HDF5 files with the name structure XXXXX_spinYY.h5. These files are output by each of the optimization programs named src/spin/spinYY.jl and contain the optimized pulse. The HDF5 files used for the paper are available upon request from the authors--we did not put them in the repo because they are large binary files--but they can be generated on your machine by running the corresponding optimization program src/spin/spinYY.jl with the hyperparameters listed in nb/trials.xlsx, or its Google Sheet counterpart trials.xlsx.

Related Work

Cite this Work

@article{propson2022robust,
  title = {Robust Quantum Optimal Control with Trajectory Optimization},
  author = {Propson, Thomas and Jackson, Brian E. and Koch, Jens and Manchester, Zachary and Schuster, David I.},
  journal = {Phys. Rev. Applied},
  volume = {17},
  issue = {1},
  pages = {014036},
  numpages = {15},
  year = {2022},
  month = {Jan},
  publisher = {American Physical Society},
  doi = {10.1103/PhysRevApplied.17.014036},
  url = {https://link.aps.org/doi/10.1103/PhysRevApplied.17.014036}
}

About

Robust Quantum Optimal Control with Trajectory Optimization

https://journals.aps.org/prapplied/abstract/10.1103/PhysRevApplied.17.014036

License:MIT License


Languages

Language:Jupyter Notebook 60.8%Language:Julia 20.4%Language:Mathematica 7.1%Language:TeX 6.7%Language:Python 4.9%Language:Makefile 0.0%