A. Mercurio and Y.-T. Huang.
Release | |
---|---|
Runtests | |
Code Quality | |
Documentation | |
Benchmark | |
Support |
QuantumToolbox.jl is a cutting-edge Julia package designed for quantum physics simulations, closely emulating the popular Python QuTiP package. It uniquely combines the simplicity and power of Julia with advanced features like GPU acceleration and distributed computing, making simulation of quantum systems more accessible and efficient.
With this package, moving from Python to Julia for quantum physics simulations has never been easier, due to the similar syntax and functionalities.
QuantumToolbox.jl is equipped with a robust set of features:
- Quantum State and Operator Manipulation: Easily handle quantum states and operators with a rich set of tools, with the same functionalities as QuTiP.
- Dynamical Evolution: Advanced solvers for time evolution of quantum systems, thanks to the powerful DifferentialEquations.jl package.
- GPU Computing: Leverage GPU resources for high-performance computing. For example, you run the master equation direclty on the GPU with the same syntax as the CPU case.
- Distributed Computing: Distribute the computation over multiple nodes (e.g., a cluster). For example, you can run hundreds of quantum trajectories in parallel on a cluster, with, again, the same syntax as the simple case.
- Easy Extension: Easily extend the package, taking advantage of the Julia language features, like multiple dispatch and metaprogramming.
Note
QuantumToolbox.jl
requires Julia 1.10+
.
To install QuantumToolbox.jl
, run the following commands inside Julia's interactive session (also known as REPL):
using Pkg
Pkg.add("QuantumToolbox")
Alternatively, this can also be done in Julia's Pkg REPL by pressing the key ]
in the REPL to use the package mode, and then type the following command:
(1.10) pkg> add QuantumToolbox
More information about Julia
's package manager can be found at Pkg.jl
.
To load the package and check the version information, use either QuantumToolbox.versioninfo()
or QuantumToolbox.about()
, namely
using QuantumToolbox
QuantumToolbox.versioninfo()
QuantumToolbox.about()
We now provide a brief example to demonstrate the similarity between QuantumToolbox.jl and QuTiP.
Let's consider a quantum harmonic oscillator with a Hamiltonian given by:
where
using QuantumToolbox
N = 20 # cutoff of the Hilbert space dimension
ω = 1.0 # frequency of the harmonic oscillator
a = destroy(N) # annihilation operator
H = ω * a' * a
We now introduce some losses in a thermal environment, described by the Lindblad master equation:
where
We now compute the time evolution of the system using the mesolve
function, starting from the initial state
γ = 0.1 # damping rate
ψ0 = fock(N, 3) # initial state
tlist = range(0, 10, 100) # time list
c_ops = [sqrt(γ) * a]
e_ops = [a' * a]
sol = mesolve(H, ψ0, tlist, c_ops, e_ops = e_ops)
We can extract the expectation value of the number operator sol.expect
, and the states with the command sol.states
.
We can easily pass the computation to the GPU, by simply passing all the Qobj
s to the GPU:
using QuantumToolbox
using CUDA
CUDA.allowscalar(false) # Avoid unexpected scalar indexing
a_gpu = cu(destroy(N)) # The only difference in the code is the cu() function
H_gpu = ω * a_gpu' * a_gpu
ψ0_gpu = cu(fock(N, 3))
c_ops = [sqrt(γ) * a_gpu]
e_ops = [a_gpu' * a_gpu]
sol = mesolve(H_gpu, ψ0_gpu, tlist, c_ops, e_ops = e_ops)