wgpu/deno_webgpu
Brad Werth 9b7a965667 Add an experimental vertex pulling flag to Metal pipelines.
This proves a flag in msl::PipelineOptions that attempts to write all
Metal vertex entry points to use a vertex pulling technique. It does
this by:

1) Forcing the _buffer_sizes structure to be generated for all vertex
entry points. The structure has additional buffer_size members that
contain the byte sizes of the vertex buffers.
2) Adding new args to vertex entry points for the vertex id and/or
the instance id and for the bound buffers. If there is an existing
@builtin(vertex_index) or @builtin(instance_index) param, then no
duplicate arg is created.
3) Adding code at the beginning of the function for vertex entry points
to compare the vertex id or instance id against the lengths of all the
bound buffers, and force an early-exit if the bounds are violated.
4) Extracting the raw bytes from the vertex buffer(s) and unpacking
those bytes into the bound attributes with the expected types.
5) Replacing the varyings input and instead using the unpacked
attributes to fill any structs-as-args that are rebuilt in the entry
point.

A new naga test is added which exercises this flag and demonstrates the
effect of the transform. The msl generated by this test passes
validation.

Eventually this transformation will be the default, always-on behavior
for Metal pipelines, though the flag may remain so that naga
translation tests can be run with and without the tranformation.
2024-05-30 13:08:59 +02:00
..
00_init.js chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
01_webgpu.js chore: backport deno changes (#5686) 2024-05-11 09:29:09 +00:00
02_surface.js chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
binding.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
buffer.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
bundle.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
byow.rs chore: backport deno changes (#5686) 2024-05-11 09:29:09 +00:00
Cargo.toml Remove unnecessary Cargo.toml dependencies via cargo machete (#5692) 2024-05-12 19:05:00 -04:00
command_encoder.rs Remove lifetime dependency of ComputePass to its parent command encoder (#5620) 2024-05-29 22:43:24 +00:00
compute_pass.rs Make compute pass end consume the pass (#5575) 2024-05-25 18:54:48 +02:00
error.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
lib.rs chore: backport deno changes (#5686) 2024-05-11 09:29:09 +00:00
LICENSE.md chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
pipeline.rs Add an experimental vertex pulling flag to Metal pipelines. 2024-05-30 13:08:59 +02:00
queue.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
README.md chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
render_pass.rs Make compute pass end consume the pass (#5575) 2024-05-25 18:54:48 +02:00
sampler.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
shader.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
surface.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
texture.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
webgpu.idl Implement Unorm10_10_10_2 VertexFormat (#5477) 2024-04-03 19:43:54 +00:00

deno_webgpu

This op crate implements the WebGPU API as defined in https://gpuweb.github.io/gpuweb/ in Deno. The implementation targets the spec draft as of March 31, 2024. The spec is still very much in flux. This extension tries to stay up to date with the spec, but is constrained by the features implemented in our GPU backend library wgpu.

The spec is still very bare bones, and is still missing many details. As the spec becomes more concrete, we will implement to follow the spec more closely.

In addition, setting the DENO_WEBGPU_TRACE environmental variable will output a wgpu trace to the specified directory.

For testing this op crate will make use of the WebGPU conformance tests suite, running through our WPT runner. This will be used to validate implementation conformance.

GitHub CI doesn't run with GPUs, so testing relies on software like DX WARP & Vulkan lavapipe. Currently, only using DX WARP works, so tests are only run on Windows.

Specification: https://gpuweb.github.io/gpuweb/

Design documents: https://github.com/gpuweb/gpuweb/tree/main/design

Conformance tests suite: https://github.com/gpuweb/cts

WebGPU examples for Deno: https://github.com/crowlKats/webgpu-examples

wgpu-users matrix channel: https://matrix.to/#/#wgpu-users:matrix.org