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 e83ff62ccb
chore: split web op crate (#9635)
This commit starts splitting out the deno_web op crate into multiple
smaller crates. This commit splits out WebIDL and URL API, but in the
future I want to split out each spec into its own crate. That means we
will have (in rough order of loading): `webidl`, `dom`, `streams`,
`console`, `encoding`, `url`, `file`, `fetch`, `websocket`, and
`webgpu` crates.
2021-03-12 16:17:18 +01:00
..
01_webgpu.js fix: getBindGroupLayout always illegal invocation (#9684) 2021-03-10 10:15:57 +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 feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
buffer.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
bundle.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
Cargo.toml chore: split web op crate (#9635) 2021-03-12 16:17:18 +01:00
command_encoder.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
compute_pass.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01: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 feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
pipeline.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
queue.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
README.md feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
render_pass.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
sampler.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
shader.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
texture.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01: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