Skip to main content

Python metaprogramming for GPU compute, with runtime-generated kernels, FFTs, and reductions.

Project description

vkdispatch

vkdispatch is a Python GPU computing framework for writing single-source kernels in Python and dispatching them across multiple runtime backends.

It combines runtime code generation, execution helpers, and FFT/reduction utilities in one package. The default PyPI install ships with the Vulkan backend. CUDA and OpenCL backends can be enabled with optional runtime dependencies.

Highlights

  • Single-source Python shaders via @vd.shader and vkdispatch.codegen
  • Multiple runtime backends: Vulkan, CUDA, OpenCL, and a dummy codegen-only backend
  • Backend-aware code generation: GLSL for Vulkan, CUDA source for CUDA, and OpenCL C for OpenCL
  • Native FFT workflows through vd.fft, including mapping hooks for fusion and custom I/O
  • VkFFT-backed transforms through vd.vkfft on the Vulkan backend
  • Reductions through vd.reduce
  • Batched submission and deferred execution through vd.CommandGraph
  • CUDA interop through __cuda_array_interface__ and CUDA Graph capture helpers

Installation

Default Vulkan Install

To install vkdispatch with the Vulkan backend, run:

pip install vkdispatch

This installs the core library, the code generation system, and the Vulkan runtime backend. The Vulkan backend is designed to run on systems supporting Vulkan 1.2 or higher, including macOS via a statically linked MoltenVK. Alternate backends can be added with optional dependencies as described below.

On mainstream platforms - Windows (x86_64), macOS (x86_64 and Apple Silicon/arm64), and Linux (x86_64) - pip will usually download a prebuilt wheel, so no compiler is needed.

On less common platforms, pip may fall back to a source build, which takes a few minutes. See Building From Source for toolchain requirements and developer-oriented instructions.

Core package

For cases where only the codegen component is needed, or in environments where only the CUDA or OpenCL backends are needed, install the core package:

pip install vkdispatch-core

This installs the core library and codegen components, but not the Vulkan runtime backend. To enable runtime features beyond pure codegen, install the optional dependencies below.

Optional components

  • Optional CLI: pip install vkdispatch-core[cli]
  • CUDA runtime backend: pip install vkdispatch-core[cuda]
  • OpenCL runtime backend: pip install vkdispatch-core[opencl]

Runtime backends

vkdispatch currently supports these runtime backends:

  • vulkan
  • cuda
  • opencl
  • dummy

If you do not explicitly select a backend, vkdispatch prefers Vulkan. When the Vulkan backend cannot be imported because it is not installed, initialization falls back to CUDA and then OpenCL.

You can select a backend explicitly in Python:

import vkdispatch as vd

vd.initialize(backend="vulkan")
# vd.initialize(backend="cuda")
# vd.initialize(backend="opencl")
# vd.initialize(backend="dummy")

You can also select the backend with an environment variable:

export VKDISPATCH_BACKEND=vulkan

The dummy backend is useful for codegen-only workflows, source inspection, and development environments where no GPU runtime is available.

There are two intended shader-generation modes:

  • Default mode: generate for the current machine/runtime. This is the normal path and is how vkdispatch picks backend-specific defaults and limits.
  • Custom mode: initialize with backend="dummy" and optionally tune the dummy device limits when you want controlled codegen without relying on the current runtime.

Verifying your installation

If you installed the optional CLI, you can list devices with:

vdlist

# Explicit backend selection can be done with cmdline flags:
vdlist --vulkan
vdlist --cuda
vdlist --opencl

You can always inspect devices from Python:

import vkdispatch as vd

for device in vd.get_devices():
    print(device.get_info_string())

The reported version label depends on the active backend:

  • Vulkan devices show a Vulkan version
  • CUDA devices show CUDA compute capability
  • OpenCL devices show an OpenCL version

Quick start

The example below defines a simple in-place compute kernel in Python:

import numpy as np
import vkdispatch as vd
import vkdispatch.codegen as vc
from vkdispatch.codegen.abbreviations import Buff, Const, f32

