0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/op_crates/webgpu
Luca Casonato 4e70ff80c2
chore: update deps (#10058)
This commit updates crate dependencies.
2021-04-08 18:46:14 +02: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): correct GPUFeatureName webidl to match typings (#10023) 2021-04-06 22:06:55 +02:00
binding.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
buffer.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
bundle.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
Cargo.toml chore: update deps (#10058) 2021-04-08 18:46:14 +02:00
command_encoder.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
compute_pass.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
error.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02: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 refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
pipeline.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
queue.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
README.md feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
render_pass.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
sampler.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
shader.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
texture.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02: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