Skip to main content

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

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.3.1.tar.gz (71.2 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.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (516.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

approx_chol-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (547.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

approx_chol-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (594.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

approx_chol-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (479.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (336.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (338.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (329.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

approx_chol-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (512.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

approx_chol-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl (542.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

approx_chol-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl (590.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

approx_chol-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl (474.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

approx_chol-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

approx_chol-0.3.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (332.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

approx_chol-0.3.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (333.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

approx_chol-0.3.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (314.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (298.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

approx_chol-0.3.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (324.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

approx_chol-0.3.1-cp314-cp314-win_arm64.whl (180.0 kB view details)

Uploaded CPython 3.14Windows ARM64

approx_chol-0.3.1-cp314-cp314-win_amd64.whl (190.0 kB view details)

Uploaded CPython 3.14Windows x86-64

approx_chol-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (515.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

approx_chol-0.3.1-cp314-cp314-musllinux_1_2_i686.whl (545.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

approx_chol-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl (593.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

approx_chol-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (477.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

approx_chol-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

approx_chol-0.3.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (335.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

approx_chol-0.3.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

approx_chol-0.3.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

approx_chol-0.3.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (326.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

approx_chol-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (281.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

approx_chol-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl (292.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

approx_chol-0.3.1-cp313-cp313-win_arm64.whl (179.6 kB view details)

Uploaded CPython 3.13Windows ARM64

approx_chol-0.3.1-cp313-cp313-win_amd64.whl (189.7 kB view details)

Uploaded CPython 3.13Windows x86-64

approx_chol-0.3.1-cp313-cp313-win32.whl (182.4 kB view details)

Uploaded CPython 3.13Windows x86

approx_chol-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (514.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

approx_chol-0.3.1-cp313-cp313-musllinux_1_2_i686.whl (545.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

approx_chol-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl (593.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

approx_chol-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (476.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

approx_chol-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (303.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

approx_chol-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (334.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

approx_chol-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

approx_chol-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

approx_chol-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (326.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

approx_chol-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (281.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

approx_chol-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (292.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

approx_chol-0.3.1-cp312-cp312-win_arm64.whl (179.7 kB view details)

Uploaded CPython 3.12Windows ARM64

approx_chol-0.3.1-cp312-cp312-win_amd64.whl (189.8 kB view details)

Uploaded CPython 3.12Windows x86-64

approx_chol-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (514.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

approx_chol-0.3.1-cp312-cp312-musllinux_1_2_i686.whl (545.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

approx_chol-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (593.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

approx_chol-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (477.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

approx_chol-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (303.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

approx_chol-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (335.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

approx_chol-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

approx_chol-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

approx_chol-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (326.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

approx_chol-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (281.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

approx_chol-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (292.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

approx_chol-0.3.1-cp311-cp311-win_amd64.whl (188.4 kB view details)

Uploaded CPython 3.11Windows x86-64

approx_chol-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (516.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

approx_chol-0.3.1-cp311-cp311-musllinux_1_2_i686.whl (546.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

approx_chol-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (594.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

approx_chol-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (478.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

approx_chol-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

approx_chol-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (335.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

approx_chol-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (338.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

approx_chol-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

approx_chol-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (328.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

approx_chol-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (281.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

approx_chol-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for approx_chol-0.3.1.tar.gz
Algorithm Hash digest
SHA256 0476676ddf2d7c71b4963d143d1cbe96cc6947b369b36da959e77b3b9f95af80
MD5 f0972c70e880dc9f4aa37da2fefa344c
BLAKE2b-256 420cfabbbe0913be4661dae98e7e0f3ecf257e160c54cc9c44adadeaa804829f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1.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.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bb1cf1c7ad6bdce73ad81f2edc763ea691c42b926fd8483b337e3db686e3e0b
MD5 351304f4d14b8dc0d17d7f0402946eec
BLAKE2b-256 adc0256ddd51c60a26b52770ff2f4c1fe5f01a9184d5291d91b210f04965fddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d24651b8d1b0e66ac31a28e62e09e1838211be4185f0c5a89a67bab3f0ffbbe
MD5 b097292cbaa9025c5e7338451bcab7f2
BLAKE2b-256 eac091510dddf563297a8d776fb3c7e0806335190b22d9602f637a66431f2b6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa936d08c22717fb302f52ac0a6f42e4c003a4b62f8d85255456bc25fd04378a
MD5 ec3283cc25c5ed8eef323e965d491b6c
BLAKE2b-256 ab98f8ee40ecb5fcd48858ef0c89e4576df7a77a82c6a804a7186670a972aa7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf55f98b8c0831892cd59dd120fd2068fab44786688fc97464f0222a9075c139
MD5 ca8b72fae9fd7e878d1aada8d081ad11
BLAKE2b-256 83a2ba96ef8e784b7aa52b21c7abfd48aa7c2deb6d482b44402416f2b237bbeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66686eef7bbaaff4925baad58849fba3b6a81366adc993c3eda5801cdce623c5
MD5 4859c64920f1f4b3bbc4a708592cb851
BLAKE2b-256 65df0039fbbfe5b2a96b18185a10b8b003d2dd4d35527fa24c7fba31ad69dbfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89c6fc44ba9de5906ee1728353310064f877416311137c23824bc6b3bf3633d8
MD5 a277f9b63570eb84f8cce237337e8739
BLAKE2b-256 5a79bca7980e2cceac511f46679504d4471d2e28269ad5fe8dbab4bc700b745c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7583bd3b2cc45fd9513afe9059c604df3be8b99395de14f3c6bafa213a936e91
MD5 c7c6db3f3ad6f62ab0cac6704c189c7c
BLAKE2b-256 d13e5b204b80ddf6507723fdaa33a713b8b719c62d35ab4cd364db8cc916edcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aef27e003ddfebe118998c6a26ed9ce13b62afa1568579185aa36cbf02bcc8d4
MD5 79f92148edc2fc1ac7dfb213496bc54f
BLAKE2b-256 223e3af377726595bc73d4300f0d46103c69276d95017a955c04ee1b54436d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e66e908be6dfe0a6b712e3ae3f139887f87dc790776c0d4f6310ceba38b4bcc5
MD5 25ab05fa17e35f49b4e77eb7ee186b94
BLAKE2b-256 9d1e3876a332a8938efb4c04c1315707c1b03945d56fc43c365d9aeb8dbce58c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ccbb878a5c4007429e4f7af831086f0a258859a1903ddda43badc37d8825181b
MD5 18110ee341fee86c523f3e94274d0ea4
BLAKE2b-256 2ac11714e1550562039c518a1fc35f8f7e8745ff2f953040e21943504c5fc2de

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0de0e7819b42e02606711a9023deae553fa8b3633cc710af57a3467ffe33336
MD5 66203b39f80e2cfded2f1bdf8f74a968
BLAKE2b-256 f67e2f90364f250bab6738f08c7299d76999d0f4e8b74b4670be3d5010f5d290

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 84815871b7027f1b7181ce6ea2367c0e3f819b1cc09d107b5fa46642d3cc2362
MD5 a694e203d34df44eed763bbadc7c185e
BLAKE2b-256 7cbeec751b84d5e60a1bc530c1a26168f4ec0dd67614ac1bdae179f9f0e2988a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 941dd44f7e560d3949ec5e8b4862d68cfc974d570ebffc23b4331b8683b945af
MD5 099794d1e20655756febe6634777ca3b
BLAKE2b-256 55f8cf855d14e2f68bffaa841a7f303a0a996efd945022f59919d637fb085fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b70addf3ee8a8d7f7c995afbbcbf52827ff87ff516ceab5ddcf39ab2c987b4f7
MD5 9b957c39651114e29380c66973e14283
BLAKE2b-256 3f13bb3d463a1edd110685d1c7e0590c2d443d0ee17a8af30d7d1fa122576a98

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97b5fd157786969a780d018903f3ece3ae8ff83c711a4fcd6c26145028002b41
MD5 70f191b4d31482df96c184225e305e59
BLAKE2b-256 8683141fc2dc207aaf39c104c87d0e1830f23f49fcb78ec9f5de76de84e24932

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-cp314-cp314t-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.3.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f4644c7bf2441cf1bf3cf29bf8079fff794505ee2c1c70866201562ea167e41
MD5 b4effc8a3bac1a200e588264bea5ef5c
BLAKE2b-256 b868d9caca1634d9f6dd12bc60491cb8fc5c4b1defda0ff388059445e3c89fcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 914558dd4c1f1cb77661f8726bf227fa7f0c6b1d51b57aa97c0b2d93efe54d96
MD5 2d676a900431989dc7677adcaa78627f
BLAKE2b-256 130b564c71e9153337724764d4f6ef17a37b8d8d4a11e3ce8ee2f02649a1a390

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fee0e03d2482b491d4aa704fa331c7abd8ad1e0c5dc73c1688913509716d237c
MD5 6d65543a9307e4805c269227306a9178
BLAKE2b-256 c8ba3b6546595510f4b0596fb0228c74135d425d286c3d89a21c732c51289de2

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a48368df7824d5a9c43b3a093b153d87c19d1516c0e7022ab6d5d366750b82a
MD5 03dd38c39413477844e714239bb993e5
BLAKE2b-256 d5c2bab27f5b0bb3e1c0b81bc77039c98ec451d06edf55e9b37122dd126243fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8534171c4f6a5335b25504b32ea80989b91ce98ead054b7c1795df017bb1e796
MD5 7ccb2251a0ad45dff974979024b9a3a2
BLAKE2b-256 8cb5991e4a2351c56aa43354f1e6dc7e8507d5926f89bdf20955af339cd4bd2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-cp314-cp314t-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.3.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: approx_chol-0.3.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 180.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 308e3d9e342178c5ddc79afba24fa4a075b02add2ae03029b03f59753d8a8d3c
MD5 66139f0214f6440e9143877add686856
BLAKE2b-256 e7d4ad8a26397219ec633938cc2d6dda67ed2b53047de91e3d4b325b724f28db

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 370f6ccb63d21d31685832b8f524a5c6c142a47f4ccd647740a51d03c9a19ef2
MD5 818b4b222c76cc0348c3f6d1b39f25c9
BLAKE2b-256 f6ed9c5e091c660d11fddf79e8856bb61a018808b1c811421a6373fba81f922a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe506c078d9b8f098c952db6241035755c90b9af50b80dff9b297051ddcbd089
MD5 5d288ff90cc568d9093ec2446d0e9eae
BLAKE2b-256 c6ab6d99e949faf692d336ee7da185f78524898847ec833bca6d016e4694150f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32f4c00297c69126b618ae49ee9dedbd5b8c5f996bdc01a8a2b3240b47cc8a9a
MD5 f72448733568d12f120ebcf5969b0fb0
BLAKE2b-256 aa76490f2c30ee102ec6af965cf766b8b9d91f71567076411a922ce4ddb7117e

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce2ee54e1320ae7cee95104aca509ebca73d058df9e21eb041878741cc42ec43
MD5 0d0c8ec4cff106f861eaf47a6d1f4aaa
BLAKE2b-256 072f930c5d2a84b36384dafd7b82d96c205e044ff41a71fb123f7e599f88a3f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0a51a6d90672cf3d58b8dd635a3d4aaaff6e2f203254951d983302a4b3645a1
MD5 5cfade3ff43229bc4bf5b21bb097236e
BLAKE2b-256 12702c31be9bab9a3ca937f323b3537e652dcf1141f45edb659b09a0067bdeba

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf550ce6cb16c3cf788f821c42850c491315f96ed866f043ac06a73b90654926
MD5 d166627219b1479a9563f14f921be07c
BLAKE2b-256 8a105ffdbe07f23f085f96d3a2a163f1fcf2af942229e3d17365764cc0ad2b3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e3441ff18d8a63733562725c4da461de672e43b541e3ef232c41d36f05b9a66
MD5 e7a8b3edba43a428fd3f7960d658b1b6
BLAKE2b-256 42ea7b502f5a496a53cb4533d843f018e95b92ad9543bd8a6f93cc39a954398f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c35104a688360b3f421c6c382d413b86bdef6d89ac90ecf9ff1f95aad06c048
MD5 84f097e9a44bfe5a64eb4a0d5e0733e2
BLAKE2b-256 749ecb0aef617efadf645180c329f76c1cf47b823a28f448aae80a2ffa7590c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a997080a2a69bc0a3d5a7519ca38e5600d244b8849036d6642ec6843401d1348
MD5 3f970ec2c17e407a305de0943dbeb16b
BLAKE2b-256 482ea92fe713553e9d6451b2f53b7f8ba642b8689e7bbe362bb107a16ab3fa67

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 186f1d4b236ffcaf67f759dab357e533ee465fe2e2247a5c2e5dfff9caff2c90
MD5 b1dcfe97cc2c9c4a0d4c3634792a6990
BLAKE2b-256 4e5365e4887e4d3e07e9dde1f0d02c6d84c68a004262e59b34b284b40d117d96

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a7046340a0fab3161dd554a6962a9bef27615f8875f61db1d6ba0e1bd474892
MD5 6ddf1610e2b824338a6d3fdf76087d31
BLAKE2b-256 8b82ea605638c85fcc9be2e4cc6ce08f9ba58057d93e40753388ccc81308eb57

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaba919110d003b76b1a466d68bf872a3d0aacd3628683d4ba3bce56a0616145
MD5 63c0ef0599d3915f8d5764307a3bfe72
BLAKE2b-256 c63710acd2b44c2b2f8ad91400179fde9a9737583cd2928688f76c84717ba0ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e83c05c3722ff014e10d091cc2483d8dcae8eacb332321a157055566d54d4ac
MD5 06e7f28d8558b6aa9c8599defa93adbc
BLAKE2b-256 7336d2747b2dd88c81a2b80ea46c4dbf325a9704d9a1ffd51d40770b83e26d5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: approx_chol-0.3.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 179.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 049cd252dfd5531a329d91fd8aef25da244bc7e56e6b792c1d890cb779efa337
MD5 7f2ec748194328e1865d1877dc2936f7
BLAKE2b-256 d56d6db782f0f3d57f47bd3b07bdc445eb42b13e4c00ff762ab4fd0ce4c408d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 200e1c38ad4e61b4c73ce0f99f5aa127910a104daaa935459f2b59dbe4474ebe
MD5 3cb1a93d5c30660e0e97da058fe3fb3d
BLAKE2b-256 3d6ed222ba0a0f20c618834947b194799f69b8abf5bbd7e6acddea2610ba6c6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9fd73424aa22e5fec744c8684252c2132a9c1f53c2c71f105e99da585ebe8c90
MD5 5814e8af6fdc1987b4a33fb7887f9348
BLAKE2b-256 0a9ccece9a7bc660adfa2b63117b1982a43223d5d1ea06496abd6e09637560c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7763f5f1d2729c64cfcc56faca9f7d6670af35e00fbb54dae6e757e951f7262
MD5 d24bcd4ad7490fcc501456ff708dd7aa
BLAKE2b-256 6ccdf6cc95e15d3275db013a08ce5c2941a6db7c69951a3587deec168e001ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f870b1179da3a1823fe43cbb309764f8c2521f7facd8104b32bcadc21839266
MD5 a3b519b69693a196f2091a7ad14b00bf
BLAKE2b-256 3805f21dd2ffc59427e4a5abf465c8cf1ea3cda9ee9125b353a6ecb6f370198b

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f726153096aba9f4bbe22acbb4cc90add2302ae39cf986f80afc4bc948f6b1e
MD5 8e76770169b102bef97541c926c60d84
BLAKE2b-256 56c9ee263dfa187201133e2e90863a96fae9ee37f20073fb8496114b1d4d8c1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46546201cc57eb25703d9b4586e2ecc6449f0ac7d47a957414911a582f77d576
MD5 2b6e67b01079a06bcd52c46cac44566f
BLAKE2b-256 f2ddd716e5045637f0bbd5f8ce6946591c504aa4c24f8aae822833678c29ab51

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db6e09fc0f34a24bebd2780a38d10fbd88791731ad8a4eac9defdc3b6497d18f
MD5 cee6babcbd50e0c500e5af7b90301fc4
BLAKE2b-256 4a82f73e7eb3ab701135eca42ec1a12268d43e27dc12575fd195a909709f8706

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da2f978f1edfb3b5a6380cb25a010d818ae92d7eefeb0d7665a9382fbdbda497
MD5 f9a33bff26c27ee104b7346af6dc4348
BLAKE2b-256 56032984ae5ed411752dd3f4166d989825399070cfe5bb84e317d84fe477a414

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59eac709cb4a7f11dabe32104bda50f0d483eaf4c58a9d4d23931967eaece0ca
MD5 da0c96d579a0e64df25ab19a4b27ba9c
BLAKE2b-256 1dd3e0b53572e3dc1e429d4ff58afa57dd2265549bb893a80fbaddc809c7eb39

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90c27f097ebaac271a0aa8157c3c31a741172bf7b02839b665ae15584c2b5cb8
MD5 f1633ec17b09cbee48d1198810d7127b
BLAKE2b-256 0cb9bc14448b7004cf72af774c48ba84a013c5a52a37a59c2c76d058a2591ad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e1b4ec77423a192c1b20a9e6cfc81dfdebc5bb77ececa1c7a7fa8e85e396dd1
MD5 df398586c25ae7a6c903d96cabc1d951
BLAKE2b-256 d212e5f6f6157ae76a9feea0a99082b92b9be9abef30bc5f07327f24cb4a3921

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bcbe93ea20ea11c8b678596c60bf0537d7f49b1e9fd1752e951a08621c313385
MD5 34804d9216d33112e4259921377aa381
BLAKE2b-256 298068db1c8924c7c1b6d04679ad0b6ee6ece1e52679b001b18030de6156aca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91cc427e6a02dbd851db7e9756d2954e60383d6df309d01f1f9fb0bccab686ba
MD5 958f52edaa15aaee9491eb879ff0ff4e
BLAKE2b-256 f78e08c7d273c58074f7be65beb7615037a95f9a3c6554bc7beca1d8f32607fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81021f7e4c2421d4a0f4b1bbaa8608f344c5c0450dc3fb6d679abc4629907e5b
MD5 3a22282beb3f1dbaf433f130c8ef7eb9
BLAKE2b-256 0446ba3900c74f63eb1f775d8aa8db6bdfbd6db0bb9b5bd83691582a5b2b177f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: approx_chol-0.3.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 179.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 11f2883ba7dcdea6e4aaec14b55774e9cdf3a615e5bf75c418588de77ca5fb7a
MD5 948cd4fa0ae253119198989c7750e3e1
BLAKE2b-256 cb46cd145be6433ed166a2ddc55b47025d41d69ec67ed3ac248495b50d0bf7a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 597113b876ec6b21e134a463b6a81f7660938df7e0d21c40fbc90de1c3e88c5d
MD5 ae35162f57d1678bd0aeb630bdb321f7
BLAKE2b-256 b0cc03cdbc2272cf85612211b95195ea454fde5cb6f0cf074a5cb293aeae4c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32f28467a728672db1c3d757e5763d1a52cc07f41889b59a7158bcdf8cc08867
MD5 4ed1644484ef9d7075685b45674b4a84
BLAKE2b-256 936dd351f04aeeb3cb9608ec04c37c3ad68a8495c82f54b134c99dc2802b4cd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 136912e53d0d9db1c0c6f852aa0992de00321001d7b945982a6d6548646c9e87
MD5 8cd0904836f94e2318f8b945834c49fe
BLAKE2b-256 8cace5e57603b574d4a5c741876a4b0fdb4b47168463cd90098cae417524dc06

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e56f823bcc15140294b5084e985e7de8c650c97af8e7056af8543aad23c371f
MD5 596be71c68277fb1251ac4c1be41d040
BLAKE2b-256 7d357eb4405caafd81b3d82b5499c5e7bbfcfcf47ce8498979e959404a9ba4cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29159931c79a839b1ad3088242565679798cd7340e8568786dc562eee7906951
MD5 a6da97f953947573f297b46d76a02a77
BLAKE2b-256 140eddc65d22eabaec4c5737ae19327ad0f3eeac88891793824e58d2001f02a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac7f9b03ce304ea45c5fc1e432d1b4fe5cd37ac214fef26c385c8f8f47c74153
MD5 059a83bdda0dcfa35a92820b7780ef34
BLAKE2b-256 a0b38686c9745bc910ec84f09a9b0e8906eb1632ef5d0ca8fe34f9794bf36e33

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bbf3cf53a7e274c6a4f36f8640fcc5211c1119f79e29db95936f3e2d7cef468b
MD5 ae42e9725393f65749154b8549d7df28
BLAKE2b-256 e9f1272bace7e6075ada9f9bd5276f87f5440fc0e7e35429c0e5db480b200c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97dbb4b356cf3b6e013eb72968129967e21549e621cb13244bfa136ffe56c05d
MD5 ec9902833f0fd94579acc4227af33ab7
BLAKE2b-256 48bdd7eb9969de9ca25d380e17e8d930dcdb16c8f6869ed4b48311870d627acb

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9482316e187df169ace73ecbc339b10e5a9859272ee87c02cf6d363e3084fd01
MD5 d5b082247eba018da4e87b134bc88bdc
BLAKE2b-256 b4931e6209288c6f537798ea570614287680dc836cf2dd9c1d43e0dd33b160b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bcdc02dcc7e7c144c31f8ffad41f33486559a50d349fa408ccd54f8b0bea98e6
MD5 e96353876468381046b36758527830fc
BLAKE2b-256 d45bcc28f16c4a0dd34dcf57e19756ee9c6ed6f26e46a87625df38acfaa1cced

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e394245db6651c6ab47e31ec5d51d7c320b55e61ece84c79a57d11b948138e95
MD5 a85e67805c8ef6f17d6ee15b5fc3723f
BLAKE2b-256 381d8e60b7b6ffea0f9f998bdfa6468fb1650a331b3feddd59f13bd863b9c273

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39449faf65b328f1bdd70ff09c9600727bf7917ec16c7416295aafe3aae1c755
MD5 bcc92bd2c9502c2f07a7dceb7ce2818c
BLAKE2b-256 eca1b1feec727a6ee4c5f552031183c51be696f24feb662af249ab34458d8ce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d052fa09f051027216bacc820e6272c61dba9f1fb94f309610915fa49c3dee5d
MD5 1b3e63aaeb5b08b6ef0a78b4bc4a0459
BLAKE2b-256 1108942e6dd7cc6e356317b6abccd5195344617b58b6212cc4b201f0adbe191b

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e92a1eaae9d37919019cea6464f4b74b9dc610d1343282ce81cacbb216249c9
MD5 f2b6dcdd4ea55fc815468b802dcde2a6
BLAKE2b-256 ddd16e09688234d332ccb418b865dbb0889dbfdf22cf96f875d4dfa10551fd49

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 022db39f1c3f863040862aa286ccf77dbe7f65bccbdaca7f99ce735b4f4513b3
MD5 7715c5c86e07f7025a2e330325fe3203
BLAKE2b-256 bdc1efdb8a4805825ff7f990890188f477b9b53d417650fcaf0f7fbe9353e891

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8ba20023375ea1f572e4c64f28a7839cfb394ddb6babda713c5342f8e4b9aa0
MD5 5ae3a93e431b6acdf74ff319d3381484
BLAKE2b-256 7be084455b4df37367636b8bcde1f5dccd0612c377e3f106115f36d9745f5d0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f16a1affd0d5ea68235d5f9db9065efb8212fbf8813f41908da5a03025e70ba
MD5 5c00685ec6fd20d75979c1cdbc99d8ba
BLAKE2b-256 182ff2977af14958b40c6b8690fe113744c9d5a53a0c9f2ddca4d8b5a37d4b63

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca13a84a1bf9ea3012d46786a9391aefa45f14016fe57a19ab5043d28de09806
MD5 1af2b53df9feac51c1b3e8441ae568a1
BLAKE2b-256 72b55fabebca235b3b1bc29d8906f952c5ed5e3cc3b6bfb8722248105e3aa8bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9357fdf6be84d131099d3def570909f603dbea810c7de5a39d4102f66f2a18f7
MD5 e57ee9ebf06170d7346ceb0d615ab999
BLAKE2b-256 5770ec42980c9f3546e1ae7838b3363fd1095d4927f367332e7baedec0c3ab6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 78fba36618ffe429a00381bfbabf54183454866d7e9247890db8e3527edc4fb3
MD5 324a46ffe0489d1dfb4fca93a0c6846e
BLAKE2b-256 4a2e2e37004021b483b7459bde3ba68b829c627797c38c68719057087be5bfb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e87510788b17379157e59f31859ecedf710221a8833a42f46ffa184c628b93fc
MD5 799e0b984aebfc01139537af2bcd2d54
BLAKE2b-256 0005fa03d2f9b27f013655c2d44c6a00205d54572d51ff06c02bc43dfac94300

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ed61bb1aa50ee7180ae7bc5f7140d1dfa88da0add82b91b46b2594e27b7827c
MD5 66ad4db8d87202c9aa4d08186383c18d
BLAKE2b-256 10b59d4730a6950985f0d501bef236845cedd34dbb9ec1c10d7d2d8de984c36a

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e1c3278e4233d1a33cde0af9ed57e4c46859782afc3ccfab28af8408ba06f28
MD5 82dbf00a427caeaa0b55991e197b19cc
BLAKE2b-256 551792c3c97f508570cf4ecadb956196b2cd61c7e61a5b611b61dbc17d33c78e

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e634c2d989b5e23bb08fb8d12ed61dfa8d5d659ec7cc1f7a153b5075e5526ee
MD5 07afadf76ce3eea4e2eee65d8f085d5d
BLAKE2b-256 af2f73c8f56f359bae5a2f050df45af58b2bd42aa7e9881753f53c7180c79845

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 def92fbcfd78fd51cb236e13e3b3bda34ad771787742bfc3f44198fe3bfbc8a3
MD5 83d95235aa80f4cf4a513affc4b04169
BLAKE2b-256 260d60af59e573f1df81fad6c5636e854db60b470c3fbfa51a671302a7107241

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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.3.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for approx_chol-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f42872548af721bf90d62b96ec959357adb18ea4a8e86e80b69bfc60d4aa3072
MD5 b6478089dc52a4b56fd1b98abd486dc8
BLAKE2b-256 0820cd53958de8c512388f39694378d6f7211ae6fadde80915d88681a5e627fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.1-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 Sentry Error logging StatusPage Status page