Skip to main content

ml_dtypes

Unittests Wheel Build PyPI version

ml_dtypes is a stand-alone implementation of several NumPy dtype extensions used in machine learning libraries, including:

  • bfloat16: an alternative to the standard float16 format
  • 8-bit floating point representations, parameterized by number of exponent and mantissa bits, as well as the bias (if any) and representability of infinity, NaN, and signed zero.
    • float8_e3m4
    • float8_e4m3
    • float8_e4m3b11fnuz
    • float8_e4m3fn
    • float8_e4m3fnuz
    • float8_e5m2
    • float8_e5m2fnuz
    • float8_e8m0fnu
  • Microscaling (MX) sub-byte floating point representations:
    • float4_e2m1fn
    • float6_e2m3fn
    • float6_e3m2fn
  • Narrow integer encodings:
    • int1
    • int2
    • int4
    • uint1
    • uint2
    • uint4

See below for specifications of these number formats.

Installation

The ml_dtypes package is tested with Python versions 3.9-3.12, and can be installed with the following command:

pip install ml_dtypes

To test your installation, you can run the following:

pip install absl-py pytest
pytest --pyargs ml_dtypes

To build from source, clone the repository and run:

git submodule init
git submodule update
pip install .

Example Usage

>>> from ml_dtypes import bfloat16
>>> import numpy as np
>>> np.zeros(4, dtype=bfloat16)
array([0, 0, 0, 0], dtype=bfloat16)

Importing ml_dtypes also registers the data types with numpy, so that they may be referred to by their string name:

>>> np.dtype('bfloat16')
dtype(bfloat16)
>>> np.dtype('float8_e5m2')
dtype(float8_e5m2)

Specifications of implemented floating point formats

bfloat16

A bfloat16 number is a single-precision float truncated at 16 bits.

Exponent: 8, Mantissa: 7, exponent bias: 127. IEEE 754, with NaN and inf.

float4_e2m1fn

Exponent: 2, Mantissa: 1, bias: 1.

Extended range: no inf, no NaN.

Microscaling format, 4 bits (encoding: 0bSEEM) using byte storage (higher 4 bits are unused). NaN representation is undefined.

Possible absolute values: [0, 0.5, 1, 1.5, 2, 3, 4, 6]

float6_e2m3fn

Exponent: 2, Mantissa: 3, bias: 1.

Extended range: no inf, no NaN.

Microscaling format, 6 bits (encoding: 0bSEEMMM) using byte storage (higher 2 bits are unused). NaN representation is undefined.

Possible values range: [-7.5; 7.5]

float6_e3m2fn

Exponent: 3, Mantissa: 2, bias: 3.

Extended range: no inf, no NaN.

Microscaling format, 4 bits (encoding: 0bSEEEMM) using byte storage (higher 2 bits are unused). NaN representation is undefined.

Possible values range: [-28; 28]

float8_e3m4

Exponent: 3, Mantissa: 4, bias: 3. IEEE 754, with NaN and inf.

float8_e4m3

Exponent: 4, Mantissa: 3, bias: 7. IEEE 754, with NaN and inf.

float8_e4m3b11fnuz

Exponent: 4, Mantissa: 3, bias: 11.

Extended range: no inf, NaN represented by 0b1000'0000.

float8_e4m3fn

Exponent: 4, Mantissa: 3, bias: 7.

Extended range: no inf, NaN represented by 0bS111'1111.

The fn suffix is for consistency with the corresponding LLVM/MLIR type, signaling this type is not consistent with IEEE-754. The f indicates it is finite values only. The n indicates it includes NaNs, but only at the outer range.

float8_e4m3fnuz

8-bit floating point with 3 bit mantissa.

An 8-bit floating point type with 1 sign bit, 4 bits exponent and 3 bits mantissa. The suffix fnuz is consistent with LLVM/MLIR naming and is derived from the differences to IEEE floating point conventions. F is for "finite" (no infinities), N for with special NaN encoding, UZ for unsigned zero.

This type has the following characteristics:

  • bit encoding: S1E4M3 - 0bSEEEEMMM
  • exponent bias: 8
  • infinities: Not supported
  • NaNs: Supported with sign bit set to 1, exponent bits and mantissa bits set to all 0s - 0b10000000
  • denormals when exponent is 0

