1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/op_crates/webgpu
crowlKats 0f9c929b3a
fix(op_crates/webgpu): create instance only when required (#9771)
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
2021-03-20 00:43:54 +01:00
..
01_webgpu.js fix(op_crates/webgpu): create instance only when required (#9771) 2021-03-20 00:43:54 +01:00
02_idl_types.js fix(webgpu): add webidl records and simple unions (#9698) 2021-03-08 14:22:05 +01:00
binding.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
buffer.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
bundle.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
Cargo.toml chore: upgrade to tokio 1.3.0 (#9778) 2021-03-14 10:03:24 -04:00
command_encoder.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
compute_pass.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
error.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
lib.deno_webgpu.d.ts fix(webgpu): Add Uint32Array type for code in ShaderModuleDescriptor (#9730) 2021-03-09 11:43:58 -05:00
lib.rs fix(op_crates/webgpu): create instance only when required (#9771) 2021-03-20 00:43:54 +01:00
pipeline.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
queue.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
README.md feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
render_pass.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
sampler.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
shader.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
texture.rs chores: enforce type ResourceId across codebase (#9837) 2021-03-19 13:25:37 -04:00
webgpu.idl feat: WebGPU API (#7977) 2021-03-01 11:31:13 +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