1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-27 16:10:57 -05:00
denoland-deno/ext/webgpu
Matt Mastracci 0efe438f7c
perf: remove opAsync (#21690)
`opAsync` requires a lookup by name on each async call. This is a
mechanical translation of all opAsync calls to ensureFastOps.

The `opAsync` API on Deno.core will be removed at a later time.
2023-12-27 02:30:26 +01:00
..
01_webgpu.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
02_surface.js feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
binding.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
buffer.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
bundle.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
Cargo.toml chore: forward v1.39.1 commit to main (#21667) (#21671) 2023-12-21 18:43:52 +00:00
command_encoder.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
compute_pass.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
error.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
lib.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
LICENSE.md feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
pipeline.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
queue.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
README.md feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
render_pass.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
sampler.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
shader.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
surface.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
texture.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
webgpu.idl feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01: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 October 4, 2023. The spec is still very much in flux. This op crate 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