Skip to content

Commit 2cc59c5

Browse files
anssikofdwr
andauthored
Add resource contention considerations (#765)
This is to address feedback from the TAG review: w3ctag/design-reviews#933 Co-authored-by: Dwayne Robinson <[email protected]>
1 parent d1d71ed commit 2cc59c5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

index.bs

+2
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,8 @@ This API is disabled by default in all cross-origin frames using the [[#permissi
608608

609609
This API allows creation of an {{MLContext}} from a {{GPUDevice}} defined by WebGPU specification. See <a href="https://gpuweb.github.io/gpuweb/#security-considerations">WebGPU Security Considerations</a> for more information regarding security characteristics of this context.
610610

611+
This API provides an abstraction across GPU, CPU, and dedicated ML accelerator hardware. When using a GPU, <a href="https://www.w3.org/TR/webgpu/#security-dos">denial of service</a> considerations similar to WebGPU apply. When using a CPU or a dedicated ML accelerator, the types of potential resource contention are different and mitigations will be implementation and configuration dependent. Implementations should use whatever mechanisms are available from the platform to prevent sites from using an unfair amount of system resources. These compute units are shared resources, and the use of any compute API will affect overall performance on a fully-loaded system.
612+
611613
Once the graph is fully constructed and compiled, the input shapes into each of the operations in the graph are inferred and finalized. The bounds checking occurs when the compute method is invoked that executes the graph against the actual data. No actual data is bound to the compiled graph before this stage. It is the implementation's responsibility to make sure proper bounds checking occurs against the shapes of the data already inferred by that time.
612614

613615
Issue: Document operations susceptible to out-of-bounds access as a guidance to implementers.

0 commit comments

Comments
 (0)