Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucacasonato/wgpu_cts_runner
A minimal JS runtime built on Deno (deno_core / extensions) that can be used to test WebGPU CTS outside of full Deno.
https://github.com/lucacasonato/wgpu_cts_runner
deno rust webgpu
Last synced: 26 days ago
JSON representation
A minimal JS runtime built on Deno (deno_core / extensions) that can be used to test WebGPU CTS outside of full Deno.
- Host: GitHub
- URL: https://github.com/lucacasonato/wgpu_cts_runner
- Owner: lucacasonato
- License: mit
- Created: 2021-06-01T16:11:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-19T18:25:34.000Z (about 3 years ago)
- Last Synced: 2024-10-06T10:50:17.321Z (about 1 month ago)
- Topics: deno, rust, webgpu
- Language: Rust
- Homepage:
- Size: 36.1 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wgpu_cts_runner
A minimal JS runtime built on Deno (deno_core / extensions) that can be used to
test WebGPU CTS outside of full Deno.## How to run code
```shell
$ cargo run examples/hello-compute.js
```All code is executed as an ES Module. Dynamic imports are supported. No `Deno.*`
APIs are available other than `Deno.core.*`.Following globals are available:
- Object
- Function
- Array
- Number
- parseFloat
- parseInt
- Infinity
- NaN
- undefined
- Boolean
- String
- Symbol
- Date
- Promise
- RegExp
- Error
- AggregateError
- EvalError
- RangeError
- ReferenceError
- SyntaxError
- TypeError
- URIError
- globalThis
- JSON
- Math
- console
- Intl
- ArrayBuffer
- Uint8Array
- Int8Array
- Uint16Array
- Int16Array
- Uint32Array
- Int32Array
- Float32Array
- Float64Array
- Uint8ClampedArray
- BigUint64Array
- BigInt64Array
- DataView
- Map
- BigInt
- Set
- WeakMap
- WeakSet
- Proxy
- Reflect
- decodeURI
- decodeURIComponent
- encodeURI
- encodeURIComponent
- escape
- unescape
- eval
- isFinite
- isNaN
- Deno
- queueMicrotask
- DOMException
- Event
- EventTarget
- ErrorEvent
- CloseEvent
- MessageEvent
- CustomEvent
- ProgressEvent
- dispatchEvent
- addEventListener
- removeEventListener
- AbortSignal
- AbortController
- TextEncoder
- TextDecoder
- atob
- btoa
- SharedArrayBuffer
- Atomics
- FinalizationRegistry
- WeakRef
- WebAssembly
- Navigator
- navigator
- URL
- URLSearchParams
- GPU
- GPUAdapter
- GPUAdapterLimits
- GPUSupportedFeatures
- GPUDevice
- GPUQueue
- GPUBuffer
- GPUBufferUsage
- GPUMapMode
- GPUTexture
- GPUTextureUsage
- GPUTextureView
- GPUSampler
- GPUBindGroupLayout
- GPUPipelineLayout
- GPUBindGroup
- GPUShaderModule
- GPUShaderStage
- GPUComputePipeline
- GPURenderPipeline
- GPUColorWrite
- GPUCommandEncoder
- GPURenderPassEncoder
- GPUComputePassEncoder
- GPUCommandBuffer
- GPURenderBundleEncoder
- GPURenderBundle
- GPUQuerySet
- GPUOutOfMemoryError
- GPUValidationError
- Window
- window
- self