deno/ext/webgpu
denobot 08f0613b39
1.42.1 (#23158)
Bumped versions for 1.42.1

Co-authored-by: littledivy <littledivy@users.noreply.github.com>
2024-04-01 12:03:06 +05:30
..
00_init.js refactor: use web utils and lazy load utils from core (#22289) 2024-02-06 22:28:32 +01:00
01_webgpu.js fix: typo in error from GPUBuffer.prototype.mapAsync (#22913) 2024-03-14 13:28:27 +00:00
02_surface.js refactor: use web utils and lazy load utils from core (#22289) 2024-02-06 22:28:32 +01:00
binding.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
buffer.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
bundle.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
byow.rs feat:: External webgpu surfaces / BYOW (#21835) 2024-01-19 22:49:14 +05:30
Cargo.toml 1.42.1 (#23158) 2024-04-01 12:03:06 +05:30
command_encoder.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
compute_pass.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
error.rs chore(ext/webgpu): include GPUCanvasContext in snapshot (#21773) 2024-01-05 19:55:01 +05:30
lib.rs chore: enable clippy unused_async rule (#22834) 2024-03-11 23:48:00 -04:00
LICENSE.md feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
pipeline.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
queue.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
README.md feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
render_pass.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
sampler.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
shader.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
surface.rs chore(ext/webgpu): include GPUCanvasContext in snapshot (#21773) 2024-01-05 19:55:01 +05:30
texture.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00: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