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.3.0.tar.gz (70.6 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (517.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

approx_chol-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (548.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

approx_chol-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (596.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

approx_chol-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (481.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (338.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (340.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (321.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (304.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (330.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

approx_chol-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (513.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

approx_chol-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (544.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

approx_chol-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (593.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

approx_chol-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (476.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

approx_chol-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

approx_chol-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (334.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

approx_chol-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (335.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

approx_chol-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (317.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

approx_chol-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (326.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

approx_chol-0.3.0-cp314-cp314-win_arm64.whl (179.1 kB view details)

Uploaded CPython 3.14Windows ARM64

approx_chol-0.3.0-cp314-cp314-win_amd64.whl (188.9 kB view details)

Uploaded CPython 3.14Windows x86-64

approx_chol-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (516.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

approx_chol-0.3.0-cp314-cp314-musllinux_1_2_i686.whl (547.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

approx_chol-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (596.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

approx_chol-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (479.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

approx_chol-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

approx_chol-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

approx_chol-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

approx_chol-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (320.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

approx_chol-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (328.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

approx_chol-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (280.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

approx_chol-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (292.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

approx_chol-0.3.0-cp313-cp313-win_arm64.whl (178.5 kB view details)

Uploaded CPython 3.13Windows ARM64

approx_chol-0.3.0-cp313-cp313-win_amd64.whl (188.5 kB view details)

Uploaded CPython 3.13Windows x86-64

approx_chol-0.3.0-cp313-cp313-win32.whl (181.8 kB view details)

Uploaded CPython 3.13Windows x86

approx_chol-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (515.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

approx_chol-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (547.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

approx_chol-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (595.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

approx_chol-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (479.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

approx_chol-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

approx_chol-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

approx_chol-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

approx_chol-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

approx_chol-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (328.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

approx_chol-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (281.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

approx_chol-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (292.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

approx_chol-0.3.0-cp312-cp312-win_arm64.whl (178.6 kB view details)

Uploaded CPython 3.12Windows ARM64

approx_chol-0.3.0-cp312-cp312-win_amd64.whl (188.6 kB view details)

Uploaded CPython 3.12Windows x86-64

approx_chol-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

approx_chol-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (547.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

approx_chol-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (595.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

approx_chol-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (479.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

approx_chol-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

approx_chol-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

approx_chol-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

approx_chol-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (320.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

approx_chol-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (328.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

approx_chol-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (292.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

approx_chol-0.3.0-cp311-cp311-win_amd64.whl (187.1 kB view details)

Uploaded CPython 3.11Windows x86-64

approx_chol-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (517.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

approx_chol-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (548.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

approx_chol-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (596.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

approx_chol-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (481.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

approx_chol-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

approx_chol-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (338.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

approx_chol-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (339.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

approx_chol-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (321.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

approx_chol-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (304.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

approx_chol-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (330.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

approx_chol-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (281.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

approx_chol-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (292.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: approx_chol-0.3.0.tar.gz
  • Upload date:
  • Size: 70.6 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.0.tar.gz
Algorithm Hash digest
SHA256 32c6611f2ec82599ccdbe4b854a761ca97b7fb7ad66803075a584dcd681c8674
MD5 cf8e8ac5af0b44ef7dc65b4ec8b96ea8
BLAKE2b-256 c1a3368bf9e454770d328ae9017d653ed7ecb78c67719f847f510e497ba2490e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12674cb5ca079ad3e8878a2c3ca24f5131805944ded4f29808f4ae51e17b5836
MD5 726e9058b363b7dfbd5605fed35cf3e4
BLAKE2b-256 79e499a3cfde172852fc205388c3ea048ffc7b540b54a6fce1954e6515f613a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52cd704248b17f17f3d7ca963bc9030ec449f0b3b61b564a512c522bfd6d4eb6
MD5 31bb63c50fad86ddbd1a55176f55c708
BLAKE2b-256 0afbef58d38f57db798c71d032e7d3fc6a25a598fe69a95160adc1b918051fdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad8b99450b0092dd3a8dec872acbc3af12908ddd9523e22bb0f6523a0f5e9f77
MD5 4191b37f03ec06b58cbd29540ee6cc84
BLAKE2b-256 5294c95fbd755e684fc4e566a860814f049aca19b6238127d9f42e3d63821737

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9e8a95f423f8bf49010496a95d3bf871ddcac8f035107388fb0fdf53bb8d91a
MD5 0af858f15513b03eca65f70fd5d4bc93
BLAKE2b-256 e7ba5416dcb8cd4b651363d9b787562214da5e20aed9d2669fea48167fcf5b0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82333f43e9626ad13c02ca34b6dbd6a5a5d728aaba1bb0e118ce41983a2b7ac1
MD5 2e88e705ebac139387436a1b5170515d
BLAKE2b-256 1509b877b1c4116cd9d2080a679f989349362a1da0dcfed3406577dc9ca3749b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb4497e1a30b9e7645b388e789ad8b65a8c4c35cd1e646969544635928be0057
MD5 37ce28d82afb1003bb07eebd891f472d
BLAKE2b-256 71e7a82a4a71fb0f64eb4f017b253ccbbb0351055342e25d3fbff85f8f55ed16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71fb291b8f30060d8ba5534a268fe37c7c1ee56e35de2adbfc3e3a0f4b836e48
MD5 1bd86cd37684987cb83887576b3c7896
BLAKE2b-256 884a5ee4c645a0650908f0620553777c9fb166ea960d89aeeff2bc507664dcee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0eafa18cb6f0098873b232888f113affa335a3056a19c130ca8621f290b48c47
MD5 375574ea6e40a4e51f5bd264f9881cd1
BLAKE2b-256 cd38ac9f7d62fa8a82be958f3b84ee2873731b4c6f23820aebaea21a22e95572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44aea0be72d05eea9ff80f53b6730ce17e45b964e687d7e28621de96f74978f7
MD5 f35057279dfcceb81395ec7524a30032
BLAKE2b-256 26e2f634aa42f9ec0f442de40622e0be6a164669aa72a469446222414bf26851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 63d32df0fd09af8371a5f7e56b4c4fc61a3c00bd2782d650a0327ffb497a1f76
MD5 c36242e362a4ff0c8a6a3eedb3c8e222
BLAKE2b-256 f7493fb75f03d0b4838fc2560b6900aaf1dbe62ef2e3214c5afe2b420c1a38bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 160687a4d28782902cd43e9aa9e718e3c04f08a5317209b3211741a6667885b1
MD5 133a94956dc3397881d174bcd71883f2
BLAKE2b-256 c9ba24ccb6439cb885121d0b2ccb18ea979f04a6542a64f8af1ca06b80eb7199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8bb4943f2c1794952e7b26eb547917cca7a13966789cc9f9eec325e14e11815a
MD5 4474ac75afa77cb9e3967d156e7b3605
BLAKE2b-256 ff12ffd9df7581d4e9097f83709fee4907bfe80552a567efe7778370a8a700a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7254277638350130e48d92e761a3432ba39d172fac28c2e66322b369433cdef8
MD5 8c262bd9a9a45d8c50be6810d45abc05
BLAKE2b-256 577bb6995847c1cbca65753e5e5c609aae5baa27420958b4919847e6ca1856c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d69a4ef694c1b374022dd6b9a7bc5abc8882501e0f9ada35b1231b2eff7501cf
MD5 4fc2dbb08688ab2e881094dfebc38800
BLAKE2b-256 f2cf37742b32dba78c1b53c95de3a47b55314143fd240b057dc50c99d5bbdbdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3b4b7f5dfa580ec981bfcbe0013dcadd730ab7be831eb087a3987127cfa770b
MD5 c9c1b81b52d664a1ccc19fecabb7f7df
BLAKE2b-256 26dc937495bf462836fcf7a48ef23b6fff24a8c0c7c0f24ef6402e4399661ea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c575a78da6ed3e3824cf8ebdf0cc838836a714895fa032908fac68ed2af6f593
MD5 4ed58bf84fb6c1159b8457c8e23817ef
BLAKE2b-256 db87159530fbbf21c456314737e447f6dc70370a20decf177e07c0351a0daf2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ecbe93846eef1515bf4b2ae704f3fa00ae001325758379ecf86d3b8bedb21e1
MD5 5356d3786f41f5f5fbee7c6584f1c668
BLAKE2b-256 dbb99c4a9fd7f69269fa2da6a9e57f4b698111c3065fac911f231d0eeb07a6db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4468240742419ae5a86e1e1ded5f0af9858aaa3735049092c3916c6bbfe1d2da
MD5 3c337cd58a5a42df22850613f593df59
BLAKE2b-256 15144e444ff7a53c390430ef68b2156dae7c476276ac7d3029dba9a9371025a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8590afa345d98d3741b8069d743c152bd2a919c8b82587ebe2fadc743424cd6
MD5 87cfd7ebcdb791efc40d37af8a4c87b9
BLAKE2b-256 27a1bf681dd765686adedf2b7643471259c3273d7c137240d3959129c82d1086

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fecf6f595bf07c7e90ca7ff1f4fc8bbcc344015e30d5f78e94e428c6663c1bc7
MD5 12c57800428e2e70ac8d5e55654fa92c
BLAKE2b-256 7e6550ce320a3bb5b48177212cc370dcfd2fc6faeb0978972821e4214258e572

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.3.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 179.1 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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8c50cc98d6ada10a30f13dde4389826f27cf4680f1f2283a2013822fbb2c9d65
MD5 bbe8f9cdea125b477ed0af014d700f6d
BLAKE2b-256 99a7d095010f53fcd9fc7e6762802a2062f8190811ba5c8ba2da322c6daa4bf6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 188.9 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 55c2415ff78cf728446aa3978a91a901e198388e1256d279be8bad0ec0528e11
MD5 2bbd53836de4d163d857f6747f23e55a
BLAKE2b-256 6977306ad51012e35f847b74eb188edcafaa51bd2c6083379a735cf5b2b8e4c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ace5c02d69b6ab0f1c7a188d8eabb7caaf0520ffeb7eddc2a7b51af135d0a2f3
MD5 d59a02e76c5a9cb6817e97ab7f8533bb
BLAKE2b-256 905025cddc9cc63aa264fb6f638d726ca2238e04ecddaf91cc17d44c109f2b74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5252cc0ba22d9916c16b1ff0515e580572ca11f2053fb0272fa591f2ca2d0794
MD5 b89dd27145d275bdca646ecbc268cd10
BLAKE2b-256 1daf27f71a3221dfed22b4f136c495f58a1d20e197e0b80df9ad6c8fe6951342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d67c047ed33b229d39e831ab5ba7eaffc06a6fd3990bed6c7f64b4786005354
MD5 a2ec642cd7d7f67a74fdeb29ef1d7dd2
BLAKE2b-256 1cf453a9772cc435b783586d54286d30f003301cde50640523c9d65f72130491

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a451f009b4100a9b7c22dc7902df215d5e7871b10cb97dd6340cab6e64bdb70e
MD5 0810d7b478dcd7f02edb3c8d4ea4ca7c
BLAKE2b-256 6c41bd8758306f58963144c671e1e2432df2badc26e9987703144a563ed87e45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b506d6c50915dd57403f1d55a24d5b9c6def86fb93fd33d03a1faab6be8ed3d
MD5 b947902164e8dd12813ce3fb6c6ad631
BLAKE2b-256 9c2a65a36ffaee8fa03e045bebc8015c206483b1f5dcc70b10cc964aa5fb4349

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7dea4103c17cf8a2607894b7f9bd3f6a91ad160688268262e8c1ab6218259803
MD5 6225fb8569def6cfccf4484b536cd2a5
BLAKE2b-256 d5f338686115d2d490f44af16d302df03e96df28048253633102eef465ad3301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73835f1915493e368f5152bb82c55685451776f4fdb19ca6dc0e34c944d5866e
MD5 b9875d1ae759c12750e614c46b71b004
BLAKE2b-256 6f64088eb7bfeefdae990d6c3624eb9d01bb43d0f5b2deec57e1fde352351203

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 767c5293431c8dfc517ff652b83615694b1c4427974a8630cf06b711727372ae
MD5 37fa96cdbc396eaefa20001b06391849
BLAKE2b-256 94394439c55bfc582180fb6a952330929d347a7685a5240ecca3c45914888c1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e493efe9ee14449f46bc7ff752e6fdaf1e45fc01318c888649c2970aa77b3fd3
MD5 99e85962aed21b0526df6a7a91ad2518
BLAKE2b-256 647e93b0b19090f288733c87e67aeec30efcb265b9127e1eb5bacb4b9c821765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8d57259389f23e34c404fd4876f3cbb79103dc2f6008f7bba457e447a2a6297c
MD5 f067dd869f7bb3316296e3c94f413029
BLAKE2b-256 da5bfea3d7c24cb18ce402e12ff9ef6474bf3e2c22a3fcee8eaf6892b7664f7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00083e43f5070823f218f5ccc6c928cb8787035847795a2e6693bfae6721c2ff
MD5 2d17909df646b42ea984919f13af750a
BLAKE2b-256 9a4d1bb1ab979665b91c59aaf665c6db49112248dd66e7a699b4db5686910875

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12afbae1f1e4e35d84e2e4bae25a431022dc51c2d1368b20b521489aae6f9545
MD5 b4bb26d0737e792f8878db9eae62a20b
BLAKE2b-256 c7dcc65fe3e50b2502b0751a747aaf182603248b1a3f3cfa7451a7bcc920140d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.3.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 178.5 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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e32078a8399a0dbd4b87008762c4929196aa9a6221f417c510b4c4b5ed26e0e7
MD5 6966c8b3c53015438a0b570614408eb3
BLAKE2b-256 893a48a3709e7db2b67fedfabc56f0162a5a84c545c02a45057dca3d3cff2ed5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 188.5 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4482fd36fcfbac923de83df20707f2b5e6e82dbe95312a2046c96da369267863
MD5 7a2d96520229a93f4cddf8586e25f11f
BLAKE2b-256 155214f6e744bbd4b023758a246863abc64a6ae275a259f16dcd4a6c993c748d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 181.8 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1c718fdf2caab7bac522f414be77d8b07e5908043015374ad0a760631190598d
MD5 0f4a7da1846ac5d638ea348929b3ebb0
BLAKE2b-256 8d2ebbfdacedc10a2a11c2fba8e4ff166787feab37de20fd998714804668fe88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 feb3d55e1b1a6a3b93a8a14e1ff183582ed5acbfa3dce531e3079a4002f22932
MD5 aa28cdee195f239ac7e3709b3ccfbcfc
BLAKE2b-256 71efa448ad3434bc77abcbd34cf6acda63c6cb0c5b635056e99b8702b9f88628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c469bf1c42135246bbf19218af2846e2fa4e89fb018e0b53b8ee4e9f55b65a1a
MD5 0b080fc9198bad421ea4836bb466e44e
BLAKE2b-256 be14db92ac01c74a14e08fdccc4cde6215c144a6cefb6b472f7316343aa13409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b8f215d1c6698927426b2e69b7d2cf1087811b34fda55bbd16aaab359087e77
MD5 25ab6862b13dd1723659f99e6f377181
BLAKE2b-256 d3f13a10d5765a5c79eac1a619222527450a69c869ebc128f6669bad2efe0192

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3384c4f7729e1cb955844aa764b37069cf4ac912f4f02bd1eddf1b5b648ebe7
MD5 d86bf54d8614cf09b44b85684e5ebbc1
BLAKE2b-256 629a16ac275baace4f8015cdbfc6337cd7925cb7e81b9ffa347ab4598a065a4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14ac362e962a479ed647ea6cb53f1503c0f31ffef55fb83798acddc0d59a8970
MD5 37482854545edc32bca4dcb35c90b672
BLAKE2b-256 7d9f0218e5b92f0e60e2523b7aa384484394efcdedfa6f9ec209b237fa2c347f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d53e30bc671f1f85aa903d6d8a8e3216a3dfa62516dff991a41905ad264a6a1
MD5 e132dca7052f07a5d6e40313b6453369
BLAKE2b-256 1b8939faecfd403bd66dcd96ea34088c71163267eec6865ac513503bb1707232

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a234229cdf2967802ff1ab3f535af676f3b9fefa147f304b045cac6bdd611e3
MD5 7d863c5173afd94f83279f1172056bc0
BLAKE2b-256 c04006a932553a43490beaa5dfd719ec9233d391e7c122c8a424a155d12a73e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c48a3747d063c10f06951f285a962bb4a6e6323bc24987fe30ec73e065782a3
MD5 c46aca2e1c5cfdf0366f6670b96a65e6
BLAKE2b-256 92b194bcae5e2ae0861b89205e0c800f575d68425c42c5fae4f9f616fa50bca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7041675534be81d1a1a85609123b274ad878379f85b8a8ee72665aabaf24001
MD5 2e274a4ab96076844e5cabd6b7b47796
BLAKE2b-256 0542c4c775ed24e44a46d2dfb63fb97932d2e080bce16fe585057050b90ba8b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 615e857dce0fc0482cfb4cacdc8d41d6038b9dc56560e72b5843edc391101d3a
MD5 4f84fc78648dcce1cf76931f6c5a329c
BLAKE2b-256 fd927a38e6296d1e13e144db5a482bd73cf7e620ffbdffb9462ad5a781cb40f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6463f060db4533a5380fe41c2c72dbdaf0ce8adf8517b3099e5361861c38bd28
MD5 9651e90a96e4bc6c86d0af79e1cc5f00
BLAKE2b-256 e09910d5a7a8b6ce4469d9c82866fbe13dd5e5a2f7154402c2d2193aeea36062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5e6355fb8b1c760da1dee2526f477bc6621bd4d8c4977fed00e901414d6bd42
MD5 4a685d2f7f39c696de3b55c8ec0baa7a
BLAKE2b-256 8e503e0c8add632a4cba4dac6ac04f495d02f1d383d6b2698e6d79b51e0a315e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.3.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 178.6 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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cd0d14b2d9363700347ee9fc6f59bbf162cf8cf6c3eb89cf9f8dbb2a07b8c71b
MD5 bb60c7e9724e373e26c43663abd48a71
BLAKE2b-256 d95bd296b870a3958132776b24f06fc38885bd27f08c4a6009f425fd75279590

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 188.6 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 efa3daa0e9367f04abb960eeb5445f0ca52ff6cd60ed760e81687a0538383ea3
MD5 7dd3f4a3b4b69dca2aaa4b1794ce8f53
BLAKE2b-256 fc0e45ff4441dad750e6b65f8f54583269880e9865df0fee0093b509ceee1648

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 673f2e91ecc92527e905cd96a984876373ab6163b8ad0901fbe50fbdd6ea51cd
MD5 94e047ed1517774777aee8e58d57d020
BLAKE2b-256 d26bacce5bdd7016d7c2e6eb9354dd89d5efb7e6a4b9c3aa52a4a7a45cc790a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2805b54e5a4449adf02ba6524ee777ceb7717cc563e18a3a69b0a6a44a2a6e0
MD5 1bc378d4ff2667d68972c721d02c65e4
BLAKE2b-256 c439f2cd9bfff8248ccc0e95c0e5624bfa25f13113579c2d5e2ec092586c224b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be4bece995904af65da2ce5b50bdd6e255253d2f3694ecd257184dd655e04163
MD5 9e07fcb5e1a1490d492d28e162f8193a
BLAKE2b-256 06fdec364bc4733e9f51776b7a9da07eb290b520603007a67155c452c7233fac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5376f318f9d7c03a886204b6a667e73f39f481924cba9084339ef72de64d1e3
MD5 b43b564394b59eed0951aeca77756f58
BLAKE2b-256 0ba35fe506092f062b23bc3399f73b2e63d3a8a59fd16bd975d1af8e6fcba0a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b3a6d1cec9f0dda4f79fdb580620d3a3fac96bb0e32c65aaf2e22d73c8516a0
MD5 75c9afc2d32b2c2ba44ae9f0ea901ca5
BLAKE2b-256 d6d066108feb5cf51783e6875503dbefa47ba8b3bc45b66b3703f959beda8f43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a724bad8d7c74138e8905abb2ab4edffa85d15c9ac7e9672b8a685cb4fcd14b6
MD5 34a10160fdbdb58a12301797ec4f1623
BLAKE2b-256 7813acafb8697cdde3b614835a362fee8f9f4480cfaf2bb273bb0e9c3db49864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8f2192c8a5497db2bc9c9bc020b3afa8fb1d08184be41e7946bffa37773c6de
MD5 4a55b6181833eca967c37ce2b3801270
BLAKE2b-256 cae0c09920e485cf13acef37f83358d6c1598d11eee07d24d59dc4ef0c2e6cf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2329485d8e6bb19a1c7d43bad7d91614264b67c6528b6b63fdb608153513159e
MD5 bcb08df614561f47a655943e079d4cf1
BLAKE2b-256 f678b78ea8056ba3e7f2c4df265532c4c92565dc4357c5533339d19b3382dc22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 355f56ff993d97c6afddc8057deb3d773e65424e138d52d666bf94f9348a1d9d
MD5 f3c0b4b4ef94844365d624c6d87e92d9
BLAKE2b-256 b752363244c40110e4fe3a3e0f866547db4d7b2da26b9e20128d131f0b8aabaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36034cb355fcea7ecc7741803bb5afbf5d5f62ee08209e43d1e2a7d1571c0db0
MD5 3d2b26bd666c5ae4fde7f87ecaa92da4
BLAKE2b-256 d7931cbd6bfe75bea195c82033023290a237ef98ce9e976d1f2fa6d50a958b04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a286b324f87e43a95cae289f1328c0003ac2e0a9ae1effcdcdf5e3699b3e94bc
MD5 a1122a15bca229030c50f811886b7bb4
BLAKE2b-256 aa4aa958ce9073eb22ba3cddb22afae428c07cd3fe2f4f14e4530a797eaefb81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 346b87c4e71898b6d35be005e3e354f2a90789358c39ccd8ae7b1e5339bd7d22
MD5 cfd29f5d6d17a3199df5bc18f05262be
BLAKE2b-256 3ffd5c7befa358aec1e25057c8a95537e31c0ec0096d79a98486b1eb565951f6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 187.1 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5b54588f4679d5964400852623dcf74170742de2d58d84ff1617d2c08c5b0b6d
MD5 e95b84669e25dfbfee33d4344579521f
BLAKE2b-256 e2b608425c9b939d9bfc9af9c8cd2ec3c59ee15dfa629042eea4c60f2e6f7284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22369e6b241c9ba11c62ffbbf18f5106c1a3d1faae196c62e34cb37a734871bd
MD5 8eafcb4139d69260b9c27dc72affa0d2
BLAKE2b-256 5230f108ed1128a5396d5198f082e354baf57d3b8066890c71493ed0bc5b4681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b83a57878cab13642f52d7c62d176dba18ae83ff7cdea89c20999e677d66f349
MD5 aa4eacca1703a55d4bab05a572cd5782
BLAKE2b-256 be719f54fac62eb725f61e5ebe6cf4bd3e0390926384a72810982a633158b448

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9751de208f0f984f8a5c30822c1c18f612c43c5cb69cdf973206844bdea67409
MD5 b55096b0374557b1a76b72b17fb241a3
BLAKE2b-256 ed32c12fae9a0ecaa1e3a07b6b34823bda8f515b7ea3045cac86fa70d6155f22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d27ea09c60fced4440eb19d9ab35b30d1e0125294cac3318091bcb155ef3123
MD5 1de6f73d3438e59c4401c301bae7d205
BLAKE2b-256 b22c7a73a110c35fc0014216389df87ac29f648e01fd84c0874405d4204a50f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2c47b7f700714ca82298add73b479c29db4f809532a0f1be69c6c93044f8824
MD5 621ed452f05f67018dd81d4743869940
BLAKE2b-256 91f53c7c10035e7462f8feeefb8b0d3cea5e0e5cde4f9b4eee093c1b622d25b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 78f6b66e858c378a592ff902a94833aa5c05ee79b6ec5098838223265068db4f
MD5 59ad38c63cb3929ff931191a9d0d4f18
BLAKE2b-256 6a437c49022f53c81b2b25eae59b02c5113f38aa37f28d0f29a39d103e9dce3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bac97d737b6b58e8db20fbcb1685bec54173ad52b1ec250ce5df7626c818a9a
MD5 75fcda6a4b8ea4fffba063a8f0b7c455
BLAKE2b-256 a229a198e3ffee98af052f48d4439a23b4a5d6d4e006bac0a082cd731954f49d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8743047599d26f7a1be3e6af7a4bc9f21b19ac77a5e488490b49382ff6673e91
MD5 cd3154528b2be84822009f57a84ad04c
BLAKE2b-256 1cd176abd1d92fecb0c259c8c245cca6dd7ba688927b598821cad2bf51ca41c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29f23f965532c0e38e2e7cfa97b2d8cd8c3636b5f7e8f7fd16283202ac704d50
MD5 686b216ba23f865d8805bb81cd35dfaa
BLAKE2b-256 5a3c0b0a7007b35b65c9f7acd722093857a78fcfc80e7501bea3b35107f2ef86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fea2048bb3a7a9b713eab039da20398ba9999ac122ea26baa070c27a0333b4a4
MD5 d5c4708467204de1633ac9de9d23749e
BLAKE2b-256 639afe9393952933e7716e2f2231d2c5f486291074fb3809d15e691c734f91d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1da1098ef2baac9057240b233d909f4abc6da0a108222a04ef36c737c4e72a46
MD5 9394120377e65f42ac44c3382cd98c0e
BLAKE2b-256 a02700933237f64cf5350883cbb6daeb6340e00fad5fbebe10bea9c0b0ef5374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f68e44d6df4a1bdfd84bbe0da5fc1ac5739e494aa7894328c01df03dae7aa02
MD5 a1550c01a30feefac5bdd475cea3e772
BLAKE2b-256 89b8864473968e54606a87059c12aac37f0da138947044cee281e075ace40085

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_chol-0.3.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