Skip to main content

Approximate Cholesky factorization for graph Laplacians

Project description

approx-chol

Approximate Cholesky factorization for SDDM and graph Laplacian systems.

This package implements AC and AC(k), porting key algorithmic ideas from Laplacians.jl to make these algorithms accessible in Python.

AC(k) was introduced and analyzed by Gao, Kyng, and Spielman (2025), "AC(k): Robust Solution of Laplacian Equations by Randomized Approximate Cholesky Factorization" (SIAM Journal on Scientific Computing, November 2025, ISSN 1064-8275).

Install

pip install approx-chol

Usage

import numpy as np
from scipy.sparse import csr_array
from approx_chol import factorize

# 4-node path graph Laplacian (0-1-2-3)
row_ptrs = np.array([0, 2, 5, 8, 10], dtype=np.uint32)
col_indices = np.array([0, 1, 0, 1, 2, 1, 2, 3, 2, 3], dtype=np.uint32)
values = np.array([1.0, -1.0, -1.0, 2.0, -1.0, -1.0, 2.0, -1.0, -1.0, 1.0])

laplacian = csr_array((values, col_indices, row_ptrs), shape=(4, 4))

factor = factorize(laplacian)

# RHS must lie in the range of the Laplacian (sum to zero)
b = np.array([1.0, -1.0, 1.0, -1.0])
x = factor.solve(b)

Configuration

from approx_chol import Config, factorize

config = Config(seed=42, split=3)
factor = factorize(laplacian, config=config)

Low-level API

For direct control over CSR arrays without constructing a scipy sparse matrix:

from approx_chol import factorize_raw

factor = factorize_raw(row_ptrs, col_indices, values, n=4)
x = factor.solve(b)

API

  • factorize(matrix, config=None) — Factorize a scipy.sparse.csr_array or csr_matrix.
  • factorize_raw(row_ptrs, col_indices, values, n, config=None) — Factorize from raw CSR arrays.
  • Factor.solve(b) — Solve LDL^T x = b, returning a new array.
  • Factor.solve_into(b, out) — Solve in-place into a pre-allocated array.
  • Config(seed=0, split=None) — Configuration for the factorization.

Attribution

This package ports key algorithmic ideas from Laplacians.jl to make AC and AC(k) accessible in Python.

Laplacians.jl is licensed under the MIT License.

License

MIT — see LICENSE.

References

  • Gao, Yuan; Kyng, Rasmus; Spielman, Daniel (2025). AC(k): Robust Solution of Laplacian Equations by Randomized Approximate Cholesky Factorization. SIAM Journal on Scientific Computing.
  • Gao, Kyng & Spielman (2023). Robust and Practical Solution of Laplacian Equations by Approximate Elimination. https://arxiv.org/abs/2303.00709
  • Kyng & Sachdeva (2016). Approximate Gaussian Elimination for Laplacians — Fast, Sparse, and Simple. https://arxiv.org/abs/1605.02353

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

approx_chol-0.1.0.tar.gz (67.8 kB view details)

Uploaded Source

Built Distributions

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

approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (521.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (550.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (598.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (483.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (344.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (324.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (332.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (517.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl (546.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (595.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (479.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (341.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (338.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

approx_chol-0.1.0-cp314-cp314-win_arm64.whl (181.9 kB view details)

Uploaded CPython 3.14Windows ARM64

approx_chol-0.1.0-cp314-cp314-win_amd64.whl (191.0 kB view details)

Uploaded CPython 3.14Windows x86-64

approx_chol-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (520.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

approx_chol-0.1.0-cp314-cp314-musllinux_1_2_i686.whl (549.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

approx_chol-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (597.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

approx_chol-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (481.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

approx_chol-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

approx_chol-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

approx_chol-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (341.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

approx_chol-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (323.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

approx_chol-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (305.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

approx_chol-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (330.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

approx_chol-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (283.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

approx_chol-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (296.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (517.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (546.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (595.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (479.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (341.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (338.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

approx_chol-0.1.0-cp313-cp313-win_arm64.whl (181.4 kB view details)

Uploaded CPython 3.13Windows ARM64

approx_chol-0.1.0-cp313-cp313-win_amd64.whl (190.7 kB view details)

Uploaded CPython 3.13Windows x86-64

approx_chol-0.1.0-cp313-cp313-win32.whl (182.5 kB view details)

Uploaded CPython 3.13Windows x86

approx_chol-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (520.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

approx_chol-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (549.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

approx_chol-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (597.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

approx_chol-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (482.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

approx_chol-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

approx_chol-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

approx_chol-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (341.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

approx_chol-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (322.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

approx_chol-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (305.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

approx_chol-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (330.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

approx_chol-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (283.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

approx_chol-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (296.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

approx_chol-0.1.0-cp312-cp312-win_arm64.whl (181.4 kB view details)

Uploaded CPython 3.12Windows ARM64

approx_chol-0.1.0-cp312-cp312-win_amd64.whl (190.8 kB view details)

Uploaded CPython 3.12Windows x86-64

approx_chol-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (520.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

approx_chol-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (549.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

approx_chol-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (597.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

approx_chol-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (482.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

approx_chol-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

approx_chol-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

approx_chol-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (341.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

approx_chol-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (322.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

approx_chol-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (305.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

approx_chol-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (330.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

approx_chol-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (283.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

approx_chol-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (296.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

approx_chol-0.1.0-cp311-cp311-win_amd64.whl (189.7 kB view details)

Uploaded CPython 3.11Windows x86-64

approx_chol-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (521.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

approx_chol-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (550.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

approx_chol-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (598.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

approx_chol-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (483.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

approx_chol-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

approx_chol-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

approx_chol-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (343.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

approx_chol-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (323.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

approx_chol-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

approx_chol-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (332.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

approx_chol-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (284.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

approx_chol-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (297.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file approx_chol-0.1.0.tar.gz.

File metadata

  • Download URL: approx_chol-0.1.0.tar.gz
  • Upload date:
  • Size: 67.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for approx_chol-0.1.0.tar.gz
Algorithm Hash digest
SHA256 85e1e34502012befdb65521977329a9b6bafab24463053a9b1931096569d8eb0
MD5 e29824f81e931424d19d055291ad19b9
BLAKE2b-256 106ef27bf3823cc3500b763880dbf0750d572bad4e32792ea4f45af1db3289fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0.tar.gz:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 502d6f8cc4b5fe9284340d1131cdbbebcb2b100d036a303587d82de4546fd03c
MD5 577edbe6ab9d28f48c2739c02d45402f
BLAKE2b-256 9068133370e1db940163ee7d2bbe9318df40433fec658811e9e1d0d3b3b71589

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 661280e0514b8ec02162e50b1d74ffbabc21583e2383bd2e680a327b8ae27e2e
MD5 ebdd2d28bcbd097a74ba5433ccae49c4
BLAKE2b-256 3044800f6a9eb6f80ed999505b22aa372099326c97032dcb7c216bba67fc74b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b82b4dccacc7f4e35d974c71a4bf865231463c8b20e3f8dbb0c50af172c35b85
MD5 62f9028360df1ca2796d4cf523d3eca2
BLAKE2b-256 497ba28669802e25b3806544ba9b42427c2a87e35edc7b9da91e706a9b3f3aea

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55dc5b3b73829eb5290fe6a899e4d6b4a2c1b4d47622c4d1a24bf37eb9dcc8c6
MD5 bda39d869831b9b25ebb7b6edae0d3ed
BLAKE2b-256 0ca68b99efa735e1dda210fbf12ddfb16232e079c3eabb12ec0f38d7609afc30

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a8816d6a04aacedbc8ce08c07fceacbdf330fecab543f30820696780f1d29e9
MD5 cb54a159248cccdadda9f84e15770489
BLAKE2b-256 940bed71a3ffa2c82b640d216113ab70db2c04797d571144e4136e9c28567b44

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21754e6dbf5a71a06b846bc29dd4b899838ccae2ee55c7bfa1a92287c456b0eb
MD5 47548d2a4c66b2574ebdf5088dbe5478
BLAKE2b-256 2f5dd77ddbebbc48dc7f19fce2472e9fe7cd47e6d0751f4a4351962e9eaf81c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15609749be0d6dc1ea5f11848bb380093ac2509d1eb2f9ac911e19977b954759
MD5 a8ea58edd456012cb05b7cd4638dfe29
BLAKE2b-256 66311aadf64f5285f2ecebf97260ad17b242438b3e720e1485925057cc66cce4

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a02618cf401c4d82a34ce8a7803b7b3379b6201fe36d48b7daf00496f1eba61a
MD5 3ad457d21c3b60eb3552891268b6a38f
BLAKE2b-256 057b1219f6b6044b0dea9d28036cbdf6772aaee411bb87274a4488a1258a068c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42d51fce565cc039cf6726f2f41a2a6c6d158483c7fca87b905b7cb9fc8d57ba
MD5 db0420b7aee64f187d705901ebebc655
BLAKE2b-256 da2224a9db943cd7ff32c2864a276bcc4de2f854aab3dce168105f81e9c450c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d7cda47a69e922d6eb5eb0b92bfc6ec0ea876ae9dfe714808712f68f87c73cdf
MD5 33c292b66e8860819ec376707d54f21e
BLAKE2b-256 7fd2802aad00b8fbc9e11380dd7d8e0fb0e959c3ca0b2297e4321e8c52e2dc6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eee3ec0324a4fe9b851a8ece541f1c32ccfb62dd45a6e9b32fcbf68edce73905
MD5 1f9b0ced14b9ba0b8dce7d3d1a017056
BLAKE2b-256 4098d203910989231b9f6d05ad61b6d46ac4f6d6107e74a85503a7241c466b4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b94f86fe77cb1f0fd596095b22816ac5135a6a489f836f218890b2683ec09fd8
MD5 6733b8e30d4a68d545f7415621956cc7
BLAKE2b-256 d9bb2a9a3669bd87d98b027f1f2f534f9b4170160119fc3614b39499f105b75e

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac364fa13b0993d3d5c407464bcdd4f2638b1fccc781511a3f54ec95fe36561f
MD5 1fc6db5264100bcab92dab891d278875
BLAKE2b-256 f06204916bf7aaa0d52e7c666f9521635401db907e8d909f1de7029c2f65d33a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 140cb24e8b603e2f522af1ee274bfb4a7b38cb6e8f4c5a000d65da01e078ab12
MD5 0e3cfdea4195ef8e79f49d6b9e034d91
BLAKE2b-256 549e842a7f37fa0cb9c8321b3e0744fed131d5884e306fec6a1c0fc5b04b34ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 916a2b5d5cb06d9e7d581cd984be95ccad3a1f5954367288d3efc277f8b36cc8
MD5 79381bcc325dcf07564fa6ceca548777
BLAKE2b-256 ad8ff03b7ec1b307997bc45d556c269c896cee58768a6a1deb4113f82e2a9d2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe3703df60bd396aa1b89e643587967e2ae07f745aaf11af3d7713b159aef861
MD5 d823a89d14406a199d6e4a24a1996c36
BLAKE2b-256 b63b999cf55d0443dad1a22cf9bc416fb1f250b541d286464dae04de9e12ac1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21d306d732c0e6fdb5915f1b03f0367dc055502ec40586de03a75a19f81aa561
MD5 b6d59993dc086976f10416044df109ea
BLAKE2b-256 c10d7e3365cfbe2a576c15ffbe67213dab8a6e26e8a79bbf4b41f0af879e35c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62dbb90af67ce7e3c056b938418aa6bef66abdc44a5537def7f0daa7cd6be880
MD5 0af8bea613b06666179f3c6ca9df8011
BLAKE2b-256 9b322bf2eba3b1f7dd99db16151571f69ba3f67c182b3764e434c3f67756647f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8b768e665a76df54805f373dcabfb0cca12b88281e6b7128905e9ee5b639ba48
MD5 9883b0cef5d93f3e2dabb871fe5621c2
BLAKE2b-256 e1d054125815fee0182821c41363b784a56317a04e104e54c390c30e87c6e29c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: approx_chol-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 191.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cf054af26098dc307de66bd3f6c2f1f50b9ce0b988dc94548bcf1a6089fd30bf
MD5 3b3102d94c27d3a9bbaa0390bf33cc3b
BLAKE2b-256 0f7bbc8802d65b1d29d65acd09aac1ca85b92dc176d9315eb7875541a5f4416c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe101f3c294edfea5a9151ee96d2561863a4dad3fc00ddbd1b3e730d3d4833ca
MD5 00010933803d6a4203f84befc027c70d
BLAKE2b-256 aa3e5a578a3515eed81602f3e89f343d17eadd6124b5239fa53fb78ee02732cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98bcc3403ff31c6a6041985b2dea2c8a46999cfc04cdc98765c3ce13d7dacd96
MD5 58b768b564691ce35424a1770111200d
BLAKE2b-256 00c2b352ef4277de1f7f459c15303a0e562bbd0a8cf7069c4fd34c51e4b83e16

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbc6ecd2163c1f71270c829fb5aeca99a45d4dd1698d0c73724aaf5ee662f8a9
MD5 738c3d8e95e4407922c385fc2764c03f
BLAKE2b-256 47b89fbe2b8613469120cb1c372481944d091823c033ff8179dacb7227fc1d82

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 429f4c40aca4da6a5c3933b2eab4dade90e9f33e895d3287ccf706656fd3fa9a
MD5 94fc6236c299734c0720cda54f6d6585
BLAKE2b-256 6a4c744c479772978ee0d3d12c293d4f154654ce2582754fccdc2de2226175b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3130ac77e454540f74bf9531808c00b5317feaac9988cbddf16e96974c90526e
MD5 9dd90777068bc3c2cdf7dfcc2845069e
BLAKE2b-256 1e998110cdc1e4fe084fd49b5f4afec456895eadd313e747484559240816c20c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6af52a950314f32bb2c104e9c55f7a734227d74adf03d582050bfd4e19f57f8
MD5 c1a1d9022ff611c68175527b6633f4d6
BLAKE2b-256 99391cf0581c9e3f370622f245ae7e7b11fdbcdce8e604257fc5a6b579cccc29

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa1fd93d7463390b1a2f781ff8499ac1680a897fc03d40c93d791e6490734962
MD5 8e1da2da3c408de35839f68394530f01
BLAKE2b-256 a7cbab6da1c97b75bea157b5e492f7eb33a73e0c2d2df074c5b29c3c19c27641

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b50203adaab621f86eac429eca0d92e0532740b6284ce76435d29a9b2eb25cf
MD5 03a20430549140548e973dd8bed6fcdb
BLAKE2b-256 1c94147f7b9f1f9ad8a591502ce972d32bbe55b231af5f259bba9a71cc2418b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68d7049371b0c47298879b61ad839dc1197213f85f1093ebaffe6f9ea8de5bee
MD5 b001ab1f01971ff33d041144ab687688
BLAKE2b-256 f183c5abd486d5d8cbf0642b77e7d1cac70fc5c2d7f81613b8e398387b29398a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4707804feaa6befdc9bd114baf7acde0e7af4e2f99a6f73d9739ef6293486fc1
MD5 b799ec6667fbeb1fe8f10335b2b1b576
BLAKE2b-256 4c692c697d494efab422a18a2c15e3d93fd1f33c5573ce2edf11f03e83eb6343

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 befd88c4bfd5182ef95a62ea2a24b56b226e9c6a01936b820f7bf3c8d15eb4e8
MD5 6efead8acda314fc34308204bf5daa4e
BLAKE2b-256 e89652073397ac85acaa0ff2d43feb7c9380c60a8dd897489c20bdb94097a43c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61ecc7d41db5c82cf0cb8eb1b9cd01db85bc20431fd1df435df093f008fc48b6
MD5 104805ca3da127f00d0fef3e8f7e24d7
BLAKE2b-256 21f9ef078a03334297a8d2af29b01619ee6d2d109d402034adf21384416f86f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c56dd54f05dd8702d702f99bc1a81e56e406b8a2e68f4559ebde4b7dea4674eb
MD5 be50ca0ddc89c6fe9cbac4e43a079508
BLAKE2b-256 6f0ebf03f5b1b6f687d53937c5bf33c338c7b09c428cc14246d2f87b6bba34f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75c741d3e82d6d4d540ab5bca21ea1efb358947eb460975835f0ee0488d05ee7
MD5 5ccaa0cb9de7e0b859585c884c9c82d9
BLAKE2b-256 c26bc281ba0ef26cb7012ea24850c4acc2d617d34526b48cc04ed4fb6480f0c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b692cb1057bcda3db23bf35ffdf5c3f56efe38920064d41ef9cf8d1b802065b3
MD5 2ebacdef5d794d9bdaec113396ef6eb5
BLAKE2b-256 f28602085078bf52dcd5fcfa823989b5d95304940e98aa1b7a76e61c3c77df7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e59b669f02d4b197a20a65c98ebac84ccfeb42138bf1fa8b0b2fe6db4f3a07d
MD5 6641bb85a4b44b97c58a7257505b9b46
BLAKE2b-256 ddcf2c70b07446e597803fc36cfc165c33ba06b97db94d0f6a33fd84b61deafe

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 643b9c3df2610304b61b2dbd48f83498582cd06647321d928eb617a44f06677a
MD5 8fccb4968060fac9e8360cf78a2f945a
BLAKE2b-256 acf0cc654e6f21af9e1dd1c2ba7847e3399522cdbb4a149655dba9de50c6bf93

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81705539f48dbed8cf329c99ab1a1c3eb1eecd6b6c646c31269b9865ba3380fd
MD5 2f34c85a986bd12b9e3fb25564ccc0b6
BLAKE2b-256 4bf33565daa6b0591f3b3b1580b0ae5a7afaf7ecfb5b83b9c36b3e572604348a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa84766a70a700923bd5a71ae5d97069725b32d8e8296b32670a30ccf3f13695
MD5 f41fa8dc17c0fb85d75499ec6974826a
BLAKE2b-256 79189295c1fd353d5971bf961b38b2fcd8cf7755e3ed905319741270c5ec52a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efcbe4137439f452d2520be5d7f8c37fc73b65349036d74b763fd6528ec01bc3
MD5 2a534f47ba0d7e6c8eedefa6be3e768f
BLAKE2b-256 eb868edf40e98c92339439008d0ac4bd50e1491d22c1b1f9f14180d1a3f63103

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8e844e165b3ee59b65821d8643b3fc3cea1a29e073790fb5ca9939d7e55816de
MD5 0543de2812b0381f33d04a8f4ca1fcfe
BLAKE2b-256 f13f7c0b52e0ffe7dd0a71de080083023364e00895c814fff2dd2a47d7bd8d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: approx_chol-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 190.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 80fcd4b0bc2ff42c1ebf07590fed17169c98244d8f4607352d3dd1746ceab137
MD5 f783898198cbc3e33efb138ee6f7376a
BLAKE2b-256 d0b40e7276c665487fbcdcbc62bd25da8c968bf51771ffcdd11432ae3ac96429

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: approx_chol-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 182.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3f76aabfd0acc47a0b9dc7d00949fc642dc6dce036d475b968bbc15a66fcd1af
MD5 3f1f505443b37ab9816ef8fd65186abb
BLAKE2b-256 cdd08e7296176cb1c12df1150372bd1d1dfca6359e96e215eb1491c060f9d455

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-win32.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21292bcbf73ca72ebbc3d107d05e2fca917f049a5ab6ae7896375fb6b7f61fe5
MD5 b506f95ded5c24169fca9bbc00444b23
BLAKE2b-256 8b413f6228fc2d69bd2e7100cabf4cb8f8365617669c1b657585f07e1836d846

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4589f8979cd137293b912e99197da34ed3e1a48a2b937c5c3c1895432b320dc7
MD5 644d50f3e54cad78419c503e53fda562
BLAKE2b-256 0f8b5712924e53ee41df488bfe5ee3cd3e057999fa2faf376283f8e193399d8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ece2912588ab793a33278e47ffe3c2199afcb3249c879adefc02b2ff91047026
MD5 366fa3d1e17f51667cf90f80b39f1899
BLAKE2b-256 c980473e95eb8f36039701e532ccfe5f8a61d63533eae6e23665f6c1f0095644

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bdf36260d985cd41d0f59e0eb24636e31a9bdff815ce0b3775078e3260d990e
MD5 eed549033bc66bc071ad1e0833595c6f
BLAKE2b-256 c931a4070f8f47917ff4546e77c35189a61541ce49f3f7c29438b1bb2d6342f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71970ae6176e679d9f954b43756488cb9e5e7c345a2379b7deb99efef17a95f2
MD5 5d6cda177ca31a7c6294b2245966ce68
BLAKE2b-256 192e34c6227d044b1ee0fa1f19dae20598a15bb73bfeb1b3f617dcb731d98225

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 39a5f9d6657d4ce0f596e9fa3359cb7b5ec69e41e50832f904f566acc8bc8673
MD5 887212fa295b01b2529b6d1bc16f95a4
BLAKE2b-256 434db5c34e2cd093605ce8804c4b32110d4c6c56ee5b7adbf9be9e7df3a77a1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c74cd7360c4ad34ca7e9ebfcec2be171c0e1ed8fd97854fe55209cb02317756
MD5 da6baf2a6330340da5c412a66b681809
BLAKE2b-256 73afd4df300597c76dcc84b1a91e0c5aad3fb1cc792a6295aab91b2039f80a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f483f91b5fc5ef1a5092a266838bc2daf8482c1ec29af90410f225f936855e0
MD5 7793a7d9f294f2454b031f61afa81a51
BLAKE2b-256 4197f7ad6d8178ba1617f035ef17131ecc75da57691418269f1792eeedd60c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32f555d928f312e8fa64e9ae6227cdd2b7fdb7dbeed5b1a5754703650c5c9ba6
MD5 c9980c098a511452e28e3d0ad67c37f4
BLAKE2b-256 27e5e16130905d3fab48c8fe7cac0ec15f926759290d1d8b762090b2cf55005f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f04f582bb82012ad482888276daaf704a2a2d5087fabf19aa67fb0f6d7db6807
MD5 4951701002ed8ce6f5c0851cf33f7f48
BLAKE2b-256 ab7e44ea8cfea8dcd15083ee61cff8e18ece920c060fc955deea5ad679d3e77a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c84d3e8ba7c55c6077d513087920112ba33dd46c7f15ded0e582888f378797d6
MD5 f14bb5f231dbdec9a4467b1c16d1d537
BLAKE2b-256 b0d16904894628dbcaddcf51f5be6f19a6ffe9944161d97db24d80562cceafe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ee51488e8f24977c1153e1705b65e6685304faedd4c3affefaf74e72445b204
MD5 88a1182e9c126c1a8c790a7c78c667fd
BLAKE2b-256 be4ba6edecbe813dbf5756e9a7bea323d5b1b30780a0202c824384eb218a8eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6d3edf595358488fe22129702b671908645831bb61d1935595adef9539693ce3
MD5 6005ef803cdf9973d240e1f4a441780c
BLAKE2b-256 073568f162fb6a2e8b50545f2881d48ecc35f8c5d4759d4ae865101336696106

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: approx_chol-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 190.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 097e7e2d4e0e9615b9d0701c02f60e9c5224deaa93eae0c497adbf04522abea0
MD5 1f35d4b553fc30a42a4c7e5ccefcff4f
BLAKE2b-256 3b7eb29143efd15288bd5cbd0398734ea7c74cebeccf8115879c4cb38c5613f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6cdafaa7a65850d5771eb0fd5f41ab6e749b4a0e63925bd72fc94c6da208c8c
MD5 fbefeedb6af6ed44bafc968c015cb6fd
BLAKE2b-256 97e8434f43804c4acc4a25ccae8268fc9a77637c4e86aebb4454f8541728e24c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f170f7ab4cc6a61314efda39efb5c60e1464856900d0cc4c865f1209a146350
MD5 abdc0788db8030a704b7d3199ce8b8c4
BLAKE2b-256 b782e7d1bbbeb451219415a6dbfec010a0e4c04822355110a83cc1850c67b493

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97c2ad39d506c59cdcaa59c784f01974195fa08409988cb08524304f9a67e791
MD5 580b3ef1d874945b6e52ad166726bf32
BLAKE2b-256 872306cb398801b18aea872211fd818226ff285cc16d5a3ff9c18da6b257ac1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9928312b77d69dff5752e0e37c34da0d9456ffa6821731761aa0c47b91cf02a0
MD5 da004101ef663519f7b2c0d4f551af78
BLAKE2b-256 10f55f42f73362cd5bbeeb445c15dd0de75ff8aee8d6d96d945f806e5468dbf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c583d580077f7fb06548e8d9421880a7dde821a7109e4cb03f6c0cfec5b9352
MD5 963bf145e014bcc8bb50d35dce01fd71
BLAKE2b-256 b96f5c65fd5d9847bb3803dea09d96759b9401cf16692ab5ef66333af1acde36

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49bfd34c48e972da066ac3d636eb36de5d0b6c8d32cd3476257fced16079b322
MD5 aa5fa1ae60fb39d2182d7ffa2ec85a93
BLAKE2b-256 e7248a49c7ac283c8557be79b6018e7cd6916d409849da87b941dec5f2ceb86f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75affaad425f0438242e9b85c01c6e4458f25468091f03a3507b25d95e45515d
MD5 de8061e2195cd072ba5d74340d10387a
BLAKE2b-256 267883cfdd608d22ce1df9a96785e26ea59e439d365379cb94a0ed86c51901d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d26c25ad461d73effadabdad245c3d03c4712b287846e86567dda825c7e882cc
MD5 ad25a154792512318133338c2bb54f58
BLAKE2b-256 80d8f03e16118b9d0c6e28f32f986b0b307552cc6835711a4704d118d0bef575

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ec93ae2b0ee5c835831bda75df9bc8fe0addbf0d8460e9cb24aced46176b59d
MD5 f189f57006bc48afa4ded45587c1fbfe
BLAKE2b-256 1ecb27018be1075a50cbe6ad77f8f05e868bfc1ac1e54fc83154a367b6cd18d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65cf134d0764c64cdeda98edf83ee6a3a51986b6358ee97a4decfa72fe3fcdef
MD5 8d37eaa43162831a1a10c6258ce8227c
BLAKE2b-256 0dbf342be913d9f271e060a5d9335b5a0d67519f57dc8698843d5c3055993eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2ba6a26b4607ed7c38a59c653bc221133c9c26023482f23c3ca76cb34173af5
MD5 a2ff647120c2a6fc098ac335215f5133
BLAKE2b-256 8f559d6f1c9d38c102f9bee813895f78bfb626eee5a2e051d921c9d14e1c5332

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7593c713db99d9c84573ea58318e58b024d2fdefd38352930e3cc4dbbc2923bb
MD5 a697d71c928d731edfdd0994c15a1a3b
BLAKE2b-256 94182b9498f0ad38df2d5a559363e4e8366705e28ffaa03a7e79673e7fadacfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: approx_chol-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 189.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b4b28b7638647849ddd46c5b09ccb9fda6a6b79a671147c519bb128196ff9558
MD5 69795ef155b010eaa81fe4c344dd537b
BLAKE2b-256 a6f50c8be301f99e41572a6d8e484828b160c1e3d18d0ef140fbb4a638646624

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a52b7ab9b787a05b216b878ebdda35fad6a7684efea6b850f856e5e65896376a
MD5 6446a30c6d5950c0cabee11778a566bb
BLAKE2b-256 767707bb3d51555453c44abd1e41b5f0a4329361cc276e91c73908ddda77794f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a6a37074eb961a2105cd3bb102cf330dba8c61a8505c26f9a87d696054bc748
MD5 d8c9fc80f02abae912fe020309da29a9
BLAKE2b-256 6e1e81028857580a3769ddda249be9844b8c38b047457a90ddfbb837e1dabff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c11dfa2990882932d8e1226645a55378eabc4f519aba84ccfaa47bd12d7466d7
MD5 8b22dd93355b5c5c8af04d45073c408a
BLAKE2b-256 fcb90b2d6b40bf382b6ec6549d176d5fc8a826f1a703dd7d4d7cf911faec174b

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 390c8bf3262b5bde989f3b5834a3faf529fd6c87c76af3c04542e8c43149721f
MD5 3f146605f35518bfcf4bfc684d553418
BLAKE2b-256 f8f5bd7ddd1768d2624f84570dea7f286af44ccb9766744312dc5ccabf02f944

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5ac34bc2691820d9fbdaf848d9945e06aee30a14ef5067ec6bdd7f801286a16
MD5 b4151019466c595e3ea8d9f8148a5249
BLAKE2b-256 d4a78decec0c71892dba318e42257d747c5f5b4a090a2f1116650292ed28ebbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2097f105a4013270ad691c1e98535e5f19f013b81f5e6ae91691555cdebe6ed3
MD5 c19c9fe1fbdacd98e42a2632a03efb80
BLAKE2b-256 4b6b3e1be91a71b1d9aa12f1e73f975c65a9064c027d430ca81ce70d6efc9bd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b7d3c115cf85de5ceb5618fafe4f9f9f41243f71e710d7dd9847ba7b02d8093
MD5 ef61a91843cd97e40b4ef4603089f38b
BLAKE2b-256 ee8b3ce6bbc4dcfb0153708ab625bfd521765968023d9ee4e49b37340aa17dff

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4dfc8c8fdd2a05de0eefa184fb72018059da41718c5f99cd728bc5021d838a32
MD5 67046afdaaf3aa9c3b2ce2869d52693c
BLAKE2b-256 5a3c3f20cf3861907379ed6a8a7e8f3c8329fc2f8dd49f59754252afa9ea7ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfcdb915e41d7a497ba021979b68ef722f14fd7e96d48ab9a80f281b318efda6
MD5 c009d4249f7644579053efa701d64ad2
BLAKE2b-256 6816339ccc318a52ef99707e4b97518a2f4c9d941409928e0c9bdb5eaab744b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4e3ed496023b5e36b5f31f127c83298af7c19d8b7bce88ca390235e60e76dbd
MD5 e87cdad76971f7f269d94fe233640b4b
BLAKE2b-256 336f3f8af683ad123abed145897ee95d5af3b2345af824b67a712db1c8721c27

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0ffb09be5a3e439e15abee2aa7d884f01dc80a337de9ecda1407a959d8a1af9
MD5 03b0827e72cf4e5d90f554b7d8349c4c
BLAKE2b-256 3770d393cc278b0b694861781e1032b43c303f953743d352b4b68beb887ed0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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

File details

Details for the file approx_chol-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06619acfd5591fd78db719580d9524f17ed544927e26c74c6c293f2bd41ef87a
MD5 e83896074900786ce4289aa1cfe995c9
BLAKE2b-256 302953547d99d532cf02ae69143f8e3e4e86ef227b38d7811400610f1cfd2417

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on aai-institute/approx-chol

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