Skip to main content

Gate model library.

Project description

https://img.shields.io/pypi/v/dwave-gate.svg https://img.shields.io/pypi/pyversions/dwave-gate.svg https://circleci.com/gh/dwavesystems/dwave-gate.svg?style=svg https://codecov.io/gh/dwavesystems/dwave-gate/branch/main/graph/badge.svg

dwave-gate

dwave-gate is a software package for constructing, modifying and running quantum circuits on the included simulator. It provides a set of tools that enables you to:

  • Construct quantum circuits using an intuitive context-manager interface.

  • Utilize a comprehensive library of quantum gates with simple access to matrix representations, various decompositions, and more.

  • Simulate circuits on a performant (C++) state-vector simulator.

  • Easily create your own quantum gates and templates. Any circuit can be either directly applied in another circuit or converted into a quantum operation.

This example uses the dwave.gate.Circuit object’s context manager to append operations to a two-qubit circuit.

>>> import dwave.gate.operations as ops
>>> from dwave.gate import Circuit
>>> circuit = Circuit(2)
>>> with circuit.context as (q, c):     # doctest: +SKIP
...    ops.X(q[0])
...    ops.Hadamard(q[1])
...    ops.CZ(q[0], q[1])
...    ops.Hadamard(q[1])

You can run the dwave.gate.simulator simulator on such circuits,

>>> from dwave.gate.simulator import simulate
>>> simulate(circuit)

and then access the resulting state via the state attribute.

>>> circuit.state   # doctest: +SKIP
array([0.+0.j, 0.+0.j, 0.+0.j, 1.+0.j])

Installation

The simplest way to install dwave-gate is from PyPI:

pip install dwave-gate

It can also be installed from source by cloning this GitHub repository and running:

make install

The makefile will also simplify running tests (make test), coverage (make coverage), documentation (make docs), as well as formatting (make format) the code using the Black formatter (set to a line-length of 100) and isort. It’s available on both Unix as well as Windows systems, via the make.bat batch file.

Alternatively, the package can be built and installed in development mode using Python and pip. The simulator operations would need to be generated first by executing operation_generation.py, found in dwave/gate/simulator.

python setup.py build_ext --inplace
pip install -e .

Tests and coverage can be run using Pytest.

python -m pytest tests/ --cov=dwave.gate

License

Released under the Apache License 2.0. See LICENSE file.

Contributing

Ocean’s contributing guide has guidelines for contributing to Ocean packages.

Release Notes

dwave-gate uses reno to manage its release notes.

When making a contribution to dwave-gate that will affect users, create a new release note file by running

reno new your-short-descriptor-here

You can then edit the file created under releasenotes/notes/. Remove any sections not relevant to your changes. Commit the file along with your changes.

See reno’s user guide for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dwave_gate-0.3.4.tar.gz (367.2 kB view details)

Uploaded Source

Built Distributions

dwave_gate-0.3.4-cp313-cp313-win_amd64.whl (540.7 kB view details)

Uploaded CPython 3.13Windows x86-64

