Skip to main content

Damped Newton method to solve low-rank problems arising from KernelSOS and Sum-of-Squares relaxations

Project description

newton-sos

Damped Newton method to solve low-rank problems arising from KernelSOS and Sum-of-Squares relaxations

Goal

The newton_sos package provides a Python interface to solve large-scale semidefinite programs (SDPs) that arise from Kernel Sum-of-Squares (KernelSOS) and Sum-of-Squares (SOS) relaxations. The core of the package is implemented in Rust for performance, while Python bindings are provided for ease of use.

Formally, the package aims to solve SDPs of the form: $$\max_{c\in\mathbb{R}, B \in \mathbb{S}^n_+} c - \lambda \text{Tr}(B) + t \log \det (B) \quad \text{s.t. }\quad f_i - c = \Phi_i^T B \Phi_i, ::\forall i\in[![1, N]!]$$ where $\Phi_i$ are feature vectors derived from a chosen kernel function, and $f_i$ are given function evaluations at points $x_i$.

Basic usage

The steps to solve an SDP using the Python bindings are similar to the Rust version. First, define a problem by creating an instance of the Problem class. Then, compute the kernel matrix using the initialize_native_kernel method with the desired kernel parameters. Finally, call the solve method on the Problem instance to solve the optimization problem:

problem = Problem( ... )  # Define the problem
problem.initialize_native_kernel( ... )  # Compute the kernel matrix
result = problem.solve( ... )  # Solve the optimization problem

Full example

The example below demonstrates how to use the newton_sos package to solve a toy polynomial optimization problem.

import numpy as np
from newton_sos import Problem
from newton_sos import solve

# Number of sample points, which defines the size of the problem
n = 10


# Define the polynomial function to optimize
def polynomial(x):
    return x**4 - 3 * x**3 + 2 * x**2 + x - 1


# Generate sample points and evaluate the polynomial at those points
x_samples = np.array([[-2 + i * 0.5] for i in range(n)], dtype=np.float64)
f_samples = np.array([[polynomial(x[0])] for x in x_samples], dtype=np.float64)
# note that the data type must be float64

# Create the optimization problem
problem = Problem(0.01, 0.1 / n, x_samples, f_samples)
# Initialize the kernel matrix
problem.initialize_native_kernel("laplacian", 0.1)
# here, we chose a Laplacian kernel with bandwidth 0.1

# Run the solver
solve_result = solve(problem, max_iter=100, verbose=True, method="partial_piv_lu")

# Extract the solution
assert solve_result.converged
assert solve_result.iterations == 10
assert solve_result.status == "Converged in Newton decrement"
assert abs(solve_result.z_hat[0, 0] - 0.01939745) < 1e-7
print(f"Result: {solve_result.z_hat[0, 0]}")

Citing

If you use this code in your research, please use the following citation:

@software{newton_sos,
  author = {Groudiev, Antoine},
  title = {{Newton-SOS}: Damped Newton method to solve low-rank problems arising from KernelSOS and Sum-of-Squares relaxations},
  url = {https://github.com/agroudiev/newton-sos},
  version = {0.2.2},
  date = {2025-12-22},
}

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

newton_sos-0.2.3.tar.gz (31.3 kB view details)

Uploaded Source

Built Distributions

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

newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (680.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (812.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (616.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (734.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (813.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (618.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (735.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (813.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (617.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (736.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (678.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (806.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (731.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

newton_sos-0.2.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

newton_sos-0.2.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (810.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (732.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-cp314-cp314-macosx_11_0_arm64.whl (620.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

newton_sos-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl (938.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (677.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (802.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (610.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (731.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-cp313-cp313-win_amd64.whl (827.3 kB view details)

Uploaded CPython 3.13Windows x86-64

newton_sos-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

newton_sos-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (670.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

newton_sos-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (804.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (609.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (731.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (621.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

newton_sos-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl (938.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

newton_sos-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

newton_sos-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (670.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

newton_sos-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (804.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (610.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (731.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (621.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

newton_sos-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl (938.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

newton_sos-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

newton_sos-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (678.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

newton_sos-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (809.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (614.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (732.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (624.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

newton_sos-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl (941.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

newton_sos-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

newton_sos-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (678.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

newton_sos-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (810.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (614.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (732.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

newton_sos-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (680.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

newton_sos-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (812.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (617.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (735.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

newton_sos-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

newton_sos-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (680.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

newton_sos-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (812.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (617.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (735.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file newton_sos-0.2.3.tar.gz.

File metadata

  • Download URL: newton_sos-0.2.3.tar.gz
  • Upload date:
  • Size: 31.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for newton_sos-0.2.3.tar.gz
Algorithm Hash digest
SHA256 3fadb901c403b0c5198a7445380871e694e31e693962fb7b32bfd7f306727a14
MD5 8020e27accaf12f4aa221b7a5d1487d8
BLAKE2b-256 7ecc7db0ba16699d11656e1d81b372645d5dce9ae8524d702be33759c06e14e4

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc41d54ba629ebe1050735bb683fee34eb58ca1d1df9115da65316f024ef7897
MD5 c6484a8fc7707a1967d79a1a7d611018
BLAKE2b-256 a0273885a6a9056abd0b142fd508072defd984c57eaf4a9688967fa12a11ee16

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85cdd200b37cf72ad1e87470a321f20e540fe13d01a2107c3c6d746cb0adafe9
MD5 e9618a6e9d1dc29d584f20259c77f762
BLAKE2b-256 e75250503b4bfcb11e27a2f2e02e53ae47df36bcceaa4bdea4c25b753b43a435

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a5a463be777f5c58d1e4e73548bbfe2f35b4cd6db1f42b4dcf46e52ec61d863
MD5 8baa9d8ea8e35bf0f5f1464b2f4dda1d
BLAKE2b-256 2ba0d26ae4017890e11e14351ef17558379aa75d5ef27f49d04b35a6a770efc0

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c36b9264c8699b7ec695fce6871d3a97093374598c430385063bdaad954ba3a6
MD5 87c178b59393e331dd7be30188b04736
BLAKE2b-256 5512a23a2aec63cebc4d1ea9d1eecbb8b59aa9956899ebffd137739b84523c7e

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6941b9e875b96f25d9af94e1f5670d144bcda1ab811c7d65a0577b39a9ccc8b8
MD5 3f96d72a491a240b08f9819941de5c8b
BLAKE2b-256 afad97c899fbc12a99e6192547f6e8399593b775f05d09ff4a8b6ced2f861161

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa5e73e5c748e6d246042de3f0f54940f9261677dc8a1019dabe0d6cf550f68d
MD5 0e6d6984be2e3f585ee4f640f0fb6bc6
BLAKE2b-256 ec9f0230e04bc4ec87fc5b78b4167be3baf64f14febbf6de53cd484d7e3c8266

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf2f5f558619df4312558a837f33afcb32a240724e977d1926294aa104a2fdf4
MD5 b8678aaaac657ff555b62fe1160d67a0
BLAKE2b-256 caa4ef6ef97ee292130f1dc17c55ed84bb07b9561ec6e0bbec515ee7df0746f4

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e693169c19306ae7a9eab757968cc4ef5b0dbc1bc218f1f82d820d4f1842d849
MD5 fad589a346b786bb0741127517a4d992
BLAKE2b-256 edb46002a7d7db6928644343331eebf1f6dac90f55c3f3e9f6d593e15b46ef31

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67ad56e78293743f25743ef6e40a368142fb2bb19bc5e18bfdcb279a75b689af
MD5 a94214cace2d4dea6a37c67057ed364e
BLAKE2b-256 43da330aced7d4817ca160350f5ba118cb2b999bcfb95301122b89e8d542f086

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1862dee33d23eaad30092a5a25908adb05533e204e39bc3f30184ef4df613794
MD5 245a4a788aa814213e08249149e6d17e
BLAKE2b-256 2e642048f01495eb0098ba0f817fed3bc85218460b6c6cf3cb74377476065b9e

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33e134ab4edb91bdc7b9364d39f76f5ce37376a9340b81dd926eccfb95305b4d
MD5 86df0f3aa171e5749aec335d091baa3f
BLAKE2b-256 a17b80573fc47c9ed49e38272740b39ef249457732d78eea9aca36b4554f2c0d

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f678af3dcdce4cfae4f17a4af822bef55c1d9cc7ef8b50d93c2643b539ff0242
MD5 5bfa95dc361894fc802ed4627f5abd2f
BLAKE2b-256 899e7db8093190fb64f078f2cb40a916732b58874635cd4863469467a1ef9ecc

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e28ec04e96946bbc65993f85c3308c33c287bfe96a923c608a6b1073a32eab58
MD5 cfcd237630e84b6ffdcb567b5c2d9b7c
BLAKE2b-256 385dc1466801678b54f088d642bf19b5a3025263f257cc7848f7566a719e4608

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 298d82db744a150ef9dea0cb0ef8fe6ccd0cea23c038129b46367415fa5cc27b
MD5 1b9e59ac6e09084191e169f2b39d3fad
BLAKE2b-256 15bb503c40de68e1f6214b1945b28f2b17259a69ef621ac455952754a6e4be2e

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8b05c710a04185c040cc74b2a6fa1be46437ceff841218329bc40621dd522fd
MD5 534ae1608f5a7fe3e6fa5c882dabbbf5
BLAKE2b-256 80b38981e23476190d9145884bb0d80d3f34fde779b5fd0846349cc22e948368

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0405d70a2781a1f67f0645321835c556f8523a5dbbd56d43134c2d9f2ab41759
MD5 13d8cc7bbd68af3c8bc8459afaf41a42
BLAKE2b-256 18b680c3d0fc60dbf7af28ff0080d244d13816c51fb45c83fc6ee4a095373ba6

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a5c94b9fc28f15f1a5a2b4cdcce2e88a1fde01c07aee43c0a150a94f1bde980
MD5 fcd93443666d66d53c1086da556dbf94
BLAKE2b-256 bd3ddaa3abd071712fe21a39a061a00933573a3119464b316748b901b80ba8c8

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f94b0226d52bba44451375a19b93f6e2c0a0e4179ccf11bf1f908282ab0cd345
MD5 942e8cdd8331a2540e03b1a722e87c3c
BLAKE2b-256 6c8f6908494dffb880a79d2183da84c953230da136a479993c11c27eab38980e

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 179510068788348786d8399cecd5ba669ce00e7d4395e7b2248af98ed4f01cca
MD5 b175343aea0f540ee1123d84e62b6021
BLAKE2b-256 97a83c1e55a4a43d986fc53cd2af205f9c88b73ff04e16ffec95324ad6a767b4

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7fcf9f65520fc42c2c2ab5852ad577118dd5d576e560dbaaa0224e9904c499b2
MD5 fb36da51ec9a807882c33ddc7fd49d96
BLAKE2b-256 10a9e27bf15a8fd641f05dc79c8364b6828571736cdaedbaf565143b0a917aff

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0396a8ebf5b1ed252310458656100ea84f772d40c1453597b766623cae1f9cca
MD5 3b730715fa444f44d861cebc123fbfb0
BLAKE2b-256 c60e0ee6fac53e20a5813be472573233f6a7cebd0fe5f88f54285595214e4785

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98ac33e39ae8c19ea7c01cd757fe28c86ce50606dda2634c9927849e07818650
MD5 d38173ccea89ae3ab9324eb5956ccd57
BLAKE2b-256 d94c3312bf0dcf4a8061b4ae6ec12539930700504fb79f4680aec12137780983

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57034c868dfa4dfb53b1a18fc85cad4733265059ca8f971edca68af26e02b379
MD5 cc154c99c53babcee87afeb8107b9229
BLAKE2b-256 ad338ba44e2c896f90bd9ce00882396cb7ba82f024dc2500c1dd84cbee6390fd

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70a53936f305e33cc2f88f40f38e6d644409f6beded8758767b0de3bf6f857c2
MD5 e4ed6071cec1ea1a0866e8cc4ddcce76
BLAKE2b-256 468d6ef48f42e0d15eff9dc583d7925349fa3e49c8e99f8c3f2a896259c72561

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0daeab03c564fd3487230763342e2839972b37a166dfdfae6872842c8298eb69
MD5 23356c7dea8e3a556f2e76631dcdec20
BLAKE2b-256 7dee2c6354ccaa4a9cd2467e9972f81c02db6850cc6ccc26f972ab6cac7084ea

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff522ecb9b0ff7e6b4971c6048ab3e2f9cd05ef14548e9b84890d44265e13cf9
MD5 fd8ea4f8a1db79585362ccc163def6a5
BLAKE2b-256 d5fdb8e5a8551fab29eaf1e6639cfcdbadcafaf8667e45d94f8bf37183c6d405

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f4c936fa1b3551fadc954e5a83998730ed5d9b22004be1d39c7ac5ba4d81eddd
MD5 5d49c2118a538ef4171b61899f2eff49
BLAKE2b-256 e6b87208652c7a33aa2bf38d0f43a9379f5c7ea59c1c5a3533563fd4b8f99135

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e210204c5b2e34f40cebfeae4351d6edc96000fa091ab58cb523293b7bb9416
MD5 47cdc66781c6d52d2e4bdf8d32863b75
BLAKE2b-256 6197b17cec7929a5c1bbc5596eb70313296401b435a8e76e03ad0deb9d27765f

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b718a8696f442099816fc31eb370e2054bf9ce890cb1e0b05d0a69d961709a57
MD5 d05994707cdbdbe0200a824997d8954a
BLAKE2b-256 38feb981ace0384fd882f7b2e8728129c5e2813e2f4a65db5beefa2c504c2a25

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd8899fc08f13f4cabf20ef79ad034ac413d0f9469fc2cceea1b8343e08ef27e
MD5 3a920e4bb4cadb5a77e5dec340dbf0eb
BLAKE2b-256 5cae710e2f5f670f1266601d4b79ab4f0f36c3a33a7ff95df26ac3ecd8db087c

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bfd13ce0ae72ff8aaf7066ac3f8d12bedde40365f0b8ef3cb9e9940e2ce118ee
MD5 c2c822aaadd5bd315a24e959311a848d
BLAKE2b-256 79665d63a6242fafa44b969931e53b998e2ebd0aaa78eaee68f8cfae3bdbfcd1

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a1e0b289e65ddecc18c1c4e728fd93674c5ed974769c299097a4d82cc1faf44
MD5 b147a9f20b257afcae18cbe225b7c7a1
BLAKE2b-256 b5d8a710adb9cbf6db0924d05f5dedabb94b60576634964698a8c994638f8b61

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c7aacf214d7fb5377cc03cb20685b594c1e583f164bccc93a84045cc168da71
MD5 3680ff65aba95dd25af73b7363a1f3b8
BLAKE2b-256 5335c2edd3cef9244afab8d7ed968dd7aeb9da1f8e7119bd6e6ee2686788c95d

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efa288a1d79e12fcc164617f2d602e56a4fbcd7fa803a408f3d195874a48ad3a
MD5 62fb43e10506467887f1dbe26cd82bd5
BLAKE2b-256 793828de17620a631fe7437557bdb3edcbf8803f3007fd9c70997d6105a0fe88

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bcda9fdb237cab380dac83d7e98a501404f9b8f61e164ece7ea70f4289c9d3d
MD5 83fc4360b31c8b216bdc886c552754a9
BLAKE2b-256 748b6bed6cbd0f5b5d1a8a870ac6193d2f52a558f9bf8a62a5c0e6bc4d2477f8

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69edb6b7620d260aa508741805b07594fc1ec28deda0e42d9010f7e0fa454e74
MD5 44d19c7c2732591fc5a9074c8b42c78c
BLAKE2b-256 4020a90d2dc457f10d1a85cbb1f30652f9919f294b39c58b7caa9271c0d59d77

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 378098804b09cdd1a867856e983dc5f6e89d4bb1bfc8a76595ca30579dc98030
MD5 de7665e893ed537e214989373f707d14
BLAKE2b-256 9a41b389d7c5565e5d07675420a59163bb09a71c950b11046244776e92883fa5

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9279fbac601fcb469c1bbe76fb51ab1023ec380c27e3cbe5be168523990cac84
MD5 745fea187770f7e7dafa657b734879c9
BLAKE2b-256 ef49476bb68cf76ac4992eb0fe0505eddf52d8ae1124307b37b12753c69e4adb

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da7cb6e71e38e7fc8689dc8ddcd48fd19719673c91b32a62e6b6e316230acf3a
MD5 32bed3bd176c4ca873d54cbb8986c68f
BLAKE2b-256 b8fc660b9aa76b440edcb01e5f2f9c7b693ebae02c69f26ede37c60cc9fc1435

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c3398ecf8fd5757d1c204f1829449bf3648ec7bbe1e1715be2182dd9aaddac3
MD5 b759038bddee83116210e4cad9fcca38
BLAKE2b-256 bdaa45d28a7ebe663ac126c374388d21a0ba0a119d92456597b7e40467153f65

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bd81053ca3a4cdb164f192b887cee3e52da0772155426de8aae8bb9e5520e2b
MD5 44f1efef983c5eb00564cdce2f7866e3
BLAKE2b-256 a45f777a35ed1c1dda2ca5090b3f36f7b002eee3521359c52f12a1ba63557f3c

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 221e878208948dd136476a8c5f92674ec38a72adf51721cb9ab96cc6e86ad907
MD5 4a78f3827f8531f5294cb7cb24016e38
BLAKE2b-256 740549d62ba105673c833c04069586d746546bb070432860ee926d1cb643c59d

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45560cf2356492b8602e2451d369493d77a3af1b938f4da4be9cbeea2ec64f0a
MD5 e189b6c86fc6a1185c2a45bd71083bdb
BLAKE2b-256 4c0ad1a97d2f04cde68e3d013c7115f747e89a6eb22584f3c346feb06c4f487e

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 391f8a057afc96bffc3efaa41357355f401ea6e431b975f50e4c54f660e9dd31
MD5 7073f557f0ca4bdc557c717020a5e645
BLAKE2b-256 23ba467049ab9a20b5016d65ee855dd1bfd1496a4485c00b88ec88b5bf3ac67f

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dee97d765958390a8bd719142cb0ecb6c1f78447451e3c872b6a41edcded3b16
MD5 449aec609f605214ddc700b5d4d026c9
BLAKE2b-256 561b8cb75c30473b1084052d29e76fc4cf1f25d0a0e27536e8adb38903556cd1

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 383dc6fce6e9bc55d72ffed2321b796575040c4be34cc20132b8221a598e1cec
MD5 9c0a69768bb0544bd9ea94ddc7e85e92
BLAKE2b-256 0dafd99d814d9d5c66efdfcca5f53a99dc4f267de1c83af86648a0ae5279fdd3

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a365d572c29915c3a5f7b145b3c553f7a017ee4d4a563156980fbc1c4a6ce344
MD5 2dc7eac52738a5e5353aca44a1edfcdc
BLAKE2b-256 ef54f3bdc6d1ea93d033a8f88a2f21ecc4de0c7c3e629ddb5cc0b975f657d218

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10186bac3b1ca08d3785ce296a245bf689dde420e63ad971121d59d2885a4996
MD5 0d3c50348b2cca93a1c17338bf09811b
BLAKE2b-256 faf3436f3aa0fb34e2b75d40528463fdb75e99b19795c1086b36860586af5115

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 717e811c4dafc74d3ca20c5b493544262604074a934b5ce516e10817e1dfb1c8
MD5 5e1f0f5af685f8efd0419dfeac9ba23f
BLAKE2b-256 4a9dd8ac943b294ee875150778d2cda2e852dc722889d91c43f040d63f681fca

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ad8786c63e5d758a681eb97b8620da22083d35e1902fb51bc6e1216433667f75
MD5 871fadcb56118c27687896973c1bd39e
BLAKE2b-256 68a4f709d44de86d29f4eb0ecb9f9ed6bcc416e3521f925e0de2d002bc1278a1

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77ed870da8886a3ee1ab58db49bc6016608ccf06ccc43047dff7a41b251b9c56
MD5 ac8bdf486179b82fb24dbf9d70059e1a
BLAKE2b-256 9d6ca5078f85c33e297466fbe4a3739275dddf41aa50e71517b1726569a917e9

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27e741cc39c70e8e3d8c604bc131d871de93a8ebeddb4a69356e3139731c4c38
MD5 5841db0473e9c0376ed9b685ee9d5f98
BLAKE2b-256 0181e187bd6672226fddc1ddc5af7ea45f9ab60fcaf256ee9604a406a7bd050b

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5138b4211401929aadb6e5393f857564ba5e146751e09fb5b296ab835c4107a9
MD5 4a688b986ada52a59268def0c2e42070
BLAKE2b-256 aa2976b944affa376e2f8afdb8d4e93c35ea3a82b8f53e859da1942f02eb89d3

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cb73f7823f6aa7c882af7804b109a2216567c16b894ca0e35c79a83ecbeceb8
MD5 2dbc45ba3775727a871a2d23991ee4b9
BLAKE2b-256 ab9a44893a19f30ac11c8dd4b5c61c2f6444046be342715a94526e148480c96c

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4bbfbfb5acaca7b9f474fb712a7c475997be850efe8ad138e9c97019a9c63155
MD5 2846a05bc051227873d0b2222cd59187
BLAKE2b-256 782a67ff757341d9f5ec24a8e23f55f4d18947194e326991cf732e06ed679bb2

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acde5944b59591a0ff0ae5c2cbe780c32bb774af600d7790dcf85561c6c65aed
MD5 5c2f9ebb1014f4080e0ad155b93a12b4
BLAKE2b-256 0d6e868e3249a172b242fd959f8f581af19ed804b672bec5f11c79c5001e6be5

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 196f3a323ecd51742c357ae58b38cc73066cb0d4495afa24bbad2afd4b9a6bcd
MD5 6a1319029c8521fd8854d42e8233fc2d
BLAKE2b-256 6bd91262d726c2b2c7ebe144515519da7e3e1f69790cca1ca00814a7039967ac

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26f7dc742b4fccd62b9b1849a0d70488647ecc85b870c587e5512ad650ceba69
MD5 7a676478c2dcf9a06e7e5ddfef31ad0f
BLAKE2b-256 d569c1552836072090d3895649a1dd036d29544596dc766e41fb68fe95c14920

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4193e0148fa2010a943e95bd3230816c9055a8f2f56485bbd06d6beb8d78c847
MD5 86d15ccbad7dfff6882f4fbbe8315d7b
BLAKE2b-256 a5ec7b93d5c9e1872aaa76f5238ebe435d3369a3c3eda70ace8eb8cf462e4e71

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fbba74c269f52ab0fc98365559f7cfbc5d15a1f56b8104fb06b99734be519da
MD5 8883e0e51f0e9f67046f3760b0938db4
BLAKE2b-256 a06dd1df0e52fabd18460caed68abe911b14c64fc7860dda6ec390af45ef916c

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7203c1faee96cda284044938007ea1513c7b54075e69a5b99ab114cb4f14d90c
MD5 1492e5489723ae08dd6b928646c9d1e3
BLAKE2b-256 de3a858d1b581ab52f1678b6284f7d07ac5c52efe8ea3abfce5534323fd6af0d

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2078eeacd431aeb687955771499c6ce0ca3617855f26c0b9d029df301275d25e
MD5 b279fdc31d99af25bde9acd82dff0e0c
BLAKE2b-256 9e89f4a51730145d1c860dd76f6a12c4b7ddad525b471bd8678d7f6387f59658

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90b88a19a680e92d2b4800ca17e8f7ce96f74dc92c88b1939d11c73943636cb9
MD5 ef35e8823cb0a4444590583d02380f58
BLAKE2b-256 41c114b558b6c3af823107b2940c6cb3d3ec43ce1695ec9ff28625d80a23713d

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19d3831a29eb0171f38112b5c1ecf54d8625526a5e99b9b2a69cd6eab8f125cf
MD5 d747c57e0e77134f3f466cbd4b191c51
BLAKE2b-256 30e95861a1209c5ecb63f03438435ac1910260142cb4e1635167f639055e3a31

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38f4429af1d323462026afe333cee41bd2f95fe57f7fd7a9abbf267846646813
MD5 f7f33465af3d12b208e53a9d27a04ef4
BLAKE2b-256 81d939d673e214c882aa8f053c829d9a8fa8a3e55b31a783726df51924a01e93

See more details on using hashes here.

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