Skip to main content

A tensor network library

Project description

Cytnx Build Status (GitHub Actions) codecov Coverity Scan Build Status

Anaconda-Server Badge Anaconda-Server Badge

alt text

What is Cytnx (pronounced as sci-tens)?

Cytnx is a tensor network library designed for quantum physics simulations using tensor network algorithms, offering the following features:

  • Most of the APIs are identical in C++ and Python, enabling seamless transitions between the two for prototyping and production.
  • Cytnx APIs share very similar interfaces with popular libraries such as NumPy, SciPy, and PyTorch, minimizing the learning curve for new users.
  • We implement these easy-to-use Python libraries interfacing to the C++ side in hope to benefit users who want to bring their Python programming experience to the C++ side and speed up their programs.
  • Cytnx supports multi-device operations (CPUs/GPUs) directly at the base container level. Both the containers and linear algebra functions share consistent APIs regardless of the devices on which the input tensors are stored, similar to PyTorch.
  • For algorithms in physics, Cytnx provides powerful tools such as UniTensor, Network, Symmetry etc. These objects are built on top of Tensor objects, specifically aiming to reduce the developing work of Tensor network algorithms by simplifying the user interfaces.

Intro slides

Cytnx_v0.5.pdf (dated 07/25/2020)

News

[v1.0.0]
This is the release of the version v1.0.0, which is the stable version of the project.

See also Release Note.

User Guide [under construction]:

Cytnx User Guide

API Documentation:

API Documentation

Objects:

  • Storage [Python binded]
  • Tensor [Python binded]
  • Accessor [C++ only]
  • Bond [Python binded]
  • Symmetry [Python binded]
  • UniTensor [Python binded]
  • Network [Python binded]

Features:

Python & C++

Benefit from both sides! One can do simple prototyping in Python and easy transfer code to C++ with small effort!

// C++ version:
#include "cytnx.hpp"
cytnx::Tensor A({3,4,5},cytnx::Type.Double,cytnx::Device.cpu);
# Python version:
import cytnx
A =  cytnx.Tensor((3,4,5),dtype=cytnx.Type.Double,device=cytnx.Device.cpu)

1. All Storage and Tensor objects support multiple types.

Available types are :

cytnx type c++ type Type object
cytnx_double double Type.Double
cytnx_float float Type.Float
cytnx_uint64 uint64_t Type.Uint64
cytnx_uint32 uint32_t Type.Uint32
cytnx_uint16 uint16_t Type.Uint16
cytnx_int64 int64_t Type.Int64
cytnx_int32 int32_t Type.Int32
cytnx_int16 int16_t Type.Int16
cytnx_complex128 std::complex Type.ComplexDouble
cytnx_complex64 std::complex Type.ComplexFloat
cytnx_bool bool Type.Bool

2. Storage

  • Memory container with GPU/CPU support. Type conversions (type casting between Storages) and moving between devices easily possible.
  • Generic type object, the behavior is very similar to Python.
Storage A(400,Type.Double);
for(int i=0;i<400;i++)
  A.at<double>(i) = i;

Storage B = A; // A and B share same memory, this is similar to Python

Storage C = A.to(Device.cuda+0);

3. Tensor

  • A tensor, API very similar to numpy and pytorch.
  • Simple moving between CPU and GPU:
Tensor A({3,4},Type.Double,Device.cpu); // create tensor on CPU (default)
Tensor B({3,4},Type.Double,Device.cuda+0); // create tensor on GPU with gpu-id=0

Tensor C = B; // C and B share same memory.

// move A to GPU
Tensor D = A.to(Device.cuda+0);

// inplace move A to GPU
A.to_(Device.cuda+0);
  • Type conversion possible:
Tensor A({3,4},Type.Double);
Tensor B = A.astype(Type.Uint64); // cast double to uint64_t
  • Virtual swap and permute. All permute and swap operations do not change the underlying memory immediately. Minimizes cost of moving elements.
  • Use Contiguous() when needed to actually move the memory layout.