float8_e5m2

Exponent: 5, Mantissa: 2, bias: 15. IEEE 754, with NaN and inf.

float8_e5m2fnuz

8-bit floating point with 2 bit mantissa.

An 8-bit floating point type with 1 sign bit, 5 bits exponent and 2 bits mantissa. The suffix fnuz is consistent with LLVM/MLIR naming and is derived from the differences to IEEE floating point conventions. F is for "finite" (no infinities), N for with special NaN encoding, UZ for unsigned zero.

This type has the following characteristics:

  • bit encoding: S1E5M2 - 0bSEEEEEMM
  • exponent bias: 16
  • infinities: Not supported
  • NaNs: Supported with sign bit set to 1, exponent bits and mantissa bits set to all 0s - 0b10000000
  • denormals when exponent is 0

float8_e8m0fnu

OpenCompute MX scale format E8M0, which has the following properties:

  • Unsigned format
  • 8 exponent bits
  • Exponent range from -127 to 127
  • No zero and infinity
  • Single NaN value (0xFF).

int1, uint1, int2, int4, uint2 and uint4

1, 2 and 4-bit integer types, where each element is represented unpacked (i.e., padded up to a byte in memory).

NumPy does not support types smaller than a single byte: for example, the distance between adjacent elements in an array (.strides) is expressed as an integer number of bytes. Relaxing this restriction would be a considerable engineering project. These types therefore use an unpacked representation, where each element of the array is padded up to a byte in memory. The lower two or four bits of each byte contain the representation of the number, whereas the remaining upper bits are ignored.

Quirks of low-precision Arithmetic

If you're exploring the use of low-precision dtypes in your code, you should be careful to anticipate when the precision loss might lead to surprising results. One example is the behavior of aggregations like sum; consider this bfloat16 summation in NumPy (run with version 1.24.2):

>>> from ml_dtypes import bfloat16
>>> import numpy as np
>>> rng = np.random.default_rng(seed=0)
>>> vals = rng.uniform(size=10000).astype(bfloat16)
>>> vals.sum()
256

The true sum should be close to 5000, but numpy returns exactly 256: this is because bfloat16 does not have the precision to increment 256 by values less than 1:

>>> bfloat16(256) + bfloat16(1)
256

After 256, the next representable value in bfloat16 is 258:

>>> np.nextafter(bfloat16(256), bfloat16(np.inf))
258

For better results you can specify that the accumulation should happen in a higher-precision type like float32:

>>> vals.sum(dtype='float32').astype(bfloat16)
4992

In contrast to NumPy, projects like JAX which support low-precision arithmetic more natively will often do these kinds of higher-precision accumulations automatically:

>>> import jax.numpy as jnp
>>> jnp.array(vals).sum()
Array(4992, dtype=bfloat16)

License

This is not an officially supported Google product.

The ml_dtypes source code is licensed under the Apache 2.0 license (see LICENSE). Pre-compiled wheels are built with the EIGEN project, which is released under the MPL 2.0 license (see LICENSE.eigen).

Download files

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

Source Distribution

ml_dtypes-0.6.0.tar.gz (3.0 MB view details)

Uploaded Source

Built Distributions

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

ml_dtypes-0.6.0-cp315-cp315t-win_arm64.whl (572.7 kB view details)

Uploaded CPython 3.15tWindows ARM64