# @vd.shader(exec_size=lambda args: args.buff.size)
@vd.shader("buff.size")
def add_scalar(buff: Buff[f32], bias: Const[f32]):
    tid = vc.global_invocation_id().x
    buff[tid] = buff[tid] + bias

arr = np.arange(8, dtype=np.float32)
buff = vd.asbuffer(arr)

# If you want a non-default backend, call vd.initialize(backend=...) first.
add_scalar(buff, 1.5)

print(buff.read(0))

String launch sizing is the shortest form and is kept for convenience. If you want the launch rule to be more explicit and deterministic, use the equivalent lambda form instead: @vd.shader(exec_size=lambda args: args.buff.size).

In normal usage, vkdispatch initializes itself and creates a default context on first runtime use. Call vd.initialize() and vd.make_context() manually only when you want non-default settings such as backend selection, custom device selection, debug logging, or multi-device Vulkan contexts.

Codegen-Only Workflows

If you want generated source without compiling or dispatching it on the current machine, use the dummy backend explicitly:

import vkdispatch as vd
import vkdispatch.codegen as vc
from vkdispatch.codegen.abbreviations import Buff, Const, f32

vd.initialize(backend='dummy')
vd.set_dummy_context_params(
    subgroup_size=32,
    max_workgroup_size=(128, 1, 1),
    max_workgroup_count=(65535, 65535, 65535),
)
vc.set_codegen_backend('cuda')

# @vd.shader(exec_size=lambda args: args.buff.size)
@vd.shader('buff.size')
def add_scalar(buff: Buff[f32], bias: Const[f32]):
    tid = vc.global_invocation_id().x
    buff[tid] = buff[tid] + bias

src = add_scalar.get_src(line_numbers=True)
print(src)

In this mode, vkdispatch uses the dummy device model for launch/layout defaults and emits source for the backend selected with vc.set_codegen_backend(...).

Documentation

The docs site is still under active development, but the main entry points are here:

Some especially useful tutorials:

Happy GPU programming!

Project details


Download files

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

Source Distribution

vkdispatch_vulkan_native-0.1.0.tar.gz (5.2 MB view details)

Uploaded Source

Built Distributions

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

vkdispatch_vulkan_native-0.1.0-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

vkdispatch_vulkan_native-0.1.0-cp314-cp314t-win32.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows x86

vkdispatch_vulkan_native-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

vkdispatch_vulkan_native-0.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (18.7 MB view details)

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

vkdispatch_vulkan_native-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

vkdispatch_vulkan_native-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

vkdispatch_vulkan_native-0.1.0-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

vkdispatch_vulkan_native-0.1.0-cp314-cp314-win32.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86

vkdispatch_vulkan_native-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

vkdispatch_vulkan_native-0.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (18.7 MB view details)

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

vkdispatch_vulkan_native-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

vkdispatch_vulkan_native-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

vkdispatch_vulkan_native-0.1.0-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

vkdispatch_vulkan_native-0.1.0-cp313-cp313-win32.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86

vkdispatch_vulkan_native-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

vkdispatch_vulkan_native-0.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (18.7 MB view details)

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

vkdispatch_vulkan_native-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

vkdispatch_vulkan_native-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

vkdispatch_vulkan_native-0.1.0-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

vkdispatch_vulkan_native-0.1.0-cp312-cp312-win32.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86

vkdispatch_vulkan_native-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

vkdispatch_vulkan_native-0.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (18.7 MB view details)

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

vkdispatch_vulkan_native-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

vkdispatch_vulkan_native-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

vkdispatch_vulkan_native-0.1.0-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

vkdispatch_vulkan_native-0.1.0-cp311-cp311-win32.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86

vkdispatch_vulkan_native-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

vkdispatch_vulkan_native-0.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (18.7 MB view details)

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

vkdispatch_vulkan_native-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

vkdispatch_vulkan_native-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

vkdispatch_vulkan_native-0.1.0-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

vkdispatch_vulkan_native-0.1.0-cp310-cp310-win32.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86

vkdispatch_vulkan_native-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

vkdispatch_vulkan_native-0.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (18.7 MB view details)

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

vkdispatch_vulkan_native-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

vkdispatch_vulkan_native-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