Tensor A({3,4,5,2},Type.Double);
A.permute_(0,3,1,2); // this will not change the memory, only the shape info is changed.
cout << A.is_contiguous() << endl; // false

A.contiguous_(); // call Contiguous() to actually move the memory.
cout << A.is_contiguous() << endl; // true
  • Access a single element using .at
Tensor A({3,4,5},Type.Double);
double val = A.at<double>(0,2,2);
  • Access elements similar to Python slices:
typedef Accessor ac;
Tensor A({3,4,5},Type.Double);
Tensor out = A(0,":","1:4");
// equivalent to Python: out = A[0,:,1:4]

4. UniTensor

  • Extension of Tensor, specifically designed for Tensor network simulations.
  • UniTensor is a tensor with additional information such as Bond, Symmetry and labels. With these information, one can easily implement the tensor contraction.
Tensor A({3,4,5},Type.Double);
UniTensor tA = UniTensor(A); // convert directly.
UniTensor tB = UniTensor({Bond(3),Bond(4),Bond(5)},{}); // init from scratch.
// Relabel the tensor and then contract.
tA.relabel_({"common_1", "common_2", "out_a"});
tB.relabel_({"common_1", "common_2", "out_b"});
UniTensor out = cytnx::Contract(tA,tB);
tA.print_diagram();
tB.print_diagram();
out.print_diagram();

Output:

-----------------------
tensor Name :
tensor Rank : 3
block_form  : False
is_diag     : False
on device   : cytnx device: CPU
                 ---------
                /         \
   common_1 ____| 3     4 |____ common_2
                |         |
                |       5 |____ out_a
                \         /
                 ---------
-----------------------
tensor Name :
tensor Rank : 3
block_form  : False
is_diag     : False
on device   : cytnx device: CPU
                 ---------
                /         \
   common_1 ____| 3     4 |____ common_2
                |         |
                |       5 |____ out_b
                \         /
                 ---------
-----------------------
tensor Name :
tensor Rank : 2
block_form  : False
is_diag     : False
on device   : cytnx device: CPU
         --------
        /        \
        |      5 |____ out_a
        |        |
        |      5 |____ out_b
        \        /
         --------

  • UniTensor supports Block form, which is useful if the physical system has a symmetry. See user guide for more details.

Linear Algebra

Cytnx provides a set of linear algebra functions.

  • For instance, one can perform SVD, Eig, Eigh decomposition, etc. on a Tensor or UniTensor.
  • Iterative methods such as Lanczos, Arnoldi are also available.
  • The linear algebra functions are implemented in the linalg namespace. For more details, see the API documentation.
auto mean = 0.0;
auto std = 1.0;
Tensor A = cytnx::random::normal({3, 4}, mean, std);
auto svds = cytnx::linalg::Svd(A); // SVD decomposition

Examples

See the examples in the folder example

See example/ folder or documentation for how to use API
See example/iTEBD folder for implementation on iTEBD algo.
See example/DMRG folder for implementation on DMRG algo.
See example/TDVP folder for implementation on TDVP algo.
See example/LinOp and example/ED folder for implementation using LinOp & Lanczos.

How to contribute & get in contact

If you want to contribute to the development of the library, you are more than welocome. No matter if you want to dig deep into the technical details of the library, help improving the documentation and make the library more accessible to new users, or if you want to contribute to the project with high level algorithms - we are happy to keep improving Cytnx together. Also, if you have any questions or suggestions, feel free to reach out to us.

You can contact us by:

Developers & Maintainers

Creator Affiliation Email
Kai-Hsin Wu QuEra, Boston, USA kaihsinwu@gmail.com
Developers Affiliation Roles
Chang-Teng Lin NTU, Taiwan major maintainer and developer
Ke Hsu NTU, Taiwan major maintainer and developer
Ivana Gyro NTU, Taiwan major maintainer and developer
Hao-Ti Hung NTU, Taiwan documentation and linalg
Ying-Jer Kao NTU, Taiwan setuptool, cmake
Manuel Schneider NYCU, Taiwan developer

Contributors

Contributors Affiliation
PoChung Chen NTHU, Taiwan
Chia-Min Chung NYCU, Taiwan
Ian McCulloch NTHU, Taiwan
Yen-Hsin Wu NTU, Taiwan
Po-Kwan Wu OSU, USA
Wen-Han Kao UMN, USA
Yu-Hsueh Chen NTU, Taiwan
Yu-Cheng Lin NTU, Taiwan

References

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

cytnx-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (89.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cytnx-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (82.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cytnx-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (97.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cytnx-1.1.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (83.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

cytnx-1.1.0-cp314-cp314t-macosx_15_0_x86_64.whl (26.4 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

cytnx-1.1.0-cp314-cp314t-macosx_14_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

cytnx-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (89.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cytnx-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (82.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cytnx-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (97.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cytnx-1.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (83.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

cytnx-1.1.0-cp314-cp314-macosx_15_0_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

cytnx-1.1.0-cp314-cp314-macosx_14_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

cytnx-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (89.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cytnx-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (82.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cytnx-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (97.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cytnx-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (83.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

cytnx-1.1.0-cp313-cp313-macosx_15_0_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

cytnx-1.1.0-cp313-cp313-macosx_14_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

cytnx-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (89.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cytnx-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (82.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cytnx-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (97.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cytnx-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (83.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

cytnx-1.1.0-cp312-cp312-macosx_15_0_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

cytnx-1.1.0-cp312-cp312-macosx_14_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

cytnx-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (89.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cytnx-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (82.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cytnx-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (97.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cytnx-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (83.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

cytnx-1.1.0-cp311-cp311-macosx_15_0_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

cytnx-1.1.0-cp311-cp311-macosx_14_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

cytnx-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (89.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cytnx-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (82.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cytnx-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (97.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cytnx-1.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (83.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

cytnx-1.1.0-cp310-cp310-macosx_15_0_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

cytnx-1.1.0-cp310-cp310-macosx_14_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

cytnx-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (89.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cytnx-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (82.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

cytnx-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (97.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cytnx-1.1.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (83.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

cytnx-1.1.0-cp39-cp39-macosx_15_0_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

cytnx-1.1.0-cp39-cp39-macosx_14_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

Details for the file cytnx-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31dd48f289c17501abaaa24937b741a7e1abfdedd70b388bc44e64dce07d9a9e
MD5 6707ee9fb14d06ae8240d034e201c345
BLAKE2b-256 b960cff4339abfea4424ec5e200f0b1b3286f615f21ac9025444d093283399cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ac4890319917fc250550bbf1a24f14baffb66c4b0da364dcbbebd46e469c448
MD5 b6e57692128cd2a7c607f2c9a4e83589
BLAKE2b-256 4875823a0ceb3bf34eb46f83afa8652ce50ab0d94485187bb3235a77e74eeb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52096261f74880c80f89d70f8f2d6a64bbe689e83c608017d5d09691cfe42020
MD5 9b224a0fcb94d297d0881893713fe80a
BLAKE2b-256 6f2df361f55e7d83682ecb3cf2fbdfd7a73c68922a99423177640e8c9df52a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5ae5849bb464f265a3d8c42b1b051f1eef3d2c61f5cbee537bcb02a09dcd085
MD5 5fe0c75b2a56b746d72b597374486402
BLAKE2b-256 bb268bb5f77588fa7c87f3b41ea86f5a25cbbb435db7cdc1bedec6780f15c651

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 218c7fdc655eb26aaf642c7d66de64fac315b3b00a05630f4ab84bd9202988c9
MD5 18855003802f8e732c056a8f5ee9d723
BLAKE2b-256 026dce6cf625e4d5f63fc3fd244901a731bb5f5fefe5f289e3ded1797419fbb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5b14d303599093f9df6376210e151a90558a57c5f57e2e1be1e779fa9e8f7b4f
MD5 d533e832673a39c172ce92b34d866ac8
BLAKE2b-256 d33ffe3661052c6e8da355e199e399788a3078b20c6ba9f64f0e4f5bb32b8b33

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314t-macosx_14_0_arm64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 784c1b120136e438f8529260abd95d768445d491918b5c9755b100e3e4346735
MD5 21853c11a73e663498a18dbb7615b176
BLAKE2b-256 c65f3301246ca0d3d0f43053237690a4de9ae94ff05c52de5bfb956ea0d6a1fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41558b604bf24bf26a6b3ad90f89fa224cd3da75f3e0d2019d65594ccbb9707f
MD5 235568a8269653cd1d7f440bddba34a5
BLAKE2b-256 396e2203cf6344e48e8bdbe866cd24f0f28235eaa035bf2261354666c923c5b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2ccac4d534b51adb4a31fd771a043f82ae42445cce8cdb1df4babfea72bf92b
MD5 31c77ea3fd97b148f08e1e0d4665dfe7
BLAKE2b-256 7ea9480c78509b8e2d206dda121767b3850bc881585f3d4191e3073d836cbe6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c52de1d0edf0aee0abb48633274552c9af92fa4e93781b8cd63d0140100354c9
MD5 557c67f41e39664f61b6c7f8363dfb1b
BLAKE2b-256 3b720243811fa829755d2137e88ccfe542b937430cedaab4136c5555b92ab9f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f5d878d1066ee6782695b28cf734df83d5aab58ee048067cfb4b84dbdf106f88
MD5 07e7e65c552af37af3e7fce7a251970b
BLAKE2b-256 07d24afc6ed9e822d065529810f357865b6040116f1410f057a7f88e43cc363d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3c0e6c5513421e9e5d612f22cf6eaaf23ff9c5985b8efe0bf2081ff1f98dfbe8
MD5 8d2a7bd480adefa43e8b5cc5ceb18b0a
BLAKE2b-256 c6ea4c01845ca528a73152f8730d0aeaed3e828baa59af2dd09aeab433d64f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d92e1b4e7424de230af6ebba43236749e9c5ed5c50a07971192ca1f8d48c1ac
MD5 127fc829a63a7a94c110936b8bf6fa3b
BLAKE2b-256 0958bf379a85b84a86fbf640bb37d59c5113522bbd4966063ea885e6315d6267

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec253fa6adff53eb42530add2f5e2b2b6be1aabc8249a4fdff3812aea3b71170
MD5 cef4e1bc077e286940fcbdd65719bcba
BLAKE2b-256 17e473b1ecb7dcdc60c6d7c47f7628e83aa96b2dd7d4a72d5e103d0783a6b876

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de64d305404997e006827deb1f6e57e9acc3f2c71766536122d902d9b238ca3d
MD5 cbdb8fd3a6b424b282849d53804b3f22
BLAKE2b-256 80d077a1f7e639a5df5ff313e4f76c3d437d2b73a5e49f4018278e4084135fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 925ce4b6145fd8b3ae991584bcf9828e0677985c8a1a9a800a18b19297112d66
MD5 cb20f13ba4a360102c23263f6ec92389
BLAKE2b-256 0df97456677fb0f353691ef91a86d9d90922f512995e31064596e9dab4b22731

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5770902979d31b2711e2d58719f3b5afc757d737d41515c5ddf2888fe8398473
MD5 3a5d710e90f26ef39d18d87876c7c06a
BLAKE2b-256 1d5bf255280971ccc66de2dd1cb0d4d1369cef462cbfac88538d81e1ee911e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 368cab67ab36d63cd60da94e1857c521c0ed2e5454bca80e8d0ff77ce7bbf0b6
MD5 aefb1136b772a192c46c1e250f24c18e
BLAKE2b-256 90a45a7c22bb6655280ae9c0702981d56c12916dbf88b05f3c5074e3f349ac00

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f70d99bebded8adf3afb9ebea639dd2714d1b253043e5686f199937e8d7422f
MD5 39350f10cd425c8cb918722806ffb46b
BLAKE2b-256 52a67c108e08748d10850b199d9818cc55160b77644f745b013adec534a47d42

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b7b34ac0b999fe640cc586a42350da8258eaf34772ea815b89e6395a4cb1291
MD5 f2c12c83d020a44ee5fcaa653ebddd5e
BLAKE2b-256 bb571dda80b943f4dd78617722090b385bd8d7bbe2d4bf596aca7d1b9be3db95

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbb01b9b52a2a19b5cf27b37526543906e519c12bd974a84989b8565fe13fa03
MD5 167957bb50114fe513fd53ca9f75d8f6
BLAKE2b-256 f8472c45cf3df106dd3b69bafbe415e7dd27658c54100f8bf2b3503eee5814ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d3c4aab0d6cc55a6c4037ce1908b3c5b04a873706b82359474f1f2e480a5f33
MD5 e28ef58b0116091d4e9b9d413b00c41c
BLAKE2b-256 5a5701f2270ece8f3ca582dfc8f5c47ce3af2df9f9d1443a251996021e6b32d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5946580d98384999de1924dcf1e2938b788509a09569a2df26681b212e5db06d
MD5 63dee7859e0f6bca09c4b100a56e7893
BLAKE2b-256 6292ac41fbf988a55ccf627ff015e962340b774fa550303de3ebbc2e5a3082b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4ff4e3a422fc7e5e33217726fe2a4b205d7e2bc687dfd5ac320682cfca16a14a
MD5 3655981ea860755fac8d4152068a5f73
BLAKE2b-256 e6bd217c17254bbb52558648e880afd757351d206604679d8855ddc17ecd0a6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e17022b37eccb21fa11228b780c96084709b8ab2ed4991b803c5d07e69fb8882
MD5 5e11979e93c7f95ad2e96a52454720e9
BLAKE2b-256 67aea62dc3613fc0d5a0e581fb380aa67d7c52ec886cdf268e2cff3ff9ffef8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d08f140833867f6bae68a506363776261c8871ca8ec82e506a595b042d24daf9
MD5 3c174fca8a8f36178ea0bae897b19398
BLAKE2b-256 657b001451f8df86a7b220dfcec24c8c62ee872b528045f571ae8427bb57fe2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 924061313bebc673c0531cdb21053b75071d7a908442bb3da158a8350cfe84f2
MD5 70633b9dc6f1b4759bf480f9207cb968
BLAKE2b-256 87610bf790d7a9582fa7343c74c347ff4824fb2ced078df4f0048b4bd5373835

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af71aee79ae370ea27abcc2cf353fb51a458168d99848dd28b6495d353ba3b5f
MD5 13a23a39db4c6ed1b19e437438110622
BLAKE2b-256 0623eac6195b89691e0aab6eae694af62e08a40873655ebf0382344a9af18267

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3d5905c866525c86ff00b39f0a2d0b431c268d3b45eb1c8370a6a599faafb73c
MD5 0f8c93d8fa75b305cdb2ea86eda9e3a7
BLAKE2b-256 7a5bd92c4ea9155cf644452c3c1d6c87c641ee43d8e1a4465946a4556ecf3f9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e69fdedb34a195be2262a6d636ad996592cdd1649973b15f611eafcbbfdb57c6
MD5 b3cab91e1d5e05c124de344ae9fe37a0
BLAKE2b-256 2162dab311fda7b18ce615918bff413b7ba87357aa85ec353f215b7312a488b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c788e8ff65e093d6313d9944b4b654331cc55a341995bcdb11cd4b1b5275cd35
MD5 fa8c79160afcd185d6903de0f3c2e1ae
BLAKE2b-256 8b7fbb93978ddbd64e47959054779b97f4d86619a6abef8ca37d530141241691

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5819b81ed7d874170414e7eefa17bef75d8f3401ec498f8d9256ad407c8ffd16
MD5 cdc42b95e62cf7a779377a312ed4a908
BLAKE2b-256 27a856249d1f56ba22b95243ee9e67a488bb2f8f1fbb0a4ae62fa28f1577d50d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25e91df413a7189a539e07ce304915ddad824d94c65e7e59a3427a8a14be74e5
MD5 cda750cd82fcc927657035d327cbeaa6
BLAKE2b-256 62668f4d369e4adc6be9be7094c77a56c1841d7957ec6e7ee9cda5a5dda26cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d46bcfa447fed52e0f81bdf4911c323f75f131f02c2b8c4de4e90a7cdd4c5e8e
MD5 96b6e249c19cd508171471cd81fb6b66
BLAKE2b-256 cedcbf68b18fec9eb57d1f30adb9c92e39df4f7dc0015393c1a433d55407629e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 38bfd050486948c5fca73cb083bd6f7cd7b78c2447e099388df5b05a1fc16522
MD5 d69e01e8265bf413e85b20a64ddf096d
BLAKE2b-256 9bb5890354deaa6d111024e5241662bffc7ecb4320c2b9b66624528851cff292

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c1f62fead1b426252d064ecad5f9ecc493ead93ab8600f6dfc3a864010b3fc31
MD5 3d6693c3328841a66d8387c67917c52c
BLAKE2b-256 68d656aaf3f5e7422bae585a1166e9e5e0a27815780f57d9a9b093bcdaafecc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cytnx-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 89.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for cytnx-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2457be090c4886e3da1b9a516d3ec0185ec74235dc36bf2bcf0af41d00f7230f
MD5 eee99304e29b3c600394d9d3960f12c4
BLAKE2b-256 509163584a625e6c4d944db268e3abfa4bbd7024fe9a65c67f40324492b0aadd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 083c781367afcb7013ead3d952e8c09013abc727d8e29baf38c5833747c35f46
MD5 f5a87d033c71eb54aa92b5aedc57403e
BLAKE2b-256 a5222c870889091b9e0c671254c4ed892994149cfa02b42280ebae6fa4e8fed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b19db1d44d10d97f531cdd334573a170c891115b912cea66cb1e8480b531bcf
MD5 bb5812269219197e4b90e07c0af8d406
BLAKE2b-256 818726ac44a125a2fb46b5b54e9ad9940c8d779fa9f426527bc0539ddf79fc9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 356f0adef5e891b420b49748cea57ede7f3cb458e25091e96d4d6effd00992b0
MD5 8a80d9b00eeddbb46fede0195548ccd0
BLAKE2b-256 58007a8749fb7de76ccc871a263158be12482d3f807f5859ac43e95ffa1abb64

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cytnx-1.1.0-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f94fd636a48be843b6a12d4579d61c80adb2242029c245ea9741d5a6ab7ee30f
MD5 5cebc6803595759972a39fe642999ea5
BLAKE2b-256 c408cc8954a91a654768156764dee525708cb32e291ce3e19f8d91153c234fe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp39-cp39-macosx_15_0_x86_64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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

File details

Details for the file cytnx-1.1.0-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

  • Download URL: cytnx-1.1.0-cp39-cp39-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 20.4 MB
  • Tags: CPython 3.9, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for cytnx-1.1.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3c3fa52c7144b905dbb52a32a4b3660ba37ab45af3aefc478578e8484dba5eff
MD5 36216ddd130ceff21b3a4c009d258905
BLAKE2b-256 7751f6665e7e1e0767caead10a22ca2536518a5445ac0a90da3af050c99143bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytnx-1.1.0-cp39-cp39-macosx_14_0_arm64.whl:

Publisher: release_pypi.yml on Cytnx-dev/Cytnx

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