Koala
A quantum system simulator using PEPS tensor network
Install / Use
/learn @cyclops-community/KoalaREADME
Koala
Koala is a quantum circuit/state simulator based on projected entangled–pair states (PEPS) tensor networks.
Installation
NumPy and TensorBackends are required.
It is recommended to install Koala and TensorBackends in the editable (pip install -e) mode, as they are currently under development.
git clone https://github.com/cyclops-community/tensorbackends.git
pip install -e ./tensorbackends
git clone https://github.com/YiqingZhouKelly/koala.git
pip install -e ./koala
Parallelization is provided by Cyclops Tensor Framework, and is optional.
Testing
python -m unittest
Get Started
from koala import peps, Observable, Gate
from tensorbackends.interface import ImplicitRandomizedSVD
# initialize a 2 by 3 state with peps approach and numpy backend
qstate = peps.computational_zeros(2, 3, backend='numpy')
# we also provide the state vector approach and a parallel backend
# statevector.computational_zeros(2, 3, backend='ctf')
# apply one gate or a list of gates
qstate.apply_gate(Gate('X', [], [0])) # (name, parameters, qubits)
qstate.apply_circuit([
Gate('R', [0.42], [2]),
Gate('CX', [], [1,4])
], update_option=peps.LocalGramQRUpdate(rank=4))
# choose from a list of update algorithms and optionally specify the cap bond dimension for approximate state evolution
# or apply arbitrary single-site or two-site operators
# qstate.apply_operator(np.array(...), [0])
# compute the amplitude, probability, and expectation value
qstate.amplitude([1,0,0,1,0,0])
qstate.probability([1,0,0,1,0,0])
observable = 1.5 * Observable.sum([
Observable.Z(0),
Observable.XY(3, 4) * 2
])
qstate.expectation(observable,
contract_option=peps.BMPS(ImplicitRandomizedSVD(rank=8)),
use_cache=True
)
# choose from a list of contraction algorithms and optionally specify the cap bond dimension for approximate contraction
# use built-in caching option to trade memory for time in expectation value calculations
Related Skills
node-connect
343.3kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
92.1kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
343.3kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
343.3kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