dwave_gate-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dwave_gate-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dwave_gate-0.3.4-cp313-cp313-macosx_11_0_arm64.whl (558.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dwave_gate-0.3.4-cp313-cp313-macosx_10_13_x86_64.whl (566.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

dwave_gate-0.3.4-cp312-cp312-win_amd64.whl (541.2 kB view details)

Uploaded CPython 3.12Windows x86-64

dwave_gate-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dwave_gate-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dwave_gate-0.3.4-cp312-cp312-macosx_11_0_arm64.whl (559.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dwave_gate-0.3.4-cp312-cp312-macosx_10_13_x86_64.whl (569.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

dwave_gate-0.3.4-cp311-cp311-win_amd64.whl (542.2 kB view details)

Uploaded CPython 3.11Windows x86-64

dwave_gate-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dwave_gate-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dwave_gate-0.3.4-cp311-cp311-macosx_11_0_arm64.whl (561.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dwave_gate-0.3.4-cp311-cp311-macosx_10_9_x86_64.whl (574.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

dwave_gate-0.3.4-cp310-cp310-win_amd64.whl (542.0 kB view details)

Uploaded CPython 3.10Windows x86-64

dwave_gate-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dwave_gate-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dwave_gate-0.3.4-cp310-cp310-macosx_11_0_arm64.whl (559.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dwave_gate-0.3.4-cp310-cp310-macosx_10_9_x86_64.whl (569.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

dwave_gate-0.3.4-cp39-cp39-win_amd64.whl (542.9 kB view details)

Uploaded CPython 3.9Windows x86-64

dwave_gate-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dwave_gate-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dwave_gate-0.3.4-cp39-cp39-macosx_11_0_arm64.whl (560.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

dwave_gate-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl (571.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file dwave_gate-0.3.4.tar.gz.

File metadata

  • Download URL: dwave_gate-0.3.4.tar.gz
  • Upload date:
  • Size: 367.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for dwave_gate-0.3.4.tar.gz
Algorithm Hash digest
SHA256 17e193da453724c427448e3d7beeb8260c804404ac0ab43ed2d0abcbb0d55b5e
MD5 e0f407a83a55b3dd3b7e8294980253a1
BLAKE2b-256 993d3e8b23835aa0aec63e58e9cf0450b022dad0bd8665d0d473a1b3f8773673

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dwave_gate-0.3.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 540.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for dwave_gate-0.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8a62514b3e705759cce4b8f44f4b4fb1e13cd4e36a26282a467873324b641a11
MD5 92473660d9a2da1c13a5f5cd7c82d21a
BLAKE2b-256 2b68cae21cbda9920c75a47e3f0380eb2e8b60dfd135b3f28622539dc488e43e

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5094fc948713ff05fc11dc0d7af794ed1958cb5d16f22aac6d48801818462bb4
MD5 b791a848d4eb3744c6a17fa8702dddbc
BLAKE2b-256 9d3f801c04e47a72570e6d47135184d489f97ab1ecb32be7c0aec2fedab963d8

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ef8255ec286cf02046fa833013063eab7a468d9fa54bcfb37a78b23bab2f657
MD5 9ef1a7eb272de0ddb32d00ff39821072
BLAKE2b-256 90cd150abe72c6ae25d02b86ca8905285ce2a871c65cd2c24a218a1e7b7f170d

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67db02edb3e7b742ec8e18787a11533ffd910e53a2aed850cd6dca04d25b44d2
MD5 b55aed4a102e3c2a7c21dc93d540f1a8
BLAKE2b-256 f23eac554dbf177bccab531720b691d9faf5a992f4c8f41321673c0dc698aa13

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0d2db06582449b90823c3872b15b839bd118acb2505bbb409631e786ff271d67
MD5 40399cc9ac10f95f875a9a3ee02891db
BLAKE2b-256 3cc99a555162754bc19e0244640758e0f70c9cb4855829f1a1e320ba3547dc4f

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dwave_gate-0.3.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 541.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for dwave_gate-0.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fb2acb33b81c48c3268d51c6df46a4a0499d032f0e88a7b519e7bc55078eca87
MD5 b0cfc99f81febd1e10676622273230bf
BLAKE2b-256 97c11f61a51792af691fb519d1bf9a3a0be449a60bf71bb9042211815d99b5c3

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61a32a028075a1cefe1afcd581f7ce6259cf2b05ebd1bc0cd8a8182c45111c41
MD5 a1df792f6297637f4db0104180d6088f
BLAKE2b-256 b759d542471d3bfd04d815dc6659b245bee64720e3e9f4d3081c2c920fa70940

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9baadcee83d53154bb9a33e7c023dfc842825361e9c0bf64b3b745e51f5de7bc
MD5 31a546fa012e569666d9e55dc8ab99d3
BLAKE2b-256 250a3f8f2bdb7388ba10fbe84331fa6a158d0ecdc5c4024c514d5aca0615952f

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e46e0fe19085658c178922e2427ea1048828a27988ab288a23c009ef0886ad87
MD5 f06cd463abf2ad1c23911494ccfd79dd
BLAKE2b-256 647d93b871f3245a0bd61eedbdca5dc056a82d27cdda8248976fe11f4d223aaa

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a08d90dfc089ec4a5843764b27c0f953178d3971ba067f661a88f4d8243184d4
MD5 68dc982ebd21f36d340ee59fe9c11568
BLAKE2b-256 93f6b011e69d4a5b631783a14671673148f0bb268cfceb02de8894ee2c5f6cc9

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dwave_gate-0.3.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 542.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for dwave_gate-0.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b34c9ae752b65ebf73292f91277f04f4f17fd3522b5df13d8edd74ef751f51d3
MD5 dde3d439df8218d8d3ddfd5ee8bdc5b1
BLAKE2b-256 59378849532a9118632b359491b3a15df7fdc6adac6b558ebf077619b24230a4

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acab90e3c6671f1ed85b7fafb90ade4f68a1da19f8a01af8a374a025c5db9880
MD5 d9d6e134fa63567e2a3d41d0475f2937
BLAKE2b-256 61631b1b62e4372d39ce4182cd19c201d0ffe1b196a983417f9f494a4dd6ce9d

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbe01c6b42ee8a8e8236cc7f230289562efb2bd14778fc98030fcfdbab993021
MD5 7adb71304ada9d39b5ba8f912cb8061c
BLAKE2b-256 e8d350db734fc647f5bb5386dbf9377231da4a703c4ecb73b85fac63dbd53020

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 331d258161adfe773963e1c86a279c3fd4d2ef9f588a7bf6e4db040cf065611b
MD5 f5d4c27d6755f2dec3762416cefef47a
BLAKE2b-256 c372fa3bb3d2a3fa6efa024fea616a72091a764627fe3b496f937f127121ecb3

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec62338b7ef672d75783b5f28003f7332b514a5d5f170eaf93a87e7d15e10709
MD5 6e9ad129cc02f426d21a380f40293f41
BLAKE2b-256 c5a53384ab5fbe5bd47ac9010d224cf99adf64ce0f78dd420069fbdf782b0ffc

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dwave_gate-0.3.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 542.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for dwave_gate-0.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 79f34a0d1f02a6d416d1dcd83c8761dc8be43d0d7c7063fd6c8bd37c0bef8af8
MD5 70bb5d29011c7f7998522b0150f38753
BLAKE2b-256 8d2d49bb4dbb81faeae6fe36647de5974a159fea6f31bb7064a591a682bbb234

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 609b74dbff63d630c9803c310dfc8c1f46adb531aae42a8ba6f48122c11b7713
MD5 3bcb1bdd7992010629de58dfd0bbae21
BLAKE2b-256 28babfd4f5d628f0d92aed7485fe3a685bb9e7d25fc4b30f4a4a2557dd842662

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6510498f5d91c8d302198ca3f523dd97f81c611f99daac78a4cf3dbd6924b7f
MD5 0c5891f69f193131f6338eef50dd5ccd
BLAKE2b-256 da2d3929152d4a3963f1b4aa331d2e1d297b1a8241ba30a4f46d397dba4e50d2

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62185317a83965d97eaa2bfdc67d33bb72ce7bfedaf2a21361c51e1504ff3fce
MD5 637419d4e0fd3746bcebb45bfbec6cad
BLAKE2b-256 6946752925ecdd0c602abb8c4f72be118e94f5091081433de1bdc4a590ea43b0

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 283d68df142678af8137c8a78d9f2894f757b7f0eec67e3aac4db6afdc759021
MD5 14774942b75638e3cae62a5a914bb0ee
BLAKE2b-256 b1fa01c80ca9faeaeb7d86031b8cc6bc5f2fdba29ce857c8fa395f24db164c63

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dwave_gate-0.3.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 542.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for dwave_gate-0.3.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 508b171794c4c1288db60168ea931766fda141cd19f62191f3b2e99a8017b696
MD5 88f91f85169c6202c2724d14ef0cedda
BLAKE2b-256 a07d4e22124fc7f54fbf5d50c70621ddb835c9c4c9a8586e00cf240012005fc5

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8fcf491ae931ce0ca978df9ccf6756537c816f35d679d1b3fa85b5252ed0976
MD5 8a0fac6ac27060b4408ae51e6bfa1992
BLAKE2b-256 ca3a34aa3f5c71a8d5b284d3f5f6c53735fd7f7e8e90fc2e7ac321a1b36c633d

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cedbaeb49f06aae6b1ab5bd871c03a7e0c5a7bd3cabfc305af6771cba403651d
MD5 62ee69509d58428dd50b8953bbea9922
BLAKE2b-256 ed9e03a408e53df9d8617c8958789e7cbff80d3f068653dced1463e7d3cdbf13

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5581cc14ab010b06b72d20433f8458c66314ac6c9d603d297b908bcd92946bc
MD5 f43642fefeb75ecc090f223b46326306
BLAKE2b-256 6b2a7f93aff1d3338a5915680d9570d352e4e9a179a26c0070500b7057fd7c22

See more details on using hashes here.

File details

Details for the file dwave_gate-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dwave_gate-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4adecc66ad336fd8ea572716c55c142da83b6dcf016ba7b508db1f29ed6fc1aa
MD5 593ccbc2d5985990aad47546a586894b
BLAKE2b-256 dd4eda3afd6d906619d4a3a660e60e596db8a2b35606119aec01e0ea3a47c883

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page