1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 04:52:26 -05:00
denoland-deno/ext/webgpu
David Sherret 2ab5d9ac4a
refactor: move denort to separate crate (#27688)
This slightly degrades the performance of CJS export analysis on
subsequent runs because I changed it to no longer cache in the DENO_DIR
with this PR (denort now properly has no idea about the DENO_DIR). We'll
have to change it to embed this data in the binary and that will also
allow us to get rid of swc in denort (will do that in a follow-up PR).
2025-01-18 00:03:13 +01:00
..
00_init.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
01_webgpu.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
02_surface.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
binding.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
buffer.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
bundle.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
byow.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
Cargo.toml chore: forward v2.1.6 release commit to main (#27705) 2025-01-17 02:09:13 +01:00
command_encoder.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
compute_pass.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
error.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
lib.rs refactor: move denort to separate crate (#27688) 2025-01-18 00:03:13 +01:00
LICENSE.md chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
pipeline.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
queue.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
README.md chore: update wgpu (#23684) 2024-05-05 07:22:18 -07:00
render_pass.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
sampler.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
shader.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
surface.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
texture.rs refactor: update deno_core for error refactor (#26867) 2025-01-08 14:52:32 -08:00
webgpu.idl BREAKING(webgpu/unstable): Replace async .requestAdapterInfo() with sync .info (#24783) 2024-08-06 15:30:32 +05:30

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