Skip to main content

Scalar Automatic Differentiation Engine

Project description

Nanograd

A small scalar valued automatic differentiation engine written in C++ with bindings in python. Also includes a small neural network api with basic classes like Neuron, Layer, MultiLayerPerceptron for creating neural networks. Based on micrograd from Andrej Karpathy.

Installation

Nanograd is available on pypi (the python package index), and so can be installed with uv or pip. It's recommended to create a virtual environment when installing.

With pip:

# Create a virtual environment
python -m venv .venv # Creates a virtual environment called .venv
# Activate (Linux)
source .venv/bin/activate
# Activate (Windows)
.\.venv\env\scripts\activate
# Then you can install using pip
pip install nanograd-bgriebel

With uv:

# Create a virtual environment
uv venv
# Activate (Linux)
source .venv/bin/activate
# Activate (Windows)
.\.venv\env\scripts\activate
# Install using uv
uv pip install nanograd-bgriebel

Usage

Nanograd is built around the Value class, which is essentially a wrapped float which keeps track of calculations it is used in so that the gradients can be calculated.

Creating a Value is easy, it just needs a float as input:

import nanograd_bgriebel as ng
my_value = ng.Value(1.0)

Then Values can be combined with simple arithmetic operations, and gradients can be calculated.

import nanograd_bgriebel as ng
# Create some Values
x = ng.Value(2.0)
y = ng.Value(3.0)
z = ng.Value(4.0)

# Can add, and multiply the different Values
a = x+y
b = x*z

# And also raise them to different powers
c = x**3

# This can be chained to build up more complex expressions
d = a/(b*c) # equivalent to (x+y) / (x*z*(x**3))

# Then the result of the calculations can be obtained through the data property
print(d.data) # Output: 0.078125

# And the value of derivatives can be found using the backwards function
d.backwards() # Calculate the derivatives of x*z
print(a.grad) # The gradient of d with respect to a
print(b.grad) # The gradient of b with respect to b

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

nanograd_bgriebel-0.1.2.tar.gz (44.2 kB view details)

Uploaded Source

Built Distributions

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

nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-win_amd64.whl (101.6 kB view details)

Uploaded PyPyWindows x86-64

nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (151.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (97.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (106.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

nanograd_bgriebel-0.1.2-cp313-cp313-win_amd64.whl (103.0 kB view details)

Uploaded CPython 3.13Windows x86-64

nanograd_bgriebel-0.1.2-cp313-cp313-win32.whl (86.4 kB view details)

Uploaded CPython 3.13Windows x86

nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (152.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (134.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

nanograd_bgriebel-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (99.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nanograd_bgriebel-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl (109.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

nanograd_bgriebel-0.1.2-cp312-cp312-win_amd64.whl (103.1 kB view details)

Uploaded CPython 3.12Windows x86-64

nanograd_bgriebel-0.1.2-cp312-cp312-win32.whl (86.4 kB view details)

Uploaded CPython 3.12Windows x86

nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (151.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (133.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

nanograd_bgriebel-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (99.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nanograd_bgriebel-0.1.2-cp312-cp312-macosx_10_13_x86_64.whl (108.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

nanograd_bgriebel-0.1.2-cp311-cp311-win_amd64.whl (102.6 kB view details)

Uploaded CPython 3.11Windows x86-64

nanograd_bgriebel-0.1.2-cp311-cp311-win32.whl (86.7 kB view details)

Uploaded CPython 3.11Windows x86

nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (151.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (134.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

nanograd_bgriebel-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (99.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nanograd_bgriebel-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

nanograd_bgriebel-0.1.2-cp310-cp310-win_amd64.whl (101.7 kB view details)

Uploaded CPython 3.10Windows x86-64

nanograd_bgriebel-0.1.2-cp310-cp310-win32.whl (85.6 kB view details)

Uploaded CPython 3.10Windows x86

nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (151.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (132.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

nanograd_bgriebel-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

nanograd_bgriebel-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl (106.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file nanograd_bgriebel-0.1.2.tar.gz.

File metadata

  • Download URL: nanograd_bgriebel-0.1.2.tar.gz
  • Upload date:
  • Size: 44.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for nanograd_bgriebel-0.1.2.tar.gz
Algorithm Hash digest
SHA256 02679cc93f87931ed78c13672c5a440de33dcc0ce6a7d055340fcb51d4a29650
MD5 d7463768bc4e1d3025da12188d6a341b
BLAKE2b-256 e09a446da48c79a9b4b8a9af7ea37f6359132ea76dd14439695a05ca4eb77687

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2.tar.gz:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a25972ab34f1290bd0ddd73e52079292523fdc79a4ab850f7f136ed10fe111d5
MD5 38262ba6270a2f45840e5901f6189a80
BLAKE2b-256 a34da10c040f4cd5938005cef9df08e1300320b7293bf30a3399cc2cc0c49286

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaeac968433fcdcebb111581f7eba5b4409f5d8c2bf0f54e9d48e77c7befd49a
MD5 d064526ef44c2a09d8489437070093ea
BLAKE2b-256 7426a37ec59205b3534dc1c3f6038c031cec22a4fcee9fd705473230bbf5110b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35b1037d87913d6c0e983d0ef36718ceb683b70faa3b22374402ca9c99feeb73
MD5 851a9bae7439f497f23b9ccbc670f4df
BLAKE2b-256 c084960c2cfdfd2698df0922ad362bf043b3e3863e33279cd334fa210deefd02

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebd570e1254d250b2ae72b5c0e904861558fbf940ed7aedbb901d92d70c57771
MD5 64b751e2ba31b0bad7f2e50c73307cb7
BLAKE2b-256 d564374b75895cd9afd5855c1ab7f0d7ff4293fb47d82362e06cb39ae46212a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7c9a11536b205d06decba5ac68cd88ea79452e75aa702fb8a31371d042dc133
MD5 91d1d26705a8465114349594d1cd2f06
BLAKE2b-256 0eb5202b57037195430bb8f1f7c236423583e1119f239818ae5af1f388aa1be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e93354001da7f545bf9364c5e3e6bf8c2378dd81c5a57c5239a8a176484ff6d4
MD5 8f43b78022ecc14488c9a4f16861207b
BLAKE2b-256 1b0f767cc9378f0252b64a18647588f99df3c380d0206d0d2a9474b74c2b4001

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8517f1300307285af985a4172875390aa62acee1024d6f7e3b9d0bb4273af0e2
MD5 b98d726053d264131e5299bb5b508c0c
BLAKE2b-256 e3d0cc278a574035dff25fc7e3a6e6c8dca3dc7455f60dcd845534d41e196819

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp313-cp313-win_amd64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 80a761f3a71b7ceb3d800c210ae9e1e43392ca06ea7b58063fa421fd099ba4f9
MD5 a5d12ef739a4ba81a9c60ed30bf6140a
BLAKE2b-256 5341242bd6d9cbb2d41c74bc2b7c70632fd80666ac507ff8806947fd764686ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp313-cp313-win32.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed157854cfae83c4b47a7da4d89208c10af597ff13ce68364fc71a65ba7eb187
MD5 8b5d6f523fea1146dc8fd10d51cba1d5
BLAKE2b-256 55141899769d4e64fff456973952e0458b511353513b2329fe9e4d08a1396257

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da4ae2e36a4764856395da7c87fc1723ad7eff67d0ec4e8495f18ef7c4ce16b4
MD5 4a91421768c14952fcc120a9bda36e75
BLAKE2b-256 bd4e23f00a1b645a44a8a70cfba599369eb59a49c6d1f2af8b704ddef44f59a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 217f98579a1512759cc37e1dafc32bb19ccc36fef144fcc43af7bdd6db56e0e5
MD5 e19f94355c4bfee5a6e4f4cba3438aaf
BLAKE2b-256 d818bca5e6a6dfb560a6d3adab7ef3502603a3be8f36d1798783d08f5de517ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a397e504429fbaad62031573440483537e0b1ce1df4d6ba22e6ddc0e90ee52ad
MD5 f5fd485ff3748a1896ae63fa3e899e65
BLAKE2b-256 f0d946bf207b1db7b6b781449e128dc40006b250574dc00113f495eb37129a82

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fbe4769fa1b3d559ba1c8546c6e027a245e73871c5d3561c5436ab511549bf8f
MD5 17e0e09f0be3896184f8535c58c5b7f8
BLAKE2b-256 9431b0a51973c43683b087bb886f3b09843b70a7242a7a0a18e8ed85d7df6e52

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23b15705b4c10a80365ab05484ca0018129299176ac3549a614c89ed715de811
MD5 e6a3796813372944829c4725099e971f
BLAKE2b-256 6aaad385c30939b181ba7e659fe7a03a0401e5f15193f6a3b42c192b0b7172ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 568dde0121bceccaed4287b7fa53e8da970503627725e230a49bf8a8028f2b4e
MD5 cd68f4b063afa4864d6e13b9a532e3fe
BLAKE2b-256 4396e04e41acaf9df796075630a554c549dbdc9e7525fba1d58c29a53418042b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 78d24bdf917757c0ce0ecb7d5dd7ae58f2c107e46478212e2eeb4ed3f3f5ee4d
MD5 f1f2cef3693d2a1d526783a1d4dfbaee
BLAKE2b-256 1fca941ccbfce3ce7f62809adad7563726e58a2747f88f6f6ed489745033eeec

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bc8edef315d70ea70bc7391e0299c965582229478c845abd2bb4d3cecb5c02ca
MD5 0b230b29b311f6bd8bab625d67b6e4bf
BLAKE2b-256 d097123ffbf173d0db9a9780a111c0c8fbf1837d378c915f14c0f8b102c900a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp312-cp312-win_amd64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 53c401a84faec68707b55eae58585fa535ed565b03bb05762507d5ebbfee67b2
MD5 ea2a67074c37ced7b692b32196f4add7
BLAKE2b-256 cb1c8018fa50193d3189759563ddf3cd130a1791c092e83af95df27651b951ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp312-cp312-win32.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16cc06a53bbb8a149b1b3caa2fbece6efb16ce90681614554135e7e699cfe94d
MD5 9281d8c25b63010bb7ca8efdb4b62f5d
BLAKE2b-256 cc723e4991dcf3224fefc062c5da1cf7106ea5f53c02d91864595ff6e03c3e39

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8ddf6a6375a91fe736f3e95994e82d1f24e6a75e6eb85d18dc84cfe1406c69d
MD5 509b3ce28aeb6c708886ebd2e5053238
BLAKE2b-256 7dea604a9ba2d519d03fc2121982d6d42678f485ba0c8642e634c70b3f77ea46

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92575e48c298fd3d4b3ffa0864c37fc0c2eeb74ce4e2ba6ad26938f11e0b494b
MD5 9363be058027b82ff42c4c7c0031c9f9
BLAKE2b-256 e4d4cff3b71a62f9733da117fa53d403a84eb5bd3272ae1ac358f29c2ab0cb71

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f82fd1c850d29e5957afcf8c95ec4d08a4f8cb8fe54ca79224f9f04aa5721822
MD5 d17dc61b93ee5918d521d2bee3b04abb
BLAKE2b-256 ab56327ee1bb0356f9c38d3b6f49954183b7b5586ddddd8a71a212ee69e13e80

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f829ee113233feb192a0edf9097e52d6e21f7163811be74b6c0e1eccd159515
MD5 cfc894d378bb0f14ec43d7e8678ce6ae
BLAKE2b-256 b079f1ecca385ddf25218cf0163bcdc64a57be5d58921c1cccf5d1c5a41a0021

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42d5981103c1df0da5cee3fc4e1df3877aab25f659dd8e0de3ff4869f687c728
MD5 0df68967ddbb3e49c059137847afcbf8
BLAKE2b-256 9b5fae048eb523ade8aa8e34976b03918dc29f84b48c6918fbb5d0c4d4880511

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76117889d9f9cc05a93ae148b199fc19f625a7801f62a930d3f4894ea079b4ea
MD5 21b6e206dd996e67adb48d8cedcafa47
BLAKE2b-256 f1b9ef0409c45f9d98ebe4a524bd69b06599e68f97288d77ff656cf511dcb130

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 48c4208ccbe7bab37f34822eed60f08505037793b0e3f1a14d22e2e91a27ed51
MD5 d6d294ce24130085ffb5a91ed03a1c81
BLAKE2b-256 a5d7245e9fb7f847c835c92cd5bc8a0959c5257dbe1744b51984548986513e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6ac397ec073616848fb42101cb4f3113d90b899285e3bc4bb61fa198b1de7f7f
MD5 e4ac669725c4b51d539ee9bc2d733243
BLAKE2b-256 287aad234b598810da47e22acdc07e15a4bd2eabd821f4302c5ca8aa452fc5f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp311-cp311-win_amd64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 aa6d503a2fdb7cf9ea0624c3550d29fd8a5b5fbd8fc971f9ffc2b5a31d96611c
MD5 e24c52595dcedbbbfc6074261e9d929a
BLAKE2b-256 42fbcdf565cb64c38ad52913e0753910911bd5db53e5f4a1c07fbd165f01dc47

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp311-cp311-win32.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56ca30df79660ae0d1f3e02351bb3c74a3f5c5c36871c5733d02ac2328533e5e
MD5 30688fb7aa967df404813cd55d6892b1
BLAKE2b-256 828f7e11c4222c9a24932ea171ef5f18904e0955c524c539afd65664d677fc88

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ba129d8be36365fed515432b9530d26c6f8060bc0b165d6b84e9b5c01371573
MD5 042995ad1d21ab7ef3cb1af9c9c0a134
BLAKE2b-256 96bace615462a54cfb5092ad14c4992cab9b91ff5e184b300445ca2ed43f8cec

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d4f6b9241070b4aa8c358e555fce8ba44e7d32249967e0f57cd092470ec1c7a
MD5 e0999d2af90164e1222e13313bb61859
BLAKE2b-256 b0d74ac5a1b3fcd625567c6e557cece572d55840f24680f5ccfda5e03042c5ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f1334c03be462afdbbaa158cca5c8392dd028afd756a632daa2b3eb9bf6644c
MD5 40764a69cf66cf46923eed39de500f52
BLAKE2b-256 d7e72874ab0c05c1a3ef1ee53cdd852738c20c581f8032b62dfe39e84d3fb325

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f34921c9e4dd1e5fd92207220bd3e7ce0f390b69201978bc79055324e89cab9
MD5 f5fb9a5dec41c856df90ee2686f5db19
BLAKE2b-256 82d0e43da1af05cb7a6b39a638aae0d38bd90e9dcfd21ed96a80f77240861bd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de0b7c6807ff0f0abce974dd44065927c057ddc8ac36ab4ccef7beb504fa31f0
MD5 8d3839e86b9893afc324a84471536974
BLAKE2b-256 d5886ee1edb86674cb90dcb04ea03c05767f267db02071b765cb5e1c2793cde7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09bd23eb44c58679db11f35afb70059ff37f147a70be9db7467e77ab38b26284
MD5 b4b2a69b9a1976585dd008dbb03a631f
BLAKE2b-256 f002f3b3a1aa3cd08154c667c88417430e826d163a5e234586529fd8c63df5f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3c9778e012a849b920a9951d8a0568e16b3adc25b2ec11e3acbf51ba3beb73d
MD5 68b43b7553912f597a2c938f12711bee
BLAKE2b-256 77465bc94dd479682155258ba0cecd73c45171e5faa18a24c9f1833fd693124f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2d3c5bd8137753b49cd5339f731252d2f7ca8be085f449f29da57a3b2e1a65ec
MD5 31d147cf25987c6d06f0bd190b14f939
BLAKE2b-256 ea3a27b027441893e38426ac437c2000e49fce2234da7e88e9f0cc52139a4706

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp310-cp310-win_amd64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ab125ad59b881fb65e80269a327590e071f7ea40c5e4c5dfb041c7fadff80091
MD5 8fc7a1c5d1d53797c4359d1393f5dce3
BLAKE2b-256 6d193ff2ee929b48e3defb2a80fb530fcc5f3f19fde85d0a1021b77f72cc6a21

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp310-cp310-win32.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 217811636264326b6d8abc8346ee02740e8f19401791ae3a5fa187f71bce2371
MD5 1efb7ac226591e93ad1bb477ef0961f5
BLAKE2b-256 e703a06c29cbbc282c3af728a30a06457290049cb7cd6c11f445550f28a51f41

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5bd1068a713dbdb7cf92bea37475b722ddfec0903c954efa72482e7125965a6f
MD5 58a9790817797e74984d4b0026ab0aae
BLAKE2b-256 6f3e589213a4d21c86249752c4a90635dfbcca1e0759523b682481f8c81a02bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8631190da119ceab2c7c7f703e5d299dcc03eb00111827e65858096a6a104c61
MD5 0da306d683731e6f41c409fc3f8d60e8
BLAKE2b-256 30627d031521c65742e0c9788dcd0965024a8a628b0e10c56b15bb85d32a38a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa8c3f46f9313059d6254adae4fbf60f436ad9102ed8adea639689960d49aa6c
MD5 d46e98153e9f139e2429b4040e9e230f
BLAKE2b-256 75cf1b515d3632d56a88ad6ea8d7133a3edaaa97c7b047f6af6163a8113d00c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3a085f3431ac480a23e96e1280a3a187d698ed2e63f9b8ad1756d1a864b2c27
MD5 9fba2b1df30bec8e2b9a40dfb6c3b71a
BLAKE2b-256 ce8e87725476705870255deb7b80eafbbda3b1a2d147bb6493002cd53407a078

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83c236862f104eb76f89bbfb1377e888d87264d37d4d8a64062cf99258f8c154
MD5 792e2e297c5e7b36a901b7c19b32d62b
BLAKE2b-256 e8598343aa614ed7dddb5472b09c2b9bd3377c7ad578c30cfc60523831dc93e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a03ea591faffb9806dfcd87f0cf6aa90ec6a79052bce7802334e450d895c520
MD5 f428d917f86b34ffc6b5eed2208d97b7
BLAKE2b-256 5331cd995d945af8c9aedd81aecf9744b22b240f211293c478d26cb6c328b2e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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

File details

Details for the file nanograd_bgriebel-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nanograd_bgriebel-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b99754d7c261742331e7400ab2b7b25a9b6b168216dbd450fbb798e686c38dc7
MD5 0aef3937da675f1a353ba204f2374041
BLAKE2b-256 84f4c70dfcf79511a178a3a318739611a92050cbf1e1554c4353a4c16b6abda0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanograd_bgriebel-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-and-publish.yml on Braden-Griebel/nanograd

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