Implements a cirq.Sampler backed by stim.
Project description
stimcirq
Implements stimcirq.StimSampler
, a cirq.Sampler
that uses the stabilizer circuit simulator stim
to generate samples.
Example
import cirq
a, b = cirq.LineQubit.range(2)
c = cirq.Circuit(
cirq.H(a),
cirq.CNOT(a, b),
cirq.measure(a, key="a"),
cirq.measure(b, key="b"),
)
import stimcirq
sampler = stimcirq.StimSampler()
result = sampler.run(c, repetitions=30)
print(result)
# prints something like:
# a=000010100101000011001100110011
# b=000010100101000011001100110011
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
stimcirq-1.1.0.tar.gz
(8.1 kB
view hashes)