deno/ext/webgpu
denobot 6c6ee02dfd
chore: forward v1.44.4 release commit to main (#24271)
This is the release commit being forwarded back to main for 1.44.4

Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
2024-06-19 20:29:53 +02:00
..
01_webgpu.js fix(runtime): use more null proto objects (#23921) 2024-05-23 00:03:35 +02:00
02_surface.js refactor: use web utils and lazy load utils from core (#22289) 2024-02-06 22:28:32 +01:00
00_init.js refactor: use web utils and lazy load utils from core (#22289) 2024-02-06 22:28:32 +01:00
binding.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
buffer.rs chore(ext/webgpu): clean up buffer_get_map_async (#24087) 2024-06-04 12:44:17 +02:00
bundle.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
byow.rs fix(ext/webgpu): fix surface creation panic when adapter not initialized (#24201) 2024-06-13 13:34:32 +00:00
Cargo.toml chore: forward v1.44.4 release commit to main (#24271) 2024-06-19 20:29:53 +02:00
command_encoder.rs fix(ext/webgpu): Allow depthClearValue to be undefined when depthLoadOp is not "clear" (#23850) 2024-05-20 13:47:04 -07:00
compute_pass.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
error.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
lib.rs fix(ext/webgpu): invalidate GPUAdapter when a device is created (#23752) 2024-05-10 04:10:22 -07:00
LICENSE.md chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
pipeline.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
queue.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
README.md chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
render_pass.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
sampler.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
shader.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
surface.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
texture.rs chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
webgpu.idl chore: update wgpu (#23684) 2024-05-05 07:22:18 -07: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