ml_dtypes-0.6.0-cp315-cp315t-win_amd64.whl (465.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

ml_dtypes-0.6.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (430.8 kB view details)

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

ml_dtypes-0.6.0-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (362.8 kB view details)

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

ml_dtypes-0.6.0-cp315-cp315t-macosx_10_15_universal2.whl (589.9 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ universal2 (ARM64, x86-64)

ml_dtypes-0.6.0-cp315-cp315-win_arm64.whl (568.4 kB view details)

Uploaded CPython 3.15Windows ARM64

ml_dtypes-0.6.0-cp315-cp315-win_amd64.whl (457.2 kB view details)

Uploaded CPython 3.15Windows x86-64

ml_dtypes-0.6.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (410.0 kB view details)

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

ml_dtypes-0.6.0-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (360.3 kB view details)

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

ml_dtypes-0.6.0-cp315-cp315-macosx_10_15_universal2.whl (562.5 kB view details)

Uploaded CPython 3.15macOS 10.15+ universal2 (ARM64, x86-64)

ml_dtypes-0.6.0-cp314-cp314t-win_arm64.whl (572.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

ml_dtypes-0.6.0-cp314-cp314t-win_amd64.whl (465.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

ml_dtypes-0.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (430.6 kB view details)

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

ml_dtypes-0.6.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (363.1 kB view details)

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

ml_dtypes-0.6.0-cp314-cp314t-macosx_10_15_universal2.whl (590.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

ml_dtypes-0.6.0-cp314-cp314-win_arm64.whl (568.4 kB view details)

Uploaded CPython 3.14Windows ARM64

ml_dtypes-0.6.0-cp314-cp314-win_amd64.whl (457.2 kB view details)

Uploaded CPython 3.14Windows x86-64

ml_dtypes-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (410.0 kB view details)

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

ml_dtypes-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (360.3 kB view details)

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

ml_dtypes-0.6.0-cp314-cp314-macosx_10_15_universal2.whl (562.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

ml_dtypes-0.6.0-cp313-cp313-win_arm64.whl (552.3 kB view details)

Uploaded CPython 3.13Windows ARM64

ml_dtypes-0.6.0-cp313-cp313-win_amd64.whl (439.4 kB view details)

Uploaded CPython 3.13Windows x86-64

ml_dtypes-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (410.2 kB view details)

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

ml_dtypes-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (360.2 kB view details)

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

ml_dtypes-0.6.0-cp313-cp313-macosx_10_13_universal2.whl (565.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

ml_dtypes-0.6.0-cp312-cp312-win_arm64.whl (552.3 kB view details)

Uploaded CPython 3.12Windows ARM64

ml_dtypes-0.6.0-cp312-cp312-win_amd64.whl (439.3 kB view details)

Uploaded CPython 3.12Windows x86-64

ml_dtypes-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (409.9 kB view details)

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

ml_dtypes-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (360.2 kB view details)

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

ml_dtypes-0.6.0-cp312-cp312-macosx_10_13_universal2.whl (565.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

ml_dtypes-0.6.0-cp311-cp311-win_arm64.whl (551.9 kB view details)

Uploaded CPython 3.11Windows ARM64

ml_dtypes-0.6.0-cp311-cp311-win_amd64.whl (433.7 kB view details)

Uploaded CPython 3.11Windows x86-64

ml_dtypes-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (412.0 kB view details)

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

ml_dtypes-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (356.9 kB view details)

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

ml_dtypes-0.6.0-cp311-cp311-macosx_10_9_universal2.whl (566.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

ml_dtypes-0.6.0-cp310-cp310-win_amd64.whl (433.7 kB view details)

Uploaded CPython 3.10Windows x86-64

ml_dtypes-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (412.0 kB view details)

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

ml_dtypes-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (356.9 kB view details)

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

ml_dtypes-0.6.0-cp310-cp310-macosx_10_9_universal2.whl (566.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file ml_dtypes-0.6.0.tar.gz.

File metadata

  • Download URL: ml_dtypes-0.6.0.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0.tar.gz
Algorithm Hash digest
SHA256 5e60251d32ced5598972e4d5e06a2f044341f9291402551a3f6f0ec44f9299b0
MD5 5e6823a0e2b606d38349e7f31a75d30d
BLAKE2b-256 1272307d7c4bd0600601c7133fba5cb78af7db968152951c1cd473abb1cda782

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0.tar.gz:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 572.7 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 f6cb525101b6b903779188c1e9e9490c343b455ab822883e02cf01e5547338d2
MD5 2f58f487d67cd03028d3709428ac12d8
BLAKE2b-256 5affbda40387b5c5c64254595f4d81a12351770856acc5de4e6d43606a31f161

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp315-cp315t-win_arm64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 465.1 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 ce7563e0b1a4482cbc1b4a6272145e54e4489e54fe7428f94908c3d87103abfa
MD5 c12e3077c313876686a4ca03a318e6ca
BLAKE2b-256 93d2f2dbf118f42ce4c325a139c9236737f436b7f8e00cd18701c99ef2405e6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp315-cp315t-win_amd64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2d6149f3a57f405bcad5fb41e03218b8373936253f23e1ca84c0108abbc3392
MD5 ea64b689b9f3135acc87a83b7fadfdbf
BLAKE2b-256 598f3298e3f334832bc28dd144af6b99cdc93502a8687e71922ea68b0a319929

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31f1ce979d31a357e95aa81812f20412c8c954fa43c44ee3ead1e1c8a78575ef
MD5 ef521fe0e6dad83f887f415af3858196
BLAKE2b-256 fd81d5924a141b850b606eb027493c9c3ca3c665cca5163af3f5b6e5e3345503

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp315-cp315t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp315-cp315t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e25bb3b0ad1217b60626e4ed45b10ca170c41d99fbe44a12bebc1e07ec4aad55
MD5 a26704b8d3c2b6341488ee3584e80a5d
BLAKE2b-256 72f79a5edede28f73185fd51d75030ef7f11d76997bab3a92427d986e54fe2eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp315-cp315t-macosx_10_15_universal2.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 568.4 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 de9d14748dbf3968951436ef514a29c9d1fe438aa680d110134ee2f7a9f9df18
MD5 8acb0987644cfa0d772555c103c9abc6
BLAKE2b-256 6300bee1bc9faa02a46e7a851019fd23f47ca1f906609edbec8b6ba5decc3cc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp315-cp315-win_arm64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 457.2 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 488c99ab181a2f59d9ec3b12c5fa11ec904e92be2c4ba18cded54dd7501208fe
MD5 faf98598095f0b4672e2cbf6b536c040
BLAKE2b-256 c82ef61c54a0544b6a170ac1bb89bcf406af53fb2deffc5476b6d2d3df5ba13e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp315-cp315-win_amd64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4f1b9329a251e4affe3bb58f4d3e2db22a714396fd7ffb40d0b5db423c24d17
MD5 837f64c2dee8868b9b3adb42402bafc2
BLAKE2b-256 b629b7165a3a76364a5baa6aa4ee82a0adf73a3c014b8cd126120b62cc087992

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c6ad60af4102789a5c09824004beade2f7f28cd1cd581ee5c170d9dc2fbb00e
MD5 48fb734dfaf33b5d3d31233c3de509d0
BLAKE2b-256 0756844eff5af7a2d1a09d75df12c70225c3a6b6a771f95876b2bf5f7d10ad44

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp315-cp315-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b1b503864fada3f74fabf8d9fee7b4c1cbe956301e6fdece975d5f77c2fce958
MD5 f43b6a0e84fe81d14b24b7e6bfbffd6b
BLAKE2b-256 124246cb442648e3c774d8cb25f2e1e41d496cdcc91fbe9c2a6f75c0b8df7af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp315-cp315-macosx_10_15_universal2.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 572.7 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e74266ca8e97874a937b7646378c178025650a236584f7474d10d8086a6edea3
MD5 95378bf6fb58069b32b4470455210726
BLAKE2b-256 aacabcb25e246edd19af5fa1cf6267040bd9977a7afca846e6cfd4a52078b44f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 465.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3be9911d953f97cddded4b9961d7b650473b7e55806d20f6176f8356dfe7b38e
MD5 10ef0c6a73218245d9f969d3f87aa51d
BLAKE2b-256 c46f962d2c589513b5930d05b6eae5fbd22ad8bbcf26bb763449f3d8f912360f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b76fa1d3f92967d58289ac47ab7458ede66e6f3527fff3e59142aee57d9307cd
MD5 14c8a859495c3772b56aebefc7163ec8
BLAKE2b-256 0cfb8091c0aee7f2712de99c7fd4b1642382644dec6a4962effe4f5b9d16a973

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 573b11f3c327e17ef3826d266e676cf1149a1f3016f822a05f2306c55d8246bf
MD5 1b1f5af4b8ddfb2edc96ef537e810431
BLAKE2b-256 d7a299b3d9b3c984b3bd1e81d8244f1fa2f812e44060d853205b2df6271aa17c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3e169214e0d80ff1c038e1b3017e33c23e43bdf948d42d31de8283111c7e2fa3
MD5 57c62aeca6eb9aa633fed77904540246
BLAKE2b-256 653632e7beef3281fed74883451477ad976364323206dbfaa95e948ba788dac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 568.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f4adb4af61516510d786cf8c01851a66f6d3ddfa79e1144deaa5b40d8507231e
MD5 bafac1c2c5d82188208067e35577bf6f
BLAKE2b-256 413ddd98205418a13353d41c52bf5326d8cbec515aace46174e23c6ea01c2978

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 457.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d574c2b28921dc72e869df248f1a278f6eee176a1f237c8642e1a71eb15f3977
MD5 352a3239fc1ab561b967e40923e1f0ca
BLAKE2b-256 ffad9c32c53f823dda3742df19a79c10bc198365937873ea125ba65747440c23

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f490c003369ce60e514a0c3b12374f05274c101fee1bead6740ec8a564032b0
MD5 7f05f42e4be011c02af676a189871449
BLAKE2b-256 1cb11831dd8c9b06c013085d31a2ac4f03392d43bd36bfc6ff591a08bcedc1cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 317be9967fb84b0ce4e80e6b1bf71213d21971621cf6f1e501a63602a95297bf
MD5 96446937dfe2f2d0e7310ba930f4bbb8
BLAKE2b-256 db4877f0ede10558d0d935da2e3276ed7e9c8cc2bad3463b9a0b66b03fc60be2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 84fa136b8602c8c39e3b6cb24918960cd6f36cade7a70376f56770729cd56510
MD5 9b254fddec5bd5e1006ac9310bc95453
BLAKE2b-256 d97a97dc35667b7c9db33c5344c673cd27f87e34771875ea7100138726132ac9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 552.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 57ed0d6b4ac5e7868361303a9c57fbcf63b768236ee14456f585dfcf260d0292
MD5 9ada4e02940e9f10a4453aaa7a46fd71
BLAKE2b-256 b15d6a01538e507ef0ed5e879985b13a92467bf8960696fb1131f8b8cadc60ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 439.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fb87f46b4f7ad7b5d3ad8f4b452b024bd4229d44c8ff934798c1fe656210387a
MD5 bb959c26da5bcfa054a77a78e92e9c04
BLAKE2b-256 e2554561acefa00fa4bcbfb82ca6a48578b41f372cd7dd7cdd6eb4720abc2e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26b1f1fa4f0435a2946859823f6e2bf06796f1e9f10f5a05b08a5e3c8f46ff69
MD5 3327a4044f9df0cf94cb0975f03d0b7e
BLAKE2b-256 89a5da8ae6c6f1babe4b68e3e55d43d39b529e29774f10e0910671a6b8c86eb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28d676428b104bb9717b0928bc5c5129f2d6b51b6727587cc4289e7bf8713cb5
MD5 29ca1db0c3750489978d2ed6aba95356
BLAKE2b-256 d22220fd70ca6ed12446cb92d5b2a7745bd185f9d8b8cdeeadad976574398e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 084dfe51a7ad58b171f05115f8226ed4233a454a1611371947e806e76f0c638d
MD5 168e1f53605b9c8d633f9086b0972dc1
BLAKE2b-256 5051fd1582b8f5ed8a9e7be0e161a6ea0dff70cb280479a12178df0b3a72700e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 552.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6eaed129a4afe90694b8685e2f9b6294849f5eda4af9a15be83a4326eeebd775
MD5 e79d163a2d2103591b074bfb7f84b717
BLAKE2b-256 6a57780ca3e5ab135b9fbdd8e5441abf5f801b30398371b691291e05ab9834c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 439.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2a3e9d53925597fbffafd2a37048dadeddd0bdaba58058f6ae0869ed709a184d
MD5 f2fbce81e4be04f03427ee85fe3fe9a3
BLAKE2b-256 badb9c61ec2760b5cbfb1c6558d5c991a6d8fd3271053c32db20506a9a90272b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b4a480aa8fd54a1805b8ac10f3f91763926a74f73c0c364c10f9231854f4170
MD5 da9c8c5b30a530cdff9227bb9ed64f77
BLAKE2b-256 c7f97d76c1eae866f5d4636401b31b6d6dd90e4b4ced1fa7cfdfcca9c60e4bd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37da32aa97749251025666d62372775019594577b9c9e9cfda83bed48d778fdb
MD5 28fcd71c23f7fa06b621edb14f51f00b
BLAKE2b-256 edcf87e8a6c57eed63a91782a0d229856ddf73e138ce004dd71e2799a9dcdb33

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5359c588cc62de6f78d7430f06b65853d884955494d86d6ad90b6dd64a3f3a08
MD5 ab7b1d6c104150b6f866b243f54d3582
BLAKE2b-256 846a441eb053b078954f7fea284dfb288701884d0a1404d39babb858e1649023

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 551.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5a519c9e95a216fbcb8e759793ef7fb40793fc803ed839142d6dc5be9be5bc89
MD5 5406e3b1e649440e7b775731f3b74493
BLAKE2b-256 cf7a5d8fbe24d0bffd0d7cb5165a89f8ab7c3de000f26d6705242aeed99d583c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 433.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3035518e3e19add1a4cac9236ab22888b208a4074912514313ccb2d6d242cde8
MD5 09d0d14c6aaab00ca4af919b237035bb
BLAKE2b-256 07238870bb62d6e499d6bcbc1242b9f11689bae00a3d39d3684a9aefad8b6ee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c8e39b53e90afda8ce52859c93de4dba3e02b76d85dcf091cc469f9184c6dae
MD5 51bdfc92ec59fbb1fc5b9d24794b0fc1
BLAKE2b-256 2eb1135a7bf47633f5b9184f0d0316af819884124d12b40965064bd216266514

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7728c0420ec1c338564fc8b01015ff2d58567e70f17fedce5a0a7c0308c0d5b9
MD5 2b729525f90f73b56a8ac06609986518
BLAKE2b-256 d983706b8a39449f0d55a7d5f7d07a169da4decfafae8a1f4983a9236d4b49e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f4f59f83c82ab480e924b988e7b1b4eb4de836dfcf5390c6f59148d1a00e1d02
MD5 58dda376ca9e1cf85361bcb0912a48f3
BLAKE2b-256 b82c318cd1a9014c63939ffe687e19559ae12831fcc37d66c71ad1f616f1ffd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ml_dtypes-0.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 433.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ml_dtypes-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03ce583adfce34ad33aa9e1fc7a8344dcf90ea776cc4ef0e5a48d4eae84e5d20
MD5 996f3a9ac8a9ab13fd221ce657a4c8f2
BLAKE2b-256 f863efc9257a1ef0f53dfc76dedfe70d7d35118fbcdb810bb48cb7323ebd0b87

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ec0d244a5bba12239025389ad88bbfb45f9f10e25ab4f678e9a4768ebd47532
MD5 97ec055160339953cd9ab4350147542c
BLAKE2b-256 e915844f5402145ce73bec8eb3afeb9f41d2bf99e0c8617c93f9e9886f26b419

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 008382aeab529df5d3f00501ad9a7dcd64494d4b5b1971fc4c79019e6c1f5010
MD5 12985b66b835582de66db8125af43683
BLAKE2b-256 e754850d9b8b35549182f7c7f2cf742ce75c853ee880101bbc51cca0d62732e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

File details

Details for the file ml_dtypes-0.6.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ml_dtypes-0.6.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bad8d1dd5bed060a29332b99d63d0e5c2969081e1c6ea54adfbccfdfa783be44
MD5 484b6487c6a92156fd830a01b65a236d
BLAKE2b-256 141501285c64133ea38abf3b990a704d7d30e50daea2806d150bcc4163495d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for ml_dtypes-0.6.0-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: wheels.yml on jax-ml/ml_dtypes

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

Release history Release notifications | RSS feed

This release

0.6.0 This release

40 files

0.5.4

39 files

0.5.3

35 files

0.5.1

24 files

0.5.0

21 files

0.4.1

17 files

0.4.0

17 files

0.3.2

17 files

0.3.1

17 files

0.3.0

17 files

0.2.0

17 files

0.1.0

17 files

0.0.4

17 files

0.0.3

13 files

0.0.2

13 files

0.0.1

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page