Skip to main content
Yanked

This release has been yanked by its maintainers, and will be ignored by installers, except when explicitly specified.
Consider using release 1.0.0 instead.

OmniMalloc

State-of-the-art static memory allocation for neural networks.

Checks Build PyPI Python versions License

OmniMalloc is a Python library for static memory allocation: given buffers with known sizes and lifetimes, assign offsets so that peak memory is minimized. This is the memory-planning step at the heart of ML compilers, embedded runtimes, and accelerator toolchains.

It ships a collection of allocators and allocation algorithms behind one API, implemented with an efficient C++ backend. This includes SuperMalloc, a new allocator that outperforms the best open-source alternatives (see benchmarks below). OmniMalloc also provides a rich benchmark harness and visualization tools to develop and evaluate new allocation strategies.

Installation

Install the latest release from PyPI:

pip install omnimalloc

Or install the development version directly from GitHub:

pip install git+https://github.com/fpedd/omnimalloc.git

Usage

import omnimalloc as om

pool = om.Pool(
    id="pool",
    allocations=(
        om.Allocation(id=0, size=64, start=0, end=10),
        om.Allocation(id=1, size=64, start=12, end=20),
        om.Allocation(id=2, size=32, start=5, end=15),
    ),
)

pool = om.allocate(pool, allocator="supermalloc", validate=True)

print(pool.size)  # 96
print([alloc.offset for alloc in pool.allocations])  # [0, 0, 64]

On a real problem, the result looks like this: 308 buffers of an ML workload packed with no wasted memory.

A solved allocation problem rendered as offset/time rectangles

See examples for allocator selection, visualization, custom allocation sources, and benchmarking.

Benchmarks

Solution quality vs. solve time across allocators

All figures on this page are generated from a deterministic benchmark run by scripts/generate_readme_assets.py. Run your own campaigns with the benchmark harness.

Development

# Initial setup
git clone git@github.com:fpedd/omnimalloc.git
cd omnimalloc
uv sync --all-extras --group dev

# Run tests, linting, type checking
uv run pytest
uv run ruff check --fix && uv run ruff format && uv run ty check

# Setup pre-commit hooks (run once)
uv run pre-commit install

# Run pre-commit checks manually
uv run pre-commit run --all-files

License

Copyright 2025-2026 Fabian Peddinghaus. Licensed under Apache 2.0 License. See LICENSE for details.

Download files

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

Source Distribution

omnimalloc-0.8.0.tar.gz (544.4 kB view details)

Uploaded Source

Built Distributions

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

omnimalloc-0.8.0-cp313-cp313-win_amd64.whl (350.4 kB view details)

Uploaded CPython 3.13Windows x86-64

omnimalloc-0.8.0-cp313-cp313-win32.whl (324.2 kB view details)

Uploaded CPython 3.13Windows x86

omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (460.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (405.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

omnimalloc-0.8.0-cp313-cp313-macosx_11_0_arm64.whl (326.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

omnimalloc-0.8.0-cp312-cp312-win_amd64.whl (350.5 kB view details)

Uploaded CPython 3.12Windows x86-64

omnimalloc-0.8.0-cp312-cp312-win32.whl (324.2 kB view details)

Uploaded CPython 3.12Windows x86

omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (460.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (405.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

omnimalloc-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (326.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

omnimalloc-0.8.0-cp311-cp311-win_amd64.whl (349.2 kB view details)

Uploaded CPython 3.11Windows x86-64

omnimalloc-0.8.0-cp311-cp311-win32.whl (324.8 kB view details)

Uploaded CPython 3.11Windows x86

omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (460.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (407.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

omnimalloc-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (327.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

omnimalloc-0.8.0-cp310-cp310-win_amd64.whl (351.2 kB view details)

Uploaded CPython 3.10Windows x86-64

omnimalloc-0.8.0-cp310-cp310-win32.whl (324.7 kB view details)

Uploaded CPython 3.10Windows x86

omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (460.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (407.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

omnimalloc-0.8.0-cp310-cp310-macosx_11_0_arm64.whl (327.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file omnimalloc-0.8.0.tar.gz.

File metadata

  • Download URL: omnimalloc-0.8.0.tar.gz
  • Upload date:
  • Size: 544.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for omnimalloc-0.8.0.tar.gz
Algorithm Hash digest
SHA256 f64694a15a0f668000cddd700435f49534432b92ad3c9a3d38c56feb6f1122e3
MD5 3b0952170f864f2e86430331755ad7f1
BLAKE2b-256 2a38a69627ca3a6520984c016a15ffe15b1338687b8b9bbd049e9b19442533a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0.tar.gz:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: omnimalloc-0.8.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 350.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 omnimalloc-0.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d07f8570944416a667a744580e2b0aa3cf8e5768ddaf13c136d63b13a0125f57
MD5 3f3bbd8635b6768925ee1a8c27e41030
BLAKE2b-256 39f5b358882472bd7f5a69e2203c8bc5e355a7239b3cd77c15738f65007ccb7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: omnimalloc-0.8.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 324.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for omnimalloc-0.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 210758ac4e3c21267db6a2d8c3069e8891ab2fed3d3ac303bbe9e4080496a80b
MD5 842bbc716256206cd8d0938c6ceddbd2
BLAKE2b-256 6bca388ff0d7be823f2223815e58e0c42d228c698692f8a57ec93490b7c9bdb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp313-cp313-win32.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2a24b2c2243f3276a8f56ee109f018daf2e3360dafc0e1c13a7543bbf72cf77
MD5 b2526e700cd211f415f2787f2dacc7fa
BLAKE2b-256 2588750f02978feefc45256e3fadb326603f123996284ebe87723101b98261ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17ece18fac50ccd157f09c49f32f7a02ac841bc70c395d40ea07c6bc633265ce
MD5 34f72417cf46c5afff98fd1e260b671f
BLAKE2b-256 eaedb8716ceb5b632409183b63add9401b20d621608a4ee82b03857f1cae4e25

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4c6c6fa45dc421eadf2584dce8e85c65c8149a9a2889934eef01e6a87b92b01
MD5 d8d6e5cf450616901c35d8a1dc75d9c5
BLAKE2b-256 d9677170bc89674beb22f61e1c18ba9b46d47f67615e2ca9e0b140ab5e5bf370

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f51c184d45d1fb3a408cd918e4b8a4bbb6d0f54b03edfa38ed38f0938866f45
MD5 cfe8c1f84253e7940d50f75aae2acaec
BLAKE2b-256 9f1e9ad2a22c744f006110dc5c0f2ca75d1b854a834025522b621d985d3a6686

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: omnimalloc-0.8.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 350.5 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 omnimalloc-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 af6c9ccd1f7196f7f9d3765f835f4fb189deb0709e61f059455079e14b744620
MD5 46f6fc2de73fc2dd2fd9395b19fe88bf
BLAKE2b-256 2750ecc06683d7729f511831ea978d1434540d6a75c81f7b09a3afb6928122c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: omnimalloc-0.8.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 324.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for omnimalloc-0.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 db5589597eebb6656932667d02b1b94b542d54c1955b3cffb53d54025855e7df
MD5 8537d62e89e2345e38d339c95a4e02e4
BLAKE2b-256 9de3428a1f5288b38f2383f1a0b5a16f1bd3219f371e79c4888db0d8ba2b84f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp312-cp312-win32.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a57c56a989a072e8792120d65c1dea5c02feaf611c93822783bbc13587b1bcc
MD5 98fe0903603bf5d30cb4925761f43cd5
BLAKE2b-256 a209a0d9740a003affedbfdde942c2d4c982dc4ea8a01565c69a67e27b81fe92

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69747fcfae9eae497ec71c8b7a2f4c3ab8407ee2ba0b6231e8f5acefd3e9b204
MD5 71d5d247a00f4fbff5c0c68c44c5dc02
BLAKE2b-256 cad0cbf06ee30420161e0574110ded1184cffcdb1c237b8bb3575b46ff5d1f56

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c777fb29f129709e15680f324a43e8fd6338fad06f7a8f18cabdbf40c5bc8991
MD5 6ef4eb50603466478c69e1c40283a450
BLAKE2b-256 d032a3adb18850ced01aa0a3cd9823cd4ba6acfdfcfd46b48dc44fed6c635025

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3606b2ea4ad134978a10d9122794a31894e565f749a2b6aecc7da56a06cb715f
MD5 08ebae3875cac193e98da86308b7704d
BLAKE2b-256 6f638d7dab7c3467596366c77a2c80ec1384aa52e2f15fad6feb7376f41804db

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: omnimalloc-0.8.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 349.2 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 omnimalloc-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c8abc33d179b3cffb3125a2497f746e8b7f7e4f33a791b62af04814cf12735c6
MD5 f433e8495373f1da6edfded8a2315c9f
BLAKE2b-256 bdc6f1c8f5f153cd37eadcebca04f0953d7331b7b12e168787f7d3a6e8737996

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: omnimalloc-0.8.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 324.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for omnimalloc-0.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2d485d3b37398ea8b7dbee36607df1912136926ae9067ea3026e5e62eb29258f
MD5 fb98ce98bb69d9fc08626a4e9c9a263c
BLAKE2b-256 4b9b3f3539a8ada19362b3b0b2fc7f9dde81c9822b60d4c31cf31463ddf35cd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp311-cp311-win32.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e2f6b670ad62cb792366c4181e63201c36c0faefc49bbab18c91553065b4624
MD5 9fc5a949c303059de9bf31c6609e2a2c
BLAKE2b-256 ae31e09ec3a605c7072f272fda67d5741602dca7e20ad527634e4b3cdabced63

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e18430ab0d1641ecaa1a36ae1f740c0acafce64034f774c4e3e2214d904bd0a
MD5 56cc3c38f2e066cf3e1898fe18493f87
BLAKE2b-256 fd7dea0dc711fd0d7bd93ede4ae4c0d6885642a22bedff73a7bb0af6dab61d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1d610210ed98b8f16df5dfb251922b4357519fb41846c5944dc473ef929535d
MD5 fe91d2f9a23d2c3c53b11f2bace2d6d8
BLAKE2b-256 1cedd47fe50f1fe4db99db61a7d5e90a0d90fc817fb5a186c048dbffbb7e8cfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e53882e4b5ded954b313a6e327489940374bab93a3f8f57ebb1d49349207af6
MD5 f98f8787b471e0cd8dd63d21d352b9af
BLAKE2b-256 6d2ddb7ce2a6daa269bc11e488e6f5b8c3e9aa1d36a3ae9d0f82af9d294f9c43

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: omnimalloc-0.8.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 351.2 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 omnimalloc-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 077a07d19b4647b2f7e0fdf6b516955af4f225e4d45f37c823b91d8f8a39947d
MD5 626fde78a47aeb732bc47c270c4cc284
BLAKE2b-256 cc3c733917c5130d83b277eead805521b1e0c4ce0473c0ef465764be6c00ad0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: omnimalloc-0.8.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 324.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for omnimalloc-0.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 88a88226310d3bc46d21398508b849da176ea09be2cede15552e61606fab3d83
MD5 60f802e59b715bf7f489f493f171e135
BLAKE2b-256 920b0b3a50eb99808b38b774bbeb4f842e35fe59a3286eb25d0a518935102116

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp310-cp310-win32.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6aa78f17d820d8c6f1e63b028232d43f259583bae9a779e0868b6dcf124e1875
MD5 5a85c020a3273d8c214f14d0b09d0a36
BLAKE2b-256 b06d5594033d301f6eca03df9907f5836bbf19d0009cc284766b7db485b97a96

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3212f0dff9f42e2fa02cd661c4cc748f56a9ecce547eef09037532bea23b492
MD5 09fa3caccf7a0fac5ec20674e2b84f0e
BLAKE2b-256 ffb4e9b2dccda44d4695a03c74699699f5c41bdd26cb5db4da2fe151d250acca

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e45208bf07052052ad7695172a92c9e13ca94244c346c9f6227675159c839651
MD5 13ed7283f65ac6609540ca112b8862e9
BLAKE2b-256 cd7ff712a2ceb63698394f9be914c15023ffa75854312e0d338bfde3c39e30b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

File details

Details for the file omnimalloc-0.8.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnimalloc-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0503d688bde4b315e5506b5a0353311afee4e7df19bde31f9f5b2484f54c2466
MD5 d2b7d7113f2af438381e7c7ca7f44ecd
BLAKE2b-256 e9612eb6a5149715a9cb45515bdb0deda4ea785b18c9a656ca0ff7f208aef3cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnimalloc-0.8.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on fpedd/omnimalloc

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

Release history Release notifications | RSS feed

1.0.0

21 files

0.9.0

25 files

This release

0.8.0 This release

25 files

0.7.0

25 files

0.6.0

25 files

0.5.0

25 files

0.4.0

25 files

0.3.0

25 files

0.2.0

9 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