deno/ext/webgpu
David Sherret fb021d7cef
refactor: remove usages of map_or / map_or_else (#18212)
These methods are confusing because the arguments are backwards. I feel
like they should have never been added to `Option<T>` and that clippy
should suggest rewriting to
`map(...).unwrap_or(...)`/`map(...).unwrap_or_else(|| ...)`

https://github.com/rust-lang/rfcs/issues/1025
2023-03-15 17:46:36 -04:00
..
01_webgpu.js refactor: rename InternalModuleLoader to ExtModuleLoader, use ext: scheme for snapshotted modules (#18041) 2023-03-08 12:44:54 +01:00
02_idl_types.js refactor: rename InternalModuleLoader to ExtModuleLoader, use ext: scheme for snapshotted modules (#18041) 2023-03-08 12:44:54 +01:00
03_surface.js refactor: rename InternalModuleLoader to ExtModuleLoader, use ext: scheme for snapshotted modules (#18041) 2023-03-08 12:44:54 +01:00
04_surface_idl_types.js refactor: rename InternalModuleLoader to ExtModuleLoader, use ext: scheme for snapshotted modules (#18041) 2023-03-08 12:44:54 +01:00
binding.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
buffer.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
bundle.rs fix(webgpu): don't default to 0 for setVertexBuffer.size & properly use webidl.setlike (#17800) 2023-02-23 19:05:50 +01:00
Cargo.toml chore: forward v1.31.2 release commit to main (#18114) 2023-03-10 17:39:29 +09:00
command_encoder.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
compute_pass.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
error.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
lib.rs refactor: remove usages of map_or / map_or_else (#18212) 2023-03-15 17:46:36 -04:00
LICENSE.md chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
pipeline.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
queue.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
README.md Rename extensions/ directory to ext/ (#11643) 2021-08-11 12:27:05 +02:00
render_pass.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
sampler.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
shader.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
surface.rs build: run clippy with --all-features (#18115) 2023-03-10 21:07:28 +09:00
texture.rs refactor: move webgpu files to ext root (#17832) 2023-02-20 16:48:02 +00:00
webgpu.idl chore: update webgpu (#17534) 2023-01-30 15:14: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 February 22, 2021. 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