vkdispatch_vulkan_native-0.1.0-cp39-cp39-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86-64

vkdispatch_vulkan_native-0.1.0-cp39-cp39-win32.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86

vkdispatch_vulkan_native-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

vkdispatch_vulkan_native-0.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (18.7 MB view details)

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

vkdispatch_vulkan_native-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

vkdispatch_vulkan_native-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

vkdispatch_vulkan_native-0.1.0-cp38-cp38-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.8Windows x86-64

vkdispatch_vulkan_native-0.1.0-cp38-cp38-win32.whl (1.0 MB view details)

Uploaded CPython 3.8Windows x86

vkdispatch_vulkan_native-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

vkdispatch_vulkan_native-0.1.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (18.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

vkdispatch_vulkan_native-0.1.0-cp38-cp38-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

vkdispatch_vulkan_native-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file vkdispatch_vulkan_native-0.1.0.tar.gz.

File metadata

  • Download URL: vkdispatch_vulkan_native-0.1.0.tar.gz
  • Upload date:
  • Size: 5.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0.tar.gz
Algorithm Hash digest
SHA256 4c1a699a94342add13b286e3283297caab83c7fb01b8b54d6e2b80536bc28dfb
MD5 6ce8cbfd7950976aab6fd16862bc88a6
BLAKE2b-256 b8e2b11a1bdaaf5fe9df9d29785b893e116369e304c71793f47720019c516a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0.tar.gz:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1b7d9aa61be0740bbb7cad551d57fda9390f38640181e223c9e475baf7423269
MD5 9b0f31486a4f9a4270190011e293267f
BLAKE2b-256 716a6870f66abc4fb9fbfb5c60bfbface5b76103fe736ac6ecb69f4237de4db9

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-win_amd64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 448ec44fddb75442359eb12db5f0204eec95899b0ca75c4293c6e58247890b3d
MD5 e63acc242da2e992bcfc675918028312
BLAKE2b-256 5fcf5879c343df6c174508d0e85ccf54b375112d5f9b7c1cbefa82260f705c09

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-win32.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd134048d2d2218221e8e3f46d00b436c9a0676f92a6ff7c59d02571ec05136b
MD5 c9d3f72ae928d2bb245377eef03359ba
BLAKE2b-256 d1cebf6c78b4cf2ddbe1d97b97b1ef29d2fbedab03331ba8729788a1ae2ad91d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ad7aeb0368d0c092cd24a39ff76c793369b5bd5e8f31c6ea3faf486d6f78c25
MD5 fd2ea9d82ea5ddc57c3e8421dcc189d0
BLAKE2b-256 cd6297bd9c0aa393f8c6fc5375bb9b510fc5269835feae469099c12ba0446373

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d4d352cc4da311334c3c9f181847f83f7f36d5c72710be3ef4108c828a617f6
MD5 997b40304afd6c248895c86739248c73
BLAKE2b-256 0c21187cef266c2c5955b15faca901ee3c2b95d971811ef0b90aebaf6cb1e32c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1811492d4b356e1e2f7e107268f06425518a88b3b314a41eaa3f2fcfbcc5414c
MD5 7747d3ae662da121674022a6c45fd0c8
BLAKE2b-256 38ed9cc4b18ae11c503aa7851587bd68b94138b509ef7cd7787f82ffbd5b2969

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 23ed1ea1167c720f2db89fcf2edc7b507f774d84b1ae9920fbddc26f019c8bce
MD5 386251f5a77b4e4f85c8d9ca2022b325
BLAKE2b-256 62c27c097c395ab592742299392bc2588cebe08388fd18e52e26749872e22515

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 34e69dbeda179df41fb154eaef75169eeafb0a8601c789d80412a5863dc6a1a2
MD5 d3f40fe6082b7a71ac509dbc09dbb7a1
BLAKE2b-256 ab4ec7a37ec730b48c1b32bf53ad5401772968be139578b225eac1d86831233c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314-win32.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f701037cfdfcc14d6032fe9b552b5571af3f2a0714583b4136419ca6dfe2aee
MD5 df9cdd08c20c412252eba19b866bf5cb
BLAKE2b-256 162a18be49b8c428205528682d47c8d8dceec839d62930dec28b75d7d9bb0664

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa268e78bb1c03814c10b0f1569d7f5980dc77fe5eb5155aeebf2a755eba0965
MD5 e6365223d55e169ee5e75386c9c6307f
BLAKE2b-256 890721fb1944361103502fe22d7d9c2afa59e6535f945122436bcc8a8ea473bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ded88809768c91b01904c48693c087ce06e12d11cad68b30959dc9c8355dfde0
MD5 f4418b3bd0a8e28b4fed142d8a5b3a12
BLAKE2b-256 77812b8573c6c15c992a40bd06fb78a7ffaa8f4e719e5d3d31ef3aa7ad62a3d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 862e5d7ec464d3c543abb0900fe053e4dfe953c272033f60b9339689287bfd48
MD5 f9fed986e1378201870cc8df993bde1e
BLAKE2b-256 d94549ee96b4ee2ed5c97dadb8e62115552267a3275fb8b1dabbc080a018bc48

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c17f14d9125df6c2c7e5bc8979b8cbfc5879e72cb31fa8535fc2f02d8ebb2075
MD5 161967cac3cf807cf3985fb88af335f0
BLAKE2b-256 b7aab4243318ced098996397ce36c0100bcaf0082b666cdf61f9ce4dc96318af

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fc0c17d816e58500d51082458f6d566f5c8b12db6d8a41d2b3b0b1a779578ff0
MD5 0ecd59d67052b07705342d3b0d7c9c69
BLAKE2b-256 629f6458434eaf6ce0c99215897720103333c6994c3118e1ee51ffd816176caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp313-cp313-win32.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d21f3096cb7c667f9e7ade4869f0a4922cbc12da9e94493530fa4ffd202cd13
MD5 63e01afb39dbd443d546ebf2eb14cce8
BLAKE2b-256 eec8a403c61fd90a3bd697924757b7efca120866cba1c53956b8c95337ec12a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5394bc681c5d6df3cc808e04d55c52818b5ccc80f251112fdb9fe3ac4b58cc86
MD5 1aa3e323c51cbb2fe2a287ab4f61d7de
BLAKE2b-256 e23a4fd33bd1f84313603b3e0fad1889b52ba12d4eb99f82d5f034c15ac304aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c82800f258ad422e9efb1dcbf0d829a0f50c477df7d7e890e251fadceb8db044
MD5 410a6d2a85478edd9c45689fecdf191a
BLAKE2b-256 b7dafbd767d560b78dc70408adedea642014a0eb41eea8c367d2c3b27de6ee8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bc6783d4cc54ecbb18e7587b468e99ac011e6dd5e4a77ab20b392783292ef9c1
MD5 13746d7e6327706b58633ba858bc42f3
BLAKE2b-256 fc0f240020f2fa2a2dfe6c6437e95c3e74d1efa2654be4c7803e1db181865276

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 acae9396d1457e979173fb9b376eeeb9d60c2ed6dc18aa2f24f824c1af944033
MD5 460a42fb83d54b7af87a6e570bc119f6
BLAKE2b-256 42c2b06d3eb65ad410ab299059d7331215e4d2188a78e4f2b144a60df927b16f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7237fff792ba0e5b972244de6a6cd0ada6024acc3ab1c0686db6d2725cb1e57d
MD5 e72c8522f3ecd3f2ee9ff13a7bfd80d7
BLAKE2b-256 b1c0d6b1161200ef9153cfc8ab89425ed1022aba96ae88c0c0a6ba31ee6e4cdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp312-cp312-win32.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5735701c726ceb350306855a15501c03dda85eed096777cdc0bbcd1df75e150c
MD5 3f75667232ada27e6286cea6fd40d37b
BLAKE2b-256 c0a60be934bec0658c79df3da9625e78e103ce51d76726fd144318248034fdd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eef79eb54672a0248ec41870ed106c6d320ed788507b9133cade089a6e8915c9
MD5 073106c337275b9432e1370d80a8aadd
BLAKE2b-256 17a85d50ea8473b51d2031ea3e2332751bc17480db4d8e7b4a605d0df2d67039

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e8ccd2e4f31cdcd1baf4c344f26424339d58eea284f56b47e2e92e63c0b2055
MD5 afb56a73f9f42d42c730669114e68e96
BLAKE2b-256 8fc221a5206684990fbb220ed9310865874d7ca0b22c0475c58e2b12db40eda0

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d106e1eaf95e76174033b4a2d299362a0c551e6127b9c0ade059e41f161878bc
MD5 477c2cc8b9b3b6cc61fca70462fe90fe
BLAKE2b-256 1b2f745f0c7a53a3f62997fe4bd926799634962865a62ff93506fadba5797ac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fc77b9a621a67d467fe86951f393a53b8df3aeb96bb8ed9816251ef77672c98a
MD5 a27e6ee632c12c0acf820e49b7a9ea4f
BLAKE2b-256 204f0b41b04e269e1bb769479e5b86009f4c85b6af69e9c379dbdf9e28efd0b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e8785bad51e498f45961dd1f2dd95dda1142d789d2364d2d317e62c1c967cd0a
MD5 3aab6c8b7743d37f32ab9817643c1c16
BLAKE2b-256 bb3842fce9eed9bbb396463c8452c770ae4911e45eb48047689ececb042e0bef

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp311-cp311-win32.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28cec1bdce7c368da80aaa97df31718b221506b3d106fea38c428dc14e8038ec
MD5 04448d1ddf9fe2d3ce02459b4cce0654
BLAKE2b-256 c0e43d152ac237c39324917a3b9ab6b122684e83507db52a52648e92d6bd22b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 523adf892882ccc734df28cd6a522874b862eeda9739587165a11868de45a488
MD5 516379684aa24717bbc6797130c056d3
BLAKE2b-256 22e42135af58defbb720fab02751fef635bd7cd1f70480133af2b0f067ddfe1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e334860dd27d94880a52d196a0b79a4e181ce914dff1ff43f8820b38ef2faf11
MD5 379bcb1f2963d31b1b20b91965083281
BLAKE2b-256 60d6662f1e459cb8142b45cac3bbb2eac497aa0aef8f74167a07feef416a2f79

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e62a5c55532c7ac252e45d9a6e1cac8c619f9571bf20ee6461fe843211b5c65
MD5 89cffda04122cee98bab26201822fb95
BLAKE2b-256 5db853a8f1200225cb48ba73daa7c22f3092f3ef1ed1d6009d72b452271567c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 db1aae3ac1fbc06f07565dc5b3bad7f90115440aca2c987d7c822583b8a6b460
MD5 fd3561bf08bf7a3a7133692e1fb34214
BLAKE2b-256 e7503db47517899ba65966ed14a40168932303871f591e69492d74b890587714

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0633499603ca9c10faba2861b8012a69eb5320a72d2f0a48285b1452a1f6770d
MD5 60a72674d53fa10f220ab49a86e9f3d1
BLAKE2b-256 c51af0034f7c6a29ce675421bff73696c678ca2f0549ea44b37f5e3327811660

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp310-cp310-win32.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e5ac66d42f2a7a5a50784c792bfc75aa8926295677453b9d068eed86fc5a79c
MD5 944aed606a9d7ac9ffc97f006cb74587
BLAKE2b-256 1b65a7c35f3e551e0375d98a04e0fbfd182e3b9e59f3044d133883f74ad854ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0eb260d05740af3340880dd8d06cd08099c8e8bb8619cd58e018a48b513f162a
MD5 b5f9dd4cb41e5e88325601a787de9f02
BLAKE2b-256 0bbba901df4a41ba363724a8ff07d3bbc8304dc8df30cb1cbb01249e0130b31c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f27d5bbefe4d78da4275acf0031deaf8373ed58a8dfa48a4e7012d9aaf34bcec
MD5 98b9db71760ad053255c43a739560377
BLAKE2b-256 6d42418e8d45d60ba8f0b9b2d0057501fa999728c362ae92a8eb230ab293186e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 748ebe1e3209af39e7c5e58e3557be858e10c468c55e002fd587ab72756d3f40
MD5 cf55c3210d225339cf49be8857b1a4d0
BLAKE2b-256 4662427feb8afc83c0be84fde980491f803a7a76f025fef0f93e63b393147615

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 97f6d57d35acff1e193144dd663a934a87c73cc497dc37a06807a5e40d9bd1c0
MD5 edd597b5964060b5f465b76d15115ba7
BLAKE2b-256 a2c4b9cdcc8ccdb712547b5864b3c85adc9d4d67fb2fe939ec4e9490a8d6d09d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 610ca049a271206c96fc68e612619dde4bff8dc7424cac0503d7ef6b0402e7f4
MD5 713bf4001fb61b12828d1a345fe71566
BLAKE2b-256 426fbd57c982efd1c67af89bc017eec59b64fec572e838529f6e112859149d05

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp39-cp39-win32.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55d0e8618f083fb101b62991a679cc45c2ee4b5d7712930df1f8ef6cf3ff2121
MD5 ecf0eaab5b7f9fc173e91033ce3337e3
BLAKE2b-256 4b202384007a9808b306108765aac4156e9730cbbc8106089d772f27d4d8b303

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71a919018f6d8ceb172e9293360dd07538f57ef5f96c0551533ec7473285e42d
MD5 e8ae1b55b56d13a6f473385abf1fc424
BLAKE2b-256 ecbeceb6aae343722f5315e13f4cce373fd4cec272169d9f6bb21da5af26ae78

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 818dab64135292ad49b97d07f81cc6b467e64922095333b5d5435afceb908094
MD5 13e4040c5beae3842dbea3ceb1d77507
BLAKE2b-256 4ea560c03efb795289c6979b916a5443b4188f29e98f5d728d4ba2ec05b8eb0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a758305d09c04f402f96dd2f3b89416695edb6566c175ef92bc33cae95994729
MD5 13a0ddb0a8a6a0c878bd3609a4b61dd9
BLAKE2b-256 627170f9b3dd5649f0fc03549d074fc5460f282623534a057cacf5250eb0908a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c62f848645395291dab72b65666a4086ba49549b0b356ec2fcc79fd0c980e087
MD5 f74b4e66bd73b5ef8569de83da297f36
BLAKE2b-256 4b68322e332ca38268e44f7bbeeb7d0b0346479353bbaba9ee0a430f8f09d6fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp38-cp38-win_amd64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b0b43dd7dcaba97e8c5540088b03a21601a4cc5044334335ba41d3c71cd92843
MD5 e4b4470fd1fe80be7a9edfdbf619c0af
BLAKE2b-256 48402e9d39433b9636688439fbc3c4511e7eb25bcf8c4d50dd98931a3fd5a945

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp38-cp38-win32.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0b164ccae2735affa353638500654fb291a328cfcb5ee4455730dcfbcf019b3
MD5 402478da7a2b57283e2ab657b05d05a7
BLAKE2b-256 08d4f9160fc6a8e6b1c6887c77de76e3045faadc565a1bec815c97637d901725

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f0ea2b76a943f68196417300fc514f6acccadf13c10e456af9205098a50a151
MD5 d970c3bef886774884ced5a3485f982b
BLAKE2b-256 fcc72b3b7b093176007e46be63b83cf0c74444c6895b1153d6e87463fee06233

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c65094e265bd5869bd8c92a60e8e1a1e1d055756f08cdb918d0646fbfd105923
MD5 210f00d449e0f400eaf592a75585841f
BLAKE2b-256 f3f0a21971aac6cfcee60f861a1a74c32c08229c4431bdb3c965731be8a8ff15

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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

File details

Details for the file vkdispatch_vulkan_native-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for vkdispatch_vulkan_native-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d990eaa31802a20e6b29cce469ba787864bef9c16aa9159eea4d58b6a43e12b9
MD5 542f07c19891908c2a357f10fd8d90f8
BLAKE2b-256 f14222deef30094bd6d64f00275add6c04624e2d693d3f5e0ca610d1c12f8db2

See more details on using hashes here.

Provenance

The following attestation bundles were made for vkdispatch_vulkan_native-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on sharhar/vkdispatch

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