Skip to main content

A library for doing efficient operations on neural circuits

Project description

rusted_circuits

Exposing useful operations to manipulate the neural circuits that can be derived from Flywire, a project which maps out the Drosophila brain.

In my research, I found myself repeatedly needing to find a minimal circuit (connectivity-wise) that contains the smallest subcircuit containing all paths between a set of source and sink neurons (nodes, whatever). The python code I used was too slow, even considering various biological priors (e.g. I think it's possible to traverse from most neurons to almost any other within 5 jumps, and if you can't then it's probably not possible).

Written in Rust, exposed in Python.

Design

We support two main "modes", where the user passes in edge information as a list of tuples [(pre_1, post_1, pre_1, post_2, ...)] and as a np.ndarray of 2 dimensions. Under the hood, both use the same code, but there is a shim layer as rust doesn't have function overloads.

Example

Smallest Subcircuit

Here is a simple working example, where we have a linear path from source (1) to sink (5)

edge_list = np.asarray([(1, 2), (2, 3), (3, 4), (4, 5)])
sources = {1}
sinks = {5}
max_depth = 10
max_paths = 100

# The nid_to_cidx_map is optional, and if it is not specified, we derive the mapping of the neuron-id-to-connectivity-matrix-index.
nid_to_cidx_map = {1: 10, 2: 20, 3: 30, 4: 40, 5: 50}

# Expected: all nodes on the path from source to sink
expected = {10, 20, 30, 40, 50}
actual_np = isolate_subcircuit_np_edgelist(edge_list, sources, sinks, max_depth, max_paths, nid_to_cidx_map)

# -OR-, from a list
actual_list = isolate_subcircuit(edge_list.tolist(), sources, sinks, max_depth, max_paths, nid_to_cidx_map)

Maintainers

  1. Add whatever code using git add ...

  2. Add a commit message e.g. git commit -m '...'

Note: replace VERSION_NUMBER below by an actual version number e.g. v0.1.0

  1. git tag $VERSION_NUMBER

  2. git push origin $VERSION_NUMBER

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

circuit_rs-0.0.0.tar.gz (42.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

circuit_rs-0.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

circuit_rs-0.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (390.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

circuit_rs-0.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

circuit_rs-0.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (391.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

circuit_rs-0.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (363.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

circuit_rs-0.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (389.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

circuit_rs-0.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (363.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

circuit_rs-0.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (389.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

circuit_rs-0.0.0-cp313-cp313-macosx_11_0_arm64.whl (317.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

circuit_rs-0.0.0-cp313-cp313-macosx_10_12_x86_64.whl (327.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

circuit_rs-0.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (363.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

circuit_rs-0.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (389.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

circuit_rs-0.0.0-cp312-cp312-macosx_11_0_arm64.whl (316.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

circuit_rs-0.0.0-cp312-cp312-macosx_10_12_x86_64.whl (327.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

circuit_rs-0.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

circuit_rs-0.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (389.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

circuit_rs-0.0.0-cp311-cp311-macosx_11_0_arm64.whl (321.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

circuit_rs-0.0.0-cp311-cp311-macosx_10_12_x86_64.whl (331.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

circuit_rs-0.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

circuit_rs-0.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (389.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

circuit_rs-0.0.0-cp310-cp310-macosx_11_0_arm64.whl (321.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

circuit_rs-0.0.0-cp310-cp310-macosx_10_12_x86_64.whl (331.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file circuit_rs-0.0.0.tar.gz.

File metadata

  • Download URL: circuit_rs-0.0.0.tar.gz
  • Upload date:
  • Size: 42.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for circuit_rs-0.0.0.tar.gz
Algorithm Hash digest
SHA256 efe03b276e92a0e5f4c99256a49e6eb308287f852d837b832bdadb180ccd8996
MD5 ae495c49b48cd00b985835bc79960043
BLAKE2b-256 0d42ea922b3b1cb75f8e74eb40f71f3fd95decc52007a2f8118d28f1aad3ca21

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0.tar.gz:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 192f4608fdab54f3ac480debb7e0da49f26beb06cd178e833e6a9f55a36bdabd
MD5 8e1785e82f54f527d2a57c25fd46f1ca
BLAKE2b-256 9267d16da9819f5662e48b68e223a2757e0409db0a4e48315853bb93fa8d3162

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06d4fd86a4113ce0b73459259648dc7bb1d6972e122bed137f5bd7921ec2a8c5
MD5 dc1e4193607401618f21cab53d3c226e
BLAKE2b-256 975f996b2dec4aec4d1f30750824f5aca9b2339fb85839b55158979a645b78a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70fe60bfd0d7661528b5c8efe10175d8a5e370a5dc180dcba3fe3d923f1de34f
MD5 a8695076b5404c4b77af21f634966c14
BLAKE2b-256 8b4ad3458d2562af63bec7c966f3bef7ba11eb5d6f9e358d128e751ea98bba47

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 492ed6569ce987b699f88edf3676f3106e338d3a179241c45a96c273317c9011
MD5 c15062d59c8852663ffd91049ad3d3c3
BLAKE2b-256 3bba3dbba5d1fc6ef52907b8493f5a401cd66b328ece2dcd1523f43847454b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33e1d1312ec63d3756e589d291e8b83176331fa96d4404505c0de0085feae7b7
MD5 5a29a4fd2e2bea9f5965c02120d0084e
BLAKE2b-256 263513f8acb8f730cbebef76d860e260206f2ae39b43795bde2b3b4718f97500

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94b629395a898b6a59fac0b2973c4d2529040ba754b2fb7f064c6885d50629d3
MD5 520e986a5ce2ad5058004c25014e54d2
BLAKE2b-256 896f5992e47529fa6e8ec26d4458ef89c7feaa8b0ccc276f4e24e8929bb902f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1abcadb602299cf7bac37d55905550608c716ce582b17e57dcd6dd8dcbc21c4
MD5 c41e2059c71077237c38ce8271e2538b
BLAKE2b-256 50e965bdf1acdd7594a4290988b45283c7c8362fae6aff4902299d5dab399a70

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3347bdc490419ae6ffb631cccf3b7edae077848369990a47c943f18c1a06cb13
MD5 bd02bdbc4d94bd108c4393e082190b82
BLAKE2b-256 18f0bb89cf1d6d2d9ff2ed4702ffe003ad6863ae1fca38449bc708d5b1617fa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09e95c382aed17161db452462acc5993df89021c1735061ba0ae5cc4b5a50600
MD5 a2437ff098cf2ac5ddff972c8313631c
BLAKE2b-256 36b2b29241f02d6df1522bf2ae939796325ad52a426738199cd93c3a7c7ba960

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef9550b76b6527a6dda766f971d03fa600122595eb50eb9916bcf54ff85d7caa
MD5 704a48df4b6378a34f6d6c027a0af4af
BLAKE2b-256 2e26e8530b57841e8bdf5b3ccbb476cdbccb473f362582ece0f6564b4322f88b

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73f81c5b463a88f927c3514df6343b88dd4dd4da2742859ec3999c3d5b0ecf87
MD5 27bf6e502a1b42387e4878ce926c133e
BLAKE2b-256 86f4c514b29fc0d9fafc83b5bd53635f7e77146e77c662584e35255d8f4c0ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ce6a5e01a5e54bef98306446093b312e007edfd4bb8712dcfd9e66bae8dcb10
MD5 1f79da6bf77d6b7bc1d1c62ea2ec86c2
BLAKE2b-256 34a9f5abb27810ef5a858575f36e1ed2d35df3103cb4b437238e1f7badd24e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d11a35a06d22950df636bcdaf686db6cfafe12fb6bd1d47c22e1bfdc14734681
MD5 9364fdcca3df07276a87e71cc46a5e5b
BLAKE2b-256 3bb3d504157e706d803453a78f1bf2960371223a21815b684d23c2dca8dba442

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb1c6d3665910a9b5b5189ef59a8a7918a2c5e10cc17afa0dcc21fc4a7dd2e9e
MD5 85c08a7021cfb8d01ec5e770764b63db
BLAKE2b-256 9d7d63ac9435ba16df91a09bb56b92f5cf29e3135c32b27cc4c6b10d20ab2fdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43dc39d85895f7faaa8afd8054a52997908a0e0ac8bf4458ea4e730474a6a80f
MD5 505c7cab27ae435362a9d5a75fcec8ef
BLAKE2b-256 cc8a71778d0540332c7018c136be982cebbadb41ca1c2d71077ff28bd8a55edd

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bb1e97a950f23eb8662eac3e6cdd7224a9d1b1be9b39151c3c3b5c00ff917d51
MD5 d29ee1e223c620e86f323946fdaaba63
BLAKE2b-256 1730e501b8d6e569169595036bcda0c7161b484890ba23cc3760c05832fa55ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3347d8cdaf1f283db9d889cab69d935d7484fafafa89ce94f7aa459d05bcb07
MD5 730d2574b6afa3de65481954bea016fe
BLAKE2b-256 8291b5e39aa5a799e610e7385b2c110dc9058c560bfa31013920e60725724e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d80d8dad4db6e6469b3b70714b2008a3f1a1596e213621240275968c34e1942f
MD5 3de3612f00bd2c7c12e18f53934da804
BLAKE2b-256 587267ffd3fd6c9522cac7af01455b55890c589804799beb4995283b9afbfc39

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8eb69905dd61a9dbef40091f2fe8f5b2566fe3c8d22fc080392711867d48e4c1
MD5 1b8ca748cfe0177d0b51ee69f0e249a5
BLAKE2b-256 f4d6c41472822409adef4de685c14ec0b744de2e9ec5738145113799a3f4ea88

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ecde8ea578a9a8533e5175cba948222a1d008aecf80028548ae16380df2a2c57
MD5 58ca09c2e896d526f824d4e5fa1044eb
BLAKE2b-256 a0d345f5e2b999214b8183395f11af4a5819975dbf5e4eb5e63ee45cf1a4618c

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54386525f0f2cea1c363f65013319c81ed88c006e5fd1fb8ecbe0153b29be0dd
MD5 fd142fde5bb7a87c9d64eba2c74f8a37
BLAKE2b-256 aa39756e640edfa151a72136ca37b0075eb5565568501e6dad52875ccd198ce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file circuit_rs-0.0.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for circuit_rs-0.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1af6ac9138171ae9c7c656534c8c4d0661f53aa4b8e0b0a969d926b36d2b59fa
MD5 696d9b620c8133b6d2ef28d74b18d944
BLAKE2b-256 9b68c09c499bdfddf25c5657177e996770f8a65de0a721f76b79b02669732a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for circuit_rs-0.0.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: CI.yml on oahmedlab/circuit-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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