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.2.0.tar.gz (68.1 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.2.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.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (547.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

approx_chol-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (595.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

approx_chol-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (481.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (341.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (339.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (320.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (304.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (329.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

approx_chol-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (513.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

approx_chol-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl (543.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

approx_chol-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (592.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

approx_chol-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (476.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

approx_chol-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

approx_chol-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

approx_chol-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

approx_chol-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

approx_chol-0.2.0-cp314-cp314-win_arm64.whl (179.0 kB view details)

Uploaded CPython 3.14Windows ARM64

approx_chol-0.2.0-cp314-cp314-win_amd64.whl (189.5 kB view details)

Uploaded CPython 3.14Windows x86-64

approx_chol-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (516.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

approx_chol-0.2.0-cp314-cp314-musllinux_1_2_i686.whl (546.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

approx_chol-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (595.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

approx_chol-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (479.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

approx_chol-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

approx_chol-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (340.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

approx_chol-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

approx_chol-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

approx_chol-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

approx_chol-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (327.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

approx_chol-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (280.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

approx_chol-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

approx_chol-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (513.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

approx_chol-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (543.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

approx_chol-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (592.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

approx_chol-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (476.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

approx_chol-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

approx_chol-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

approx_chol-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

approx_chol-0.2.0-cp313-cp313-win_arm64.whl (178.6 kB view details)

Uploaded CPython 3.13Windows ARM64

approx_chol-0.2.0-cp313-cp313-win_amd64.whl (189.2 kB view details)

Uploaded CPython 3.13Windows x86-64

approx_chol-0.2.0-cp313-cp313-win32.whl (181.9 kB view details)

Uploaded CPython 3.13Windows x86

approx_chol-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

approx_chol-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (546.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

approx_chol-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (595.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

approx_chol-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (479.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

approx_chol-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

approx_chol-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (340.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

approx_chol-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

approx_chol-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

approx_chol-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (327.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

approx_chol-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (280.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

approx_chol-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (292.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

approx_chol-0.2.0-cp312-cp312-win_arm64.whl (178.7 kB view details)

Uploaded CPython 3.12Windows ARM64

approx_chol-0.2.0-cp312-cp312-win_amd64.whl (189.3 kB view details)

Uploaded CPython 3.12Windows x86-64

approx_chol-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (516.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

approx_chol-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (546.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

approx_chol-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (595.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

approx_chol-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (479.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

approx_chol-0.2.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.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (340.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

approx_chol-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (337.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

approx_chol-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

approx_chol-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

approx_chol-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (327.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

approx_chol-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (280.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

approx_chol-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (292.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

approx_chol-0.2.0-cp311-cp311-win_amd64.whl (188.1 kB view details)

Uploaded CPython 3.11Windows x86-64

approx_chol-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (517.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

approx_chol-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (547.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

approx_chol-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (595.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

approx_chol-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (480.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

approx_chol-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

approx_chol-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (341.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

approx_chol-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (339.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

approx_chol-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (320.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

approx_chol-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (304.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

approx_chol-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (329.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

approx_chol-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (281.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

approx_chol-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (292.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: approx_chol-0.2.0.tar.gz
  • Upload date:
  • Size: 68.1 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.2.0.tar.gz
Algorithm Hash digest
SHA256 301464e354d1a8ded4f410ca2a3d9957c0e09842de4c4503fa7639ab3a776a16
MD5 ed37b6f7a0c836d7dc144f72d743d37d
BLAKE2b-256 c1e8f2a622a18db81fc26ef5e4f0b26f1196254d7ed57e0a3034a3df95d04a63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c902639c6070d0ae51c73c82509f006114d40d98d2b8e22a68fd50499792428
MD5 725f2965efb8c9f3f04b503385b3527a
BLAKE2b-256 e60c60a3ff729cb4d5f00ecdc2d2fb869e77eb69d584a995bd73fdbe89175df2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7428fb1f3a9f005241c0036111a237a537ef98e64aaa9c8eccf69504050c6891
MD5 4acbc93619c1be3ba215b662171a80cd
BLAKE2b-256 31cc9e7c115e2aad3d7f0caa42bf5d4bede8f8a478da89101464ff05f364e295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92eaf2fb05a5b191b0913e25259a8ff064e8d890183fc91131e64b262b7ef79f
MD5 434908d58450e56ea8f2943b278b8466
BLAKE2b-256 52b1961b11461504bbaec706ae06c8fbf2263e4d1edbb16caa02c38cc17bf33c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5775f5fcdaf57fa9ffb09aacabd3620a8f10842cb64eb01b9f4da1f83054372
MD5 100b37e9e814c3187786b2af7a03692a
BLAKE2b-256 543e653f3f2da3130257944614cac6a81dd68c063019b3d4af19ad748dd1b87a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 508797d1efb166e3d528a60a0f6d6513a00b617c29eaf75f2cf0a877d93a486d
MD5 3027387f74ed06a779076bfc80b66154
BLAKE2b-256 70492a5d095df93acfd3640ff87873a16e99d9e109579171ae7714123245e447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec59e027ff5ce99fb8e0eda68651c19d268cc44c202131d519e1dc45b13aa320
MD5 04077d99ba88edec0eba3a0dd75b5f97
BLAKE2b-256 62fbbc4c7efb50a7a39dcda58a44661e384b76f87840738e8b485a959730c606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca6464c740d29bff9a641277e6ae8f623e71213be6f770337c390a10f216b0bb
MD5 2a62cadeeedd1f7215e3af8e892557e6
BLAKE2b-256 3cd616d2c4c45ef69a3d70ef263e8a3d8ce883a224c1306931ba21a19aa0a654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35570d653554901cfbf0c088a4aabfd5f5afec891494b6b4ddadb9b976c9899f
MD5 a9dea4c1d36b24818748af04c8f6f5e9
BLAKE2b-256 591eb99d0e0b0f5d0d3244982bd85e316cdabcf624ea64bc13e00a06664b0112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97f3f44194b4f02ee4a243b0eabb0c296cabb8bff79ae0ba22bfc73711e9f157
MD5 7c0a2e501b813303ea18073e6ea7a864
BLAKE2b-256 8470fc081c8a744292bc405e7ae852c383ac044ffd3d940d06885251c68b53d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 999dc3b774663e3b8688b261f247bde7c64ae61f272b1fdcb4b6d8b1c1ad261a
MD5 0ec34eac8c1bc8e8ed09f63cbccfb60a
BLAKE2b-256 a47161ff33fc321cc809279c1aaa564a578954d04f4a2664693601fff373e730

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43a17a9676b355f6e7a21705c55975066f7ab6f3d5849f2a70b6173330a5a54e
MD5 ca771414e19a2947c621c35ebe574c62
BLAKE2b-256 42e905e86ab8be4276f6d0f3c309a5c0144d446bece161323b46c45640566d33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a3b315b01fefb098de65138bcd54962b64a2a210dbfab7c1eabf3c70e41170c2
MD5 099e30bf23459785bfb86524ab004964
BLAKE2b-256 24ce4c778ae8362fcf08c1a82ba0d5ad14fa3d741c4a5ede1684277d15527763

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27d33505bfae98e8dfbe080bf16e928f6393cd86e46337cec368d8b500185351
MD5 8dfef64970d4770dec9534df2c8b79d8
BLAKE2b-256 d162ef8bea8f92673dd3bba04d9fecd94f5fbb40aedd49da8a229fa30ba73b64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e34df51f8da2b3330d48eebd7e971f840ab275127fcbbf9527d8d56c73f3313e
MD5 650987445a239df252c000d5292667af
BLAKE2b-256 e5ab0609bfe8ce7503928023e6c2ef303b610d6bc59354ab9e9f1dd2187d2c67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba5e072a82975c6188443888c2d9959df44cf45f96b36be48d41fbbc273625a0
MD5 b28125d4ad9572745877a71dfcddbff7
BLAKE2b-256 11ddc269804c846bead33295389e5c13bc3bb53ae79abbb20d067475f010233f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b97266065ac70a17ced8c35f375cb6cef2c404bcd5cd77c92e031ef908897d2
MD5 e7cfd9be9f01e51e9598a89f06302123
BLAKE2b-256 4d188876026c87afc78dee2ed39c817a09640ce48f6881faaa79d8ac773d2fa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf9d78b76829ffb08927ed331cdf30aac483ab87e57401d7b46af42968967b90
MD5 28c2e26cb344c1b98c8c1bbc3426b676
BLAKE2b-256 d3a65afa62e8ea78f720c244096fbd601bb3e0aad1b2a77b58663c46c1f3f94c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80eb64b6a9c97006897810f2d4dc8965e927adfd5bf369c56fb8c8ff325c6956
MD5 166d4eb9f976eeab625b14cd55f3f0f2
BLAKE2b-256 a2839aac4fbf23cffd5796fb7f144200ffd87c600782d56dac54a105a7c43e0c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.2.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 179.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.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c63d1a39e82557cb72ee1ad38cf800b63260be45755271274e6031703fca39a8
MD5 8c0ca5d8c9c2f297ae1b4caa68716e08
BLAKE2b-256 319be55ce72430a788bff09b2e361621f6b26299d57c3eb820810cad837fcd15

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 189.5 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.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 286797f37c009e1d046459c3c95d659326a511c176e57d75fe0e4f651ab0040b
MD5 dd7f0cf74155beb3a678e034376cd872
BLAKE2b-256 8f69b12d351545d3b2deac5cdfbe8ea47e13943c50e92402e3186455f1194c92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77b1320246ea20763e20d5f67e05b6a65b8269a22319e3bbccf3d4cf5bcb5c65
MD5 1c66d29d7f6f883d152d447626662fff
BLAKE2b-256 578fea6c77921e3b3d7687757d08815a1564bc34d76806021764418e5bb33840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d10321152812885c229d77008e388410c3fe1d75b7adf1377cc5184b26fbc24e
MD5 5904a98c12cace10b4fec669f30b492a
BLAKE2b-256 4e332e06ca7ccb4c49c428137bdec4a375af965a4b379165bca38334ef62ba82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 baee6615e580cb775f1a65b11d0be7f622c9f4747bf4aade4ec9535f1e2f1f23
MD5 c35acfd1d0de77f7667e24684db21e51
BLAKE2b-256 07969679c7040942960d7ae66d9a408aed8ea3ee555807581a503c86bd724c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d89a00eb7ee78d1f1c30444c55f32480ff031a993aba4c78e20013a100fba863
MD5 75ece23592befe650dd98cc240c5217f
BLAKE2b-256 c35596bdfbd17a02e28a4293706d2844e615c0d3449e83cd57307fafc3c8495d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09962820309da175a3d8a8b238325167d08150b5952dc4e2e02fa18f21b11695
MD5 ab147b3a6a2140060057f9dc1dc303ab
BLAKE2b-256 6ed278cd73a6b4644e1b61a1cd64c2c4b3481bcd27bd911a98a931135683a36e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54adc50598719fcedd105f52182c9457010e9166d714e9096ee227c9df55a928
MD5 37bf2392d076638f1fd9199cdad8bac0
BLAKE2b-256 75ff8a3af79cb895c5fbdcdf93fb59271c53a9cafc3e373c7e76017c983b5feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bac356aaf4ab151dc1cbb49a5d2baffaa33e4a54c674ac61d91510d409f3ba9c
MD5 faed7324b772bdd232a7924df3d27fb1
BLAKE2b-256 86856b58dc7ce93052bfd29b4369e7e3b7f646054c0ae86da121d32619ffdf1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a3dbfc91572f450cedd6cca8072ca7f9f8ec9dbf4d23d8422937c8afee54154
MD5 19982858cfefd2301bd2396c947d480e
BLAKE2b-256 0c282fa511ec81b1dfc771da48994292d364ec811206c22b4def0b387e553e90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a65b088fcd73882299ba588319f7bfc4fe921ceec37fe677c21bfb8e6b9e9ed7
MD5 fe0ba28d88332583b3315fde41e772be
BLAKE2b-256 eeb22eb5a00096e79f2a1de1e82adb1fdfd8c0f22555fc9dfa7596382ab6fdb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 630acb17de343372df815b2ab70ddc3292824125d95b3dfa89e89218fdd5f198
MD5 db3c05daf5a25c99160e369601dd72a6
BLAKE2b-256 cd1fa16382045279ecbecdef391989b2645b1ab26763e3dff2f4f7a1f825eba9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eca483d8f4047a0c2051e12b504a568dba3fb37659e515eaa9b151a80c6e69f7
MD5 aace3ae1d91ea61ef7c85b72b950590c
BLAKE2b-256 b6e9eb3c616f1435ff9a3410be6e4e6f12796de5e49f0c8ea1abfcd9075decb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 675121fe4f14c4b4607596ddb033e1133d4a5e0066adbdd4fa4ccc5f40b10f27
MD5 0dee50535906654f43d923da32bb077e
BLAKE2b-256 2fd39e2bf79844c620940a5ee63654d4aaf954f5238742ac656c3665cb6807ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6b5b25b25cb4c0fc4e13019518b121535bf5454f6d6f6bac07ca4ae93f44cba
MD5 87c6661473f6a5649d433836207891f9
BLAKE2b-256 12ba2a74da02686d925c53c7772f4daf8a5d6f90bf3bd169c901b46b0279b30b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2619e3f5955712a258261f930f28a6254fd2e32dc0c7a9b253273ec9bf2f6f3
MD5 14f44c54ee3e2513589443e324d71c47
BLAKE2b-256 156601b4039a8e3f16ca31fd85be5883d0b023de3652437e5f7d875e4af8f5ba

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88328e857ff6dd14241aa4668bc2602b6dca02f71751a9ed5ef27ccef53d1ce6
MD5 bd49ce094479a09a37d41283c31305fd
BLAKE2b-256 0509e95a74e2f4a05bc2c9f1165f2d79e528ca88cbfa90444c76b0e7fcfb8e93

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34f6614a37415516d6597e6da5b50d727e4adbafb75a994b981a539efb558c4d
MD5 ebeaea0839e01b3607072fd50b11bdd6
BLAKE2b-256 301f8bb1571e6c4b92a8027b3b42d728120c158998747d30fe8a517c53198caf

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbc2618a93a8fcb860607a750de9bc76cf0acd7fa913b104db84942fc4627056
MD5 da52c969bb7c81d5c4896e1344aea634
BLAKE2b-256 df82a57432ccdc8cbde60ad53e7789f6973568ff840df3c02f28a6eb242ba123

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8853fe269ea3df026de50625e84bbe514f2743f48392e99e6f4af55152d04aff
MD5 d4eaa7b1941bac57680cb238d97cb3e6
BLAKE2b-256 79805c3f57cd35013402e457251e79fbeee4fac8ea8a4beb730fcf70955cded6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f138d1bfe59e4bf3239b1ab668bb7e6ebfa69943e5d583820b836b1bbc3dfcdc
MD5 6cb774e498a6b739e001dab6946d4b1a
BLAKE2b-256 9ef9134aa533af3c8e2093e769ae68ac100a7b7e316091d230979e2c8d233691

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6102378e85b2afe257ad89f9db8a2745960cb1bef19ed28763c362ed0e4e9745
MD5 e2915f3aff53156eab303dd2997cdf59
BLAKE2b-256 0a276d104c503dcd012ce37e4ed5a4cb9ecaeb441cb5fa1b63850174be5d3790

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: approx_chol-0.2.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 178.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.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c33c22ebfea9e6f7ae2f2b68a969a024049d4c9b3b6cec88695e27cf256c870c
MD5 155ed6e554d12076da3118acbd490b22
BLAKE2b-256 55c87647033a7c138905d6ff5ed02692a5475799ffa7218b90a45a3470299999

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 189.2 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.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 18d314dac52413d6f4f473363b25835d0ca117eb3fd936d374e1c3261bddb187
MD5 9b7e39eb0e83c6e2c4d37cf29b4f580e
BLAKE2b-256 0d82e0424479ccf57f260c53eb73bfb239825a2a8443d5a9aef0191cf1957b0d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 181.9 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.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 abf082d07b36b7c652ddea7aad4a13efa3b68159be043744449b91d851058b31
MD5 15c7b44663c73ecfe834ed6d4fb35588
BLAKE2b-256 268ace528dd824ec0a4ed74b460eed0aeb29f7b82bc5d3d3463ee5d473f2cbfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 675c134932de688f537e8210c679c16445dd24b779482cc3bf324eb8eac7329f
MD5 f1cfbab4aba5402ec3fe8c7f6eae122b
BLAKE2b-256 f606d6c98b2b55b771ae870d89caa61d3aca3103b54aab5f232af61455fb5828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9fa7c4dd3977e16ceeb594b62c35bac37240c2a5f7655e82423d0efb47cddee
MD5 081d674cfc6f45c316ab2e9af5b4e238
BLAKE2b-256 bce61d6c7d4fa026194669592d1d90b2cff35d781fec13bf09aaa012a044341e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9fea45def643ce485ba23374f104d7af29e93c0f310120a209bc808b1ad4e975
MD5 c7f1c1c74dabe09cbf25ab8972804e34
BLAKE2b-256 3e312300dd94d184e394a65fe7769d3d65e9a612becb59cfa4176f976c994af3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a33cb05f242fc1192e54bd69f5edf062a74185d9554953e1b0a54b4c416094b4
MD5 6087c90d9911faf33e743e41348ce3e1
BLAKE2b-256 bec117c954545d857a412b75768c840375ad1e9211f313884026e4b4097855c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d783743aa03b2c5ce2bdf72e8f12a153c36203bb5f801108e3575a44cb44cbb
MD5 939e92845887cb8b9865cb9e318d0b96
BLAKE2b-256 a3ba79c5cf5ab27aa8ca52b62579facb6cf1f2b5bfcc4d30c0499fed63ebd09d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5335b684562bc7078cb1c28077ea9294074b725a2444c0e12b733cf9eb119f2
MD5 1865a862908caae6263ab1e731af271e
BLAKE2b-256 7e7ea26e1e6cb8202867ecd52305232eaba9662206ac911599dd6e4a6077ed20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6cdb2a63f18acf603a33b0e0ad333ed44aa395bc91be862464339262411f444
MD5 d47d4f73d189f969e87654ee21d07326
BLAKE2b-256 950f3c599b0e190e20e2bab2726e09d0ee2f630d1b7488415bafcd1d76b3b25a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2300a441b26f526466277f57bd6eeb401f05ad73ae550c459fb5a47c6b706107
MD5 a1efb73afb7a8331e41b659d43f67d07
BLAKE2b-256 15064654d989f41e91dcbcaaeae5bad1e4fa029cd71a05653c9d0e59bb514648

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d9379f3e4e617a57cff344f3d833d68b42f25b0a02b829912d4dc3897ccc342
MD5 4b79638e0e9e621c89b5c919d5489626
BLAKE2b-256 a7e395527133902fade6bb7dc4f994f35d9bfdf793baf5ddb9495f0c66d964d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 78fb2ca39fa162e43463f83a3fae1d80995ee285feda8bd20d5cc9fbd895376a
MD5 df83b24b526fb571de030055ac2ac0c7
BLAKE2b-256 6f976d19ee6bcadc089b506b79adbf7e0c8e6005aac84e58ee428a5d8e20faa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78af02b4cdba1d6ed476d7cd699527cb7515ba86e1c9cf673c6a6e73dca5c0ba
MD5 22abfd7184b78473967457f1a8bb0288
BLAKE2b-256 0a6fa255756708278e3bfd7f2f01874f86e0e8efb168a7e66122601c1c01fd99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4847867581fde3ff6c233b44baf3b8aa0ca360bbc9a7ab840fd2d8ce9543e354
MD5 a72aa03a5818a30cdbd970ab6ec07992
BLAKE2b-256 df26fe6c631ecd31bc59ea836e565cd91564b5c4290c7e6d983ea28f61789e0f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 178.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.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c581066ec264ea6af575a67385f96d7b57b93eced10128db91da3a918bff6c8c
MD5 56cf6391939f8ad60927baa9b1d3c95c
BLAKE2b-256 0d659cad3e94efb8b71e9cc563c0b864f7f5b5c69373780e6a1742f42dca9f76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 189.3 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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 538c5d0ee43c23635c8d5e05b75399fa13fee66483c24606b52bf9df6d124eaa
MD5 215e616b74057679abb3fc5e32acdf44
BLAKE2b-256 80617adfaccdc3e17e65055625b28b55b0181042ec20f28888c30d6f5637697a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b7b021e137c305973a3c927020f13daffedc9911249b9a8b41e81b58bfa287e
MD5 0d49db639e57c9cb01a4104164fe7678
BLAKE2b-256 547d53746c20d66177ac60515cd05ab481ba2b0b7dbad34273bd21331cac29fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44a465fd3f1ef40884601f3b1fcf10229d7b876766e37022ee5a9221fd1833ca
MD5 88ff897452a5056fa1987e4d615fde8d
BLAKE2b-256 e843d9aab4710f53aef05ed928ded20505410c7243b68a9f189cf18119aeb627

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ceba3fca27f219667cbde97a7e16732c85ca2b467dc1403fdf16080450421f76
MD5 d4c891a10067847f74c4e08b83ec8958
BLAKE2b-256 8609137892b82a799b9d84b0a8401c670efc9eb36caea707f14cc6aad39cb3f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4ab6348d26aa5776e7282e37ea59e0fc05ce33e919ec921d80c3824f8ed24cc
MD5 96e69b8e2a5cf151875fc536b2e80a04
BLAKE2b-256 b55bc57c6661775fc96607a249cea5f2bfdbceeddf25a2447f75776930297705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2e65cee3eb70a2a6c916546025bbbb2ffbcd62d456d1a31bb9d7e0d64f7741d
MD5 c92a8605ce47e67c4964c5a55bd3763d
BLAKE2b-256 84064dccda57a584f647ba4a34dd91c2e96c1272af18675639ff0b8ae4390265

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57c5eef0e2383cec7e10692d68e84026b0d31b7e7234c5128023049d2af777c6
MD5 79982be8815f411ace0b4d12683a8991
BLAKE2b-256 0b7d22ed0eabb666751216dafbbe80b6db416c3e8e93e32d53f2e442f74c74b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf292fff065c1363cecee1569044af8b70651b0e5b3f7f58cfdf5fabba927286
MD5 100ce850fd41393782bea3e8a6a42662
BLAKE2b-256 4dda9c48eabfd0825dc10f853d9fed2f0d7ce868941224c04a403a7f0917947b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8bd84cd42efbdaeffce7ed9ba40ef792bbe54031d9bacda219c53fe4da6451d9
MD5 20c725cd0dec4ed32740d6cb1c09342c
BLAKE2b-256 64206c501a61290bccfbdef97291445524e03ee81438219e7fbb9b06018447d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4de696bb6e4a72dd91dcf138e3fb3e7c7ddfa668792c951c7e1e3d309c6637c
MD5 89e980c18d880a7ebde5ffcba11dc154
BLAKE2b-256 d9b50397f2eae882e48a9b609c6384a389d4b0eeda04cf86e493cb5dd71f75fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e9ad0a116fc8df0df08fbbee1625733148cb2b12d9d747fe2cc39c04ceb95d8
MD5 6c63c6c1f552f277e780b7963adb9cb0
BLAKE2b-256 5b6750bdf488669659574babd3b5dba8e14a45ec4b261c48274d208e4122b90f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02b53b70fe020ab06cc2349b5cca9cc8992ba1536be7b987459202e74bc9a8a5
MD5 fddc7796222accab9dd58aa4f0279199
BLAKE2b-256 bdad3ed384de72dad2eba63c07d7328f86348591fb51c816cdd28693efc2911b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e860951a739bc5dfc7414c8566e096e7a7b3923023f10482eb67fd46a376c60e
MD5 00a08384ddd525229197ab64a61e125b
BLAKE2b-256 b9aa263565fcc4e767ec53faf63e783e08826e0005192b3a252a4825050a5cdd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: approx_chol-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 188.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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 05d20b25e79150c71dfac34b5f402587b74eceab5da3bf82c2ed02aff313edd4
MD5 403dbe27fb41498f87b2ea5801eaf1a1
BLAKE2b-256 9b485289ebb9632b32840c45d18009eb24db472694b0b3b7f9c00748dc2b8e87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad12ea94fd00fb3bde6fb5bfc90177824912677d8e7fbeb464482de737a9a23e
MD5 58ded30d1b721e991e7ec4d8058da64e
BLAKE2b-256 8bcc090b83a57b3605ad12291f001379354a10c1b6effbea0f78b33a5f189af4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f27a616c28f9b3611d54ec6694c45920dfb164c9e707d402cb30d00b7fae6c7
MD5 e0189b93b8866a0bc6dcfc6fad6f1bba
BLAKE2b-256 0aeb8e14ca3d2af7c5fb8a01e67768ff5e8f141a31a798638e934a1ee063bb32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5268543cf79a7d3de74e066245e39a7bdcb75359a3d1795c695814265da0a098
MD5 f04b3604d0b4f790d2bdcbbbb4ea30be
BLAKE2b-256 e4e8c03f6b7108e2cfb86d2b2ff8c59bc3b1573c3232f82fe8085b5630a2b032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f6625742d745fa49a27a80c2387c0cf8946747ce0aaf74240fc0e98737a2644
MD5 38ed00de7e37a6d156b296cc9987b677
BLAKE2b-256 e9c9bfdef5b9be04b8ce3b55733e15d57e30090645eeb32caa6080e669be098c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c80228ec5853cab3da0393650c580a274f72551a2c65acb0a0494f65ccef73b
MD5 503d8953387ff249d27469e4384e4f7d
BLAKE2b-256 8d3525a7da278dfc4751f0695d4611485ef7566194b65a5ff90b71049c54ec3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5e1f199910d464512805273bafdbd3f3293470bfb772871937b4cccff042405
MD5 0ab39f6a0aad2afca8980b62bbf0e471
BLAKE2b-256 462c88abc14e375638167f12162d869de9063320a8edd1f3c8e9e0af91e07ebc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fd5cecd2b07dfe3cc2b4b7a983a5b16a5e4a096db10704b0c9f6362d0d83d73
MD5 7fb92f4a61d2c2f9bee1c2ef974e691b
BLAKE2b-256 c6cee0bb77cf9bb788c37f59c9771ec7834405843b4305b91715dff16c1208d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb17501c1eff10cfcfe12991d5ff957f3f756171b62432ee90948f633d05277a
MD5 550e5e97a2be3490f195f7f73cab95c9
BLAKE2b-256 cc5c5f82e66b53ef6750b01f9be661fe274125418b3c28360b5c36605b3b973d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 800c2a99c958388bde6c073d97c664b7bf5d033f098ecb6a023a496b09abd006
MD5 e3b46904c14c51bb979a8b0e193a4592
BLAKE2b-256 84576f003bc94e58808b4577040f751b4888c6b64e24b981cf2ad14064971ba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0255264bea2a7d1d564fab2157bfde3d25f65547bb22d1762ff21a19aef0a07e
MD5 1ab8fd179e5aa99bd96b88956914aae1
BLAKE2b-256 95f2dfb5489ec59d6a2f3bb25a7e6befa78bee1f90b70e671e3c4917e230f75e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b129bff67ce399c9aa0727fbadc14c4b46afd4a7228604b2bf1da7af418f0acc
MD5 b34a0cdbe08b062ecc22b80e11764383
BLAKE2b-256 6e6aa9190530651f01a7cef43ae238ecb96033d6008155b7c67c0242d7677ae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for approx_chol-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36f1bf3771e980ceceae2329a74e0cc7fee57d75998ee6af15cc189bb029bbea
MD5 543baf9b196b2feaf9a0908cb5137fee
BLAKE2b-256 52b81fa965d139782a2788a2d3b745e75571b6429093f9086d6044dfcbbade1a

See more details on using hashes here.

Provenance

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