Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,15 @@ dependencies = [
"sympy>=1.12",
]

# TODO: update relay-bp to
# "relay-bp[stim]==0.2.?",
# once https://github.com/trmue/relay/pull/30 is in a release
[project.optional-dependencies]
dev = [
"checks-superstaq>=0.5.45",
"jupyter>=1.1.1",
"python-lsp-server[all]>=1.14.0",
# "relay-bp[stim]==0.1.0",
"relay-bp[stim] @ git+https://github.com/perlinm/relay-bp.git",
"relay-bp[stim]==0.2.1",
]
relay-bp = [
# "relay-bp[stim]==0.1.0",
"relay-bp[stim] @ git+https://github.com/perlinm/relay-bp.git",
"relay-bp[stim]==0.2.1",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion src/qldpc/decoders/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class RelayBPDecoder(BatchDecoder):

This class first constructs a relay_bp.decoder.DynDecoder decoder by class name, such as
"RelayDecoderF32"; see help(relay_bp) for more options. To enable parallelized decoding, which
which as of relay-bp==0.1.0 is only implemented for the relay_bp.ObservableDecoderRunner class,
which as of relay-bp==0.2.1 is only implemented for the relay_bp.ObservableDecoderRunner class,
RelayBPDecoder wraps the relay_bp.decoder.DynDecoder in a relay_bp.ObservableDecoderRunner at
initialization time.

Expand Down