From c9b696d1085e79a2b439411f4dc04c339ca056c2 Mon Sep 17 00:00:00 2001 From: reffy-bot <> Date: Thu, 5 Dec 2024 01:35:20 +0000 Subject: [PATCH] Update of TR report from new reffy run Using reffy commit 18.0.0. --- tr/algorithms/FileAPI.json | 57 +- tr/algorithms/webnn.json | 1234 ++++++++----------- tr/dfns/FileAPI.json | 42 +- tr/dfns/webnn.json | 260 +--- tr/headings/FileAPI.json | 9 +- tr/headings/webnn.json | 43 +- tr/idl/webnn.idl | 9 - tr/ids/FileAPI.json | 60 +- tr/ids/webnn.json | 2329 +++++++++++++++++------------------- tr/index.json | 16 +- tr/links/FileAPI.json | 16 +- tr/links/webnn.json | 19 +- tr/refs/FileAPI.json | 8 + 13 files changed, 1818 insertions(+), 2284 deletions(-) diff --git a/tr/algorithms/FileAPI.json b/tr/algorithms/FileAPI.json index 780070756b31..ffbb4c7fc24a 100644 --- a/tr/algorithms/FileAPI.json +++ b/tr/algorithms/FileAPI.json @@ -759,6 +759,26 @@ } ] }, + { + "name": "obtainBlobObject", + "href": "https://www.w3.org/TR/FileAPI/#blob-url-obtain-object", + "html": "To obtain a blob object given a blob URL entry blobUrlEntry and an environment settings object or the string \"navigation\" environment,\nperform the following steps. They return an object.", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let isAuthorized be true.

" + }, + { + "html": "

If environment is not the string \"navigation\", then set isAuthorized to the result of checking for same-partition blob URL usage with blobUrlEntry and environment.

" + }, + { + "html": "

If isAuthorized is false, then return failure.

" + }, + { + "html": "

Return blobUrlEntry’s object.

" + } + ] + }, { "name": "createBlobURL", "href": "https://www.w3.org/TR/FileAPI/#unicodeBlobURL", @@ -810,7 +830,7 @@ "html": "

Let url be the result of generating a new blob URL.

" }, { - "html": "

Let entry be a new blob URL entry consisting of object and the current settings object.

" + "html": "

Let entry be a new blob URL entry consisting of object and the current settings object.

" }, { "html": "

Set store[url] to entry.

" @@ -857,6 +877,26 @@ } ] }, + { + "name": "checkForSamePartitionBlobUrlUsage", + "href": "https://www.w3.org/TR/FileAPI/#check-for-same-partition-blob-url-usage", + "html": "To check for same-partition blob URL usage given a blob URL entry blobUrlEntry and an environment settings object environment, perform the following steps. They return a boolean.", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let blobStorageKey be the result of obtaining a storage key for non-storage purposes with blobUrlEntry’s environment.

" + }, + { + "html": "

Let environmentStorageKey be the result of obtaining a storage key for non-storage purposes with environment.

" + }, + { + "html": "

If blobStorageKey is not equal to environmentStorageKey, then return false.

" + }, + { + "html": "

Return true.

" + } + ] + }, { "html": "This specification extends the unloading document cleanup steps with the following steps:", "rationale": "let", @@ -868,7 +908,7 @@ "html": "

Let store be the user agent’s blob URL store;

" }, { - "html": "

Remove from store any entries for which the value's environment is equal to environment.

" + "html": "

Remove from store any entries for which the value's environment is equal to environment.

" } ] }, @@ -879,19 +919,22 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let url record be the result of parsing url.

" + "html": "

Let urlRecord be the result of parsing url.

" + }, + { + "html": "

If urlRecord’s scheme is not \"blob\", return.

" }, { - "html": "

If url record’s scheme is not \"blob\", return.

" + "html": "

Let entry be urlRecord’s blob URL entry.

" }, { - "html": "

Let origin be the origin of url record.

" + "html": "

If entry is null, then return.

" }, { - "html": "

Let settings be the current settings object.

" + "html": "

Let isAuthorized be the result of checking for same-partition blob URL usage with entry and the current settings object.

" }, { - "html": "

If origin is not same origin with settings’s origin, return.

" + "html": "

If isAuthorized is false, then return.

" }, { "html": "

Remove an entry from the Blob URL Store for url.

" diff --git a/tr/algorithms/webnn.json b/tr/algorithms/webnn.json index d8d03ffc7592..03a0063b4b04 100644 --- a/tr/algorithms/webnn.json +++ b/tr/algorithms/webnn.json @@ -10,7 +10,7 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let context be a new MLContext object with realm.

" + "html": "

Let context be a new MLContext object with realm.

" }, { "html": "If options is a GPUDevice object:", @@ -176,198 +176,6 @@ } ] }, - { - "name": "execute graph", - "href": "https://www.w3.org/TR/webnn/#execute-graph", - "rationale": ".algorithm", - "steps": [ - { - "html": "

Let inputResources be the input resources of graph.[[implementation]].

" - }, - { - "html": "For each nameinputValue of inputs:", - "rationale": "let", - "steps": [ - { - "html": "

Let inputDescriptor be graph.[[inputDescriptors]][name].

" - }, - { - "html": "Let inputTensor be a new tensor for graph.[[implementation]] as follows:", - "rationale": "set", - "steps": [ - { - "html": "

Set the data type of inputTensor to the one that matches inputValue’s element type.

" - }, - { - "html": "

Set the shape of inputTensor to inputDescriptor.shape.

" - }, - { - "html": "

Set the values of elements in inputTensor to the values of elements in inputValue.

" - } - ] - }, - { - "html": "

Request the underlying implementation of graph to bind inputResources[name] to inputTensor.

" - } - ] - }, - { - "html": "For each nameoutputValue of outputs:", - "rationale": "issue", - "steps": [ - { - "html": "Issue a compute request to graph.[[implementation]] given name and inputResources and wait for completion.", - "rationale": "if", - "steps": [ - { - "html": "

If that returns an error, then return an \"OperationError\" DOMException.

" - }, - { - "html": "

Otherwise, let outputTensor be the result.

" - } - ] - }, - { - "html": "

Let outputDesc be graph.[[outputDescriptors]][name].

" - }, - { - "html": "

If the byte length of outputTensor is not equal to outputDesc’s byte length, then return a TypeError.

" - }, - { - "html": "

If outputTensor’s element type doesn’t match outputValue’s element type, then return a TypeError.

" - }, - { - "html": "

Request the underlying implementation of graph to set the values of elements in outputValue to the values of elements in outputTensor.

" - } - ] - }, - { - "html": "

Return undefined.

" - } - ] - }, - { - "name": "MLNamedArrayBufferViews/transfer", - "href": "https://www.w3.org/TR/webnn/#mlnamedarraybufferviews-transfer", - "rationale": ".algorithm", - "steps": [ - { - "html": "For each nameview of views:", - "rationale": "if", - "steps": [ - { - "html": "

If view is not transferable, then throw a TypeError.

" - } - ] - }, - { - "html": "

Let transferredViews be a new MLNamedArrayBufferViews.

" - }, - { - "html": "For each nameview of views:", - "rationale": "let", - "steps": [ - { - "html": "

Let transferredBuffer be the result of transferring view’s underlying buffer.

" - }, - { - "html": "

Assert: The above step never throws an exception.

" - }, - { - "html": "

Let constructor be the appropriate view constructor for the type of ArrayBufferView view from realm.

" - }, - { - "html": "

Let elementsNumber be the result of view’s byte length / view’s element size.

" - }, - { - "html": "

Let transferredView be Construct(constructor, transferredBuffer, view.[[ByteOffset]], elementsNumber).

" - }, - { - "html": "

Set transferredViews[name] to transferredView.

" - } - ] - }, - { - "html": "

Return transferredViews.

" - } - ] - }, - { - "name": "MLContext/compute(graph, inputs, outputs)", - "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-compute", - "rationale": ".algorithm", - "steps": [ - { - "html": "

Let global be this's relevant global object.

" - }, - { - "html": "

Let realm be this's relevant realm.

" - }, - { - "html": "

If graph.[[context]] is not this, then return a new promise rejected with a TypeError.

" - }, - { - "html": "

If graph.[[context]].[[contextType]] is not \"default\", then return a new promise rejected with an \"OperationError\" DOMException.

" - }, - { - "html": "For each namedescriptor of graph.[[inputDescriptors]]:", - "rationale": "if", - "steps": [ - { - "html": "

If inputs[name] does not exist, then return a new promise rejected with a TypeError.

" - }, - { - "html": "

If validating buffer with descriptor given inputs[name] and descriptor returns false, then return a new promise rejected with a TypeError.

" - } - ] - }, - { - "html": "For each nameresource of outputs:", - "rationale": "if", - "steps": [ - { - "html": "

If graph.[[outputDescriptors]][name] does not exist, then return a new promise rejected with a TypeError.

" - }, - { - "html": "

If validating buffer with descriptor given resource and graph.[[outputDescriptors]][name] returns false, then return a new promise rejected with a TypeError.

" - } - ] - }, - { - "html": "

Let transferredInputs be the result of transferring MLNamedArrayBufferViews inputs with realm. If that threw an exception, then return a new promise rejected with that exception.

" - }, - { - "html": "

Let transferredOutputs be the result of transferring MLNamedArrayBufferViews outputs with realm. If that threw an exception, then return a new promise rejected with that exception.

" - }, - { - "html": "

Let promise be a new promise.

" - }, - { - "html": "Run the following steps in parallel:", - "rationale": "invoke", - "steps": [ - { - "html": "

Invoke execute graph given graph, transferredInputs and transferredOutputs. If that returns an error, then queue an ML task with global to reject promise with an equivalent error in realm and abort these steps.

" - }, - { - "html": "

Let result be a new MLComputeResult with realm.

" - }, - { - "html": "

Set result.inputs to transferredInputs.

" - }, - { - "html": "

Set result.outputs to transferredOutputs.

" - }, - { - "html": "

Queue an ML task with global to resolve promise with result.

" - } - ] - }, - { - "html": "

Return promise.

" - } - ] - }, { "name": "MLContext/dispatch(graph, inputs, outputs)", "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch", @@ -377,37 +185,37 @@ "html": "

Let allTensors be a list of MLTensors consisting of inputs’s values extended by outputs’s values.

" }, { - "html": "

If allTensors contains any duplicate items, then throw a TypeError.

" + "html": "

If allTensors contains any duplicate items, then throw a TypeError.

" }, { "html": "For each tensor of allTensors:", "rationale": "if", "steps": [ { - "html": "

If tensor.[[context]] is not this, then throw a TypeError.

" + "html": "

If tensor.[[context]] is not this, then throw a TypeError.

" }, { - "html": "

If tensor.[[isDestroyed]] is true, then throw a TypeError.

" + "html": "

If tensor.[[isDestroyed]] is true, then throw a TypeError.

" } ] }, { - "html": "

If validating tensors with descriptors given inputs and graph.[[inputDescriptors]] returns false, then throw a TypeError.

" + "html": "

If validating tensors with descriptors given inputs and graph.[[inputDescriptors]] returns false, then throw a TypeError.

" }, { - "html": "

If validating tensors with descriptors given outputs and graph.[[outputDescriptors]] returns false, then throw a TypeError.

" + "html": "

If validating tensors with descriptors given outputs and graph.[[outputDescriptors]] returns false, then throw a TypeError.

" }, { - "html": "Enqueue the following steps to graph.[[context]].[[timeline]]:", + "html": "Enqueue the following steps to graph.[[context]].[[timeline]]:", "rationale": "issue", "steps": [ { - "html": "

Issue a compute request to graph.[[implementation]] given inputs and outputs.

" + "html": "

Issue a compute request to graph.[[implementation]] given inputs and outputs.

" } ] }, { - "html": "

Return undefined.

" + "html": "

Return undefined.

" } ] }, @@ -417,26 +225,26 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let global be this's relevant global object.

" + "html": "

Let global be this's relevant global object.

" }, { - "html": "

Let tensor be the result of creating an MLTensor given this, and descriptor.

" + "html": "

Let tensor be the result of creating an MLTensor given this, and descriptor.

" }, { - "html": "

Let promise be a new promise.

" + "html": "

Let promise be a new promise.

" }, { - "html": "Enqueue the following steps to this.[[timeline]]:", + "html": "Enqueue the following steps to this.[[timeline]]:", "rationale": "create", "steps": [ { "html": "

Create tensor.[[data]] given descriptor and initialize all bytes to zeros.

" }, { - "html": "

If that fails, then queue an ML task with global to reject promise with an \"UnknownError\" DOMException, and abort these steps.

" + "html": "

If that fails, then queue an ML task with global to reject promise with an \"UnknownError\" DOMException, and abort these steps.

" }, { - "html": "

Otherwise, queue an ML task with global to resolve promise with tensor.

" + "html": "

Otherwise, queue an ML task with global to resolve promise with tensor.

" } ] }, @@ -451,35 +259,35 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let global be this's relevant global object.

" + "html": "

Let global be this's relevant global object.

" }, { - "html": "

Let realm be this's relevant realm.

" + "html": "

Let realm be this's relevant realm.

" }, { - "html": "

If tensor.[[context]] is not this, then return a new promise rejected with a TypeError.

" + "html": "

If tensor.[[context]] is not this, then return a new promise rejected with a TypeError.

" }, { - "html": "

If tensor.[[isDestroyed]] is true, then return a new promise rejected with a TypeError.

" + "html": "

If tensor.[[isDestroyed]] is true, then return a new promise rejected with a TypeError.

" }, { - "html": "

If tensor.[[descriptor]].readable is false, then return a new promise rejected with a TypeError.

" + "html": "

If tensor.[[descriptor]].readable is false, then return a new promise rejected with a TypeError.

" }, { - "html": "

Let promise be a new promise.

" + "html": "

Let promise be a new promise.

" }, { - "html": "Enqueue the following steps to tensor.[[context]].[[timeline]]:", + "html": "Enqueue the following steps to tensor.[[context]].[[timeline]]:", "rationale": "let", "steps": [ { "html": "

Let bytes be a byte sequence containing a copy of tensor.[[data]].

" }, { - "html": "

If that fails, then queue an ML task with global to reject promise with an \"UnknownError\" DOMException, and abort these steps.

" + "html": "

If that fails, then queue an ML task with global to reject promise with an \"UnknownError\" DOMException, and abort these steps.

" }, { - "html": "

Otherwise, queue an ML task with global to create an ArrayBuffer result given bytes and realm and then resolve promise with result.

" + "html": "

Otherwise, queue an ML task with global to create an ArrayBuffer result given bytes and realm and then resolve promise with result.

" } ] }, @@ -494,45 +302,45 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let global be this's relevant global object.

" + "html": "

Let global be this's relevant global object.

" }, { - "html": "

If tensor.[[context]] is not this, then return a new promise rejected with a TypeError.

" + "html": "

If tensor.[[context]] is not this, then return a new promise rejected with a TypeError.

" }, { - "html": "

If tensor.[[isDestroyed]] is true, then return a new promise rejected with a TypeError.

" + "html": "

If tensor.[[isDestroyed]] is true, then return a new promise rejected with a TypeError.

" }, { - "html": "

If tensor.[[descriptor]].readable is false, then return a new promise rejected with a TypeError.

" + "html": "

If tensor.[[descriptor]].readable is false, then return a new promise rejected with a TypeError.

" }, { - "html": "

If validating buffer with descriptor given outputData and tensor.[[descriptor]] returns false, then return a new promise rejected with a TypeError.

" + "html": "

If validating buffer with descriptor given outputData and tensor.[[descriptor]] returns false, then return a new promise rejected with a TypeError.

" }, { - "html": "

Let promise be a new promise.

" + "html": "

Let promise be a new promise.

" }, { - "html": "Enqueue the following steps to tensor.[[context]].[[timeline]]:", + "html": "Enqueue the following steps to tensor.[[context]].[[timeline]]:", "rationale": "let", "steps": [ { "html": "

Let bytes be a byte sequence containing a copy of tensor.[[data]].

" }, { - "html": "

If that fails, then queue an ML task with global to reject promise with an \"UnknownError\" DOMException, and abort these steps.

" + "html": "

If that fails, then queue an ML task with global to reject promise with an \"UnknownError\" DOMException, and abort these steps.

" }, { - "html": "Otherwise, queue an ML task with global and the following steps:", + "html": "Otherwise, queue an ML task with global and the following steps:", "rationale": "if", "steps": [ { - "html": "

If outputData is detached, reject promise with a TypeError, and abort these steps.

" + "html": "

If outputData is detached, reject promise with a TypeError, and abort these steps.

" }, { "html": "

Write bytes to outputData.

" }, { - "html": "

Resolve promise with undefined.

" + "html": "

Resolve promise with undefined.

" } ] } @@ -549,25 +357,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If tensor.[[context]] is not this, then throw a TypeError.

" + "html": "

If tensor.[[context]] is not this, then throw a TypeError.

" }, { - "html": "

If tensor.[[isDestroyed]] is true, then throw a TypeError.

" + "html": "

If tensor.[[isDestroyed]] is true, then throw a TypeError.

" }, { - "html": "

If tensor.[[descriptor]].writable is false, then throw a TypeError.

" + "html": "

If tensor.[[descriptor]].writable is false, then throw a TypeError.

" }, { - "html": "

If validating buffer with descriptor given inputData and tensor.[[descriptor]] returns false, then throw a TypeError.

" + "html": "

If validating buffer with descriptor given inputData and tensor.[[descriptor]] returns false, then throw a TypeError.

" }, { "html": "

Let bytes be the result of getting a copy of the bytes held by the buffer source given inputData.

" }, { - "html": "

Assert: bytes’s length is equal to tensor.[[descriptor]]'s byte length.

" + "html": "

Assert: bytes’s length is equal to tensor.[[descriptor]]'s byte length.

" }, { - "html": "Enqueue the following steps to tensor.[[context]].[[timeline]]:", + "html": "Enqueue the following steps to tensor.[[context]].[[timeline]]:", "rationale": "copy", "steps": [ { @@ -576,7 +384,7 @@ ] }, { - "html": "

Return undefined.

" + "html": "

Return undefined.

" } ] }, @@ -592,7 +400,7 @@ "html": "

Set descriptor.dataType to dataType.

" }, { - "html": "

Set descriptor.shape to a clone of shape.

" + "html": "

Set descriptor.shape to a clone of shape.

" }, { "html": "

Return descriptor.

" @@ -608,7 +416,7 @@ "html": "

Let elementLength be 1.

" }, { - "html": "For each dimension of desc.shape:", + "html": "For each dimension of desc.shape:", "rationale": "set", "steps": [ { @@ -617,7 +425,7 @@ ] }, { - "html": "

Let elementSize be the element size of one of the ArrayBufferView types that matches desc.dataType according to this table.

" + "html": "

Let elementSize be the element size of one of the ArrayBufferView types that matches desc.dataType according to this table.

" }, { "html": "

Return elementLength * elementSize.

" @@ -630,13 +438,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If any element of descriptor.shape is not a valid dimension, return false.

" + "html": "

If any element of descriptor.shape is not a valid dimension, return false.

" }, { - "html": "

If descriptor.shape's size is too large to be supported by the implementation, return false.

" + "html": "

If descriptor.shape's size is too large to be supported by the implementation, return false.

" }, { - "html": "

If descriptor’s byte length is not supported by the implementation, then return false.

" + "html": "

If descriptor’s byte length is not supported by the implementation, then return false.

" }, { "html": "

Return true.

" @@ -677,7 +485,7 @@ "html": "

Set result.[[descriptor]] to operand.[[descriptor]].

" }, { - "html": "

If operand.[[name]] exists, then set result.[[name]] to operand.[[name]].

" + "html": "

If operand.[[name]] exists, then set result.[[name]] to operand.[[name]].

" }, { "html": "

Return result.

" @@ -712,19 +520,19 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Set this.[[isDestroyed]] to true.

" + "html": "

Set this.[[isDestroyed]] to true.

" }, { - "html": "Enqueue the following steps to this.[[context]].[[timeline]]:", + "html": "Enqueue the following steps to this.[[context]].[[timeline]]:", "rationale": "release", "steps": [ { - "html": "

Release this.[[data]].

" + "html": "

Release this.[[data]].

" } ] }, { - "html": "

Return undefined.

" + "html": "

Return undefined.

" } ] }, @@ -734,13 +542,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this's relevant global object's associated Document is not allowed to use the webnn feature, then throw a \"SecurityError\" DOMException.

" + "html": "

If this's relevant global object's associated Document is not allowed to use the webnn feature, then throw a \"SecurityError\" DOMException.

" }, { - "html": "

Set this.[[context]] to context.

" + "html": "

Set this.[[context]] to context.

" }, { - "html": "

Set this.[[hasBuilt]] to false.

" + "html": "

Set this.[[hasBuilt]] to false.

" } ] }, @@ -750,29 +558,29 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If name is empty, then throw a TypeError.

" + "html": "

If name is empty, then throw a TypeError.

" }, { - "html": "

If any MLOperands in this's graph's inputs have a [[name]] equal to name, then throw a TypeError.

" + "html": "

If any MLOperands in this's graph's inputs have a [[name]] equal to name, then throw a TypeError.

" }, { - "html": "

If checking dimensions given descriptor returns false, then throw a TypeError.

" + "html": "

If checking dimensions given descriptor returns false, then throw a TypeError.

" }, { "html": "Make graph connections:", "rationale": "let", "steps": [ { - "html": "

Let operand be the result of creating an MLOperand given this and descriptor.

" + "html": "

Let operand be the result of creating an MLOperand given this and descriptor.

" }, { "html": "

Set operand.[[name]] to name.

" }, { - "html": "

Add operand to this's graph's inputs.

" + "html": "

Add operand to this's graph's inputs.

" } ] }, @@ -787,26 +595,26 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If checking dimensions given descriptor returns false, then throw a TypeError.

" + "html": "

If checking dimensions given descriptor returns false, then throw a TypeError.

" }, { - "html": "

If validating buffer with descriptor given buffer and descriptor returns false, then throw a TypeError.

" + "html": "

If validating buffer with descriptor given buffer and descriptor returns false, then throw a TypeError.

" }, { "html": "Make graph connections:", "rationale": "let", "steps": [ { - "html": "

Let operand be the result of creating an MLOperand given this and descriptor.

" + "html": "

Let operand be the result of creating an MLOperand given this and descriptor.

" }, { "html": "

Let bytes be the result of getting a copy of the bytes held by the buffer source given buffer.

" }, { - "html": "

Add operand to this's graph's constants with bytes as value.

" + "html": "

Add operand to this's graph's constants with bytes as value.

" } ] }, @@ -821,7 +629,7 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { "html": "

Set value to the result of casting value to type.

" @@ -834,10 +642,10 @@ "rationale": "let", "steps": [ { - "html": "

Let operand be the result of creating an MLOperand given this and descriptor.

" + "html": "

Let operand be the result of creating an MLOperand given this and descriptor.

" }, { - "html": "

Add operand to this's graph's constants with value as value.

" + "html": "

Add operand to this's graph's constants with value as value.

" } ] }, @@ -852,23 +660,23 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then return a new promise rejected with an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then return a new promise rejected with an \"InvalidStateError\" DOMException.

" }, { - "html": "

If outputs is empty, then return a new promise rejected with a TypeError.

" + "html": "

If outputs is empty, then return a new promise rejected with a TypeError.

" }, { - "html": "For each nameoperand of outputs:", + "html": "For each nameoperand of outputs:", "rationale": "if", "steps": [ { - "html": "

If name is empty, then return a new promise rejected with a TypeError.

" + "html": "

If name is empty, then return a new promise rejected with a TypeError.

" }, { - "html": "

If validating operand given this and operand returns false, then return a new promise rejected with a TypeError.

" + "html": "

If validating operand given this and operand returns false, then return a new promise rejected with a TypeError.

" }, { - "html": "

If operand is in this's graph's inputs or constants, then return a new promise rejected with a TypeError.

" + "html": "

If operand is in this's graph's inputs or constants, then return a new promise rejected with a TypeError.

" } ] }, @@ -898,7 +706,7 @@ "html": "

Append operand.[[operator]] to operators.

" }, { - "html": "

If operand is in this's graph's inputs, append operand to inputs.

" + "html": "

If operand is in this's graph's inputs, append operand to inputs.

" }, { "html": "For each input of operand.[[operator]]'s inputs:", @@ -912,61 +720,61 @@ ] }, { - "html": "

Let global be this's relevant global object.

" + "html": "

Let global be this's relevant global object.

" }, { - "html": "

Let realm be this's relevant realm.

" + "html": "

Let realm be this's relevant realm.

" }, { - "html": "

Let graph be a new MLGraph with realm.

" + "html": "

Let graph be a new MLGraph with realm.

" }, { - "html": "

Set graph.[[context]] to this.[[context]].

" + "html": "

Set graph.[[context]] to this.[[context]].

" }, { "html": "For each operand in inputs:", "rationale": "set", "steps": [ { - "html": "

Set graph.[[inputDescriptors]][operand.[[name]]] to operand.[[descriptor]].

" + "html": "

Set graph.[[inputDescriptors]][operand.[[name]]] to operand.[[descriptor]].

" } ] }, { - "html": "For each nameoperand of outputs:", + "html": "For each nameoperand of outputs:", "rationale": "set", "steps": [ { - "html": "

Set graph.[[outputDescriptors]][name] to operand.[[descriptor]].

" + "html": "

Set graph.[[outputDescriptors]][name] to operand.[[descriptor]].

" } ] }, { - "html": "

Let promise be a new promise.

" + "html": "

Let promise be a new promise.

" }, { - "html": "Run the following steps in parallel:", + "html": "Run the following steps in parallel:", "rationale": "let", "steps": [ { - "html": "Let graphImpl be the result of converting this's graph with operands, operators, inputs, and outputs’s values into an implementation-defined format which can be interpreted by the underlying platform.", + "html": "Let graphImpl be the result of converting this's graph with operands, operators, inputs, and outputs’s values into an implementation-defined format which can be interpreted by the underlying platform.", "rationale": "if", "steps": [ { - "html": "

If the underlying platform does not support a requested feature, then queue an ML task with global to reject promise with an \"OperationError\" DOMException, and abort these steps.

" + "html": "

If the underlying platform does not support a requested feature, then queue an ML task with global to reject promise with an \"OperationError\" DOMException, and abort these steps.

" } ] }, { - "html": "

Set graph.[[implementation]] to graphImpl.

" + "html": "

Set graph.[[implementation]] to graphImpl.

" }, { - "html": "

Queue an ML task with global to resolve promise with graph.

" + "html": "

Queue an ML task with global to resolve promise with graph.

" } ] }, { - "html": "

Set this.[[hasBuilt]] to true.

" + "html": "

Set this.[[hasBuilt]] to true.

" }, { "html": "

Return promise.

" @@ -979,19 +787,19 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Assert: op is one of \"argMin\", \"argMax\".

" + "html": "

Assert: op is one of \"argMin\", \"argMax\".

" }, { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s shape[axis] is greater than options.outputDataType's maximum value, throw a TypeError.

" + "html": "

If input’s shape[axis] is greater than options.outputDataType's maximum value, throw a TypeError.

" }, { - "html": "

Let outputShape be the result of calculating reduction output sizes given input’s shape, « axis », and options.keepDimensions. If that returns failure, then throw a TypeError.

" + "html": "

Let outputShape be the result of calculating reduction output sizes given input’s shape, « axis », and options.keepDimensions. If that returns failure, then throw a TypeError.

" }, { "html": "

Let desc be the result of creating an MLOperandDescriptor given options.outputDataType and outputShape.

" @@ -1004,7 +812,7 @@ "html": "

Let operator be an operator for the op operation, given options.

" }, { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Set output.[[operator]] to operator.

" @@ -1033,7 +841,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1053,7 +861,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1068,53 +876,53 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input, mean, variance, options.scale (if it exists), and options.bias (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, mean, variance, options.scale (if it exists), and options.bias (if it exists) returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If options.axis is not in the range 0 to input’s rank, exclusive, then throw a TypeError.

" + "html": "

If options.axis is not in the range 0 to input’s rank, exclusive, then throw a TypeError.

" }, { - "html": "

If mean’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If mean’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If mean’s shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" + "html": "

If mean’s shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" }, { - "html": "

If variance’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If variance’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If variance’s shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" + "html": "

If variance’s shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" }, { "html": "

Set options.epsilon to the result of casting options.epsilon to input’s dataType.

" }, { - "html": "If options.scale exists:", + "html": "If options.scale exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" + "html": "

If its shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" } ] }, { - "html": "If options.bias exists:", + "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" + "html": "

If its shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" } ] }, @@ -1126,7 +934,7 @@ "html": "

Let operator be an operator for the \"batchNormalization\" operation, given input, mean, variance and options.

" }, { - "html": "

Let output be the result of creating an MLOperand given this and input.[[descriptor]].

" + "html": "

Let output be the result of creating an MLOperand given this and input.[[descriptor]].

" }, { "html": "

Set output.[[operator]] to operator.

" @@ -1135,10 +943,10 @@ "html": "

Set operator’s inputs to input, mean, and variance.

" }, { - "html": "

If options.scale exists, then add it to operator’s inputs.

" + "html": "

If options.scale exists, then add it to operator’s inputs.

" }, { - "html": "

If options.bias exists, then add it to operator’s inputs.

" + "html": "

If options.bias exists, then add it to operator’s inputs.

" }, { "html": "

Set operator’s output to output.

" @@ -1156,10 +964,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -1193,10 +1001,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { "html": "

Let minValue be the options.minValue if given, or Infinity otherwise.

" @@ -1211,7 +1019,7 @@ "html": "

Set options.maxValue to the result of casting maxValue to input’s dataType.

" }, { - "html": "

If options.minValue is greater than options.maxValue, then throw a TypeError.

" + "html": "

If options.minValue is greater than options.maxValue, then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -1245,25 +1053,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any item in inputs returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any item in inputs returns false, then throw a TypeError.

" }, { - "html": "

If inputs is empty, then throw a TypeError.

" + "html": "

If inputs is empty, then throw a TypeError.

" }, { "html": "

Let first be inputs[0].

" }, { - "html": "

If axis is greater than or equal to first’s rank, then throw a TypeError.

" + "html": "

If axis is greater than or equal to first’s rank, then throw a TypeError.

" }, { "html": "

Let desc be the result of creating an MLOperandDescriptor given first’s dataType and first’s shape.

" }, { - "html": "

Set desc.shape[axis] to first’s shape[axis].

" + "html": "

Set desc.shape[axis] to first’s shape[axis].

" }, { "html": "For each index in the range 1 to inputs’s size, exclusive:", @@ -1273,30 +1081,30 @@ "html": "

Let input be inputs[index].

" }, { - "html": "

If input’s dataType is not equal to first’s dataType, then throw a TypeError.

" + "html": "

If input’s dataType is not equal to first’s dataType, then throw a TypeError.

" }, { - "html": "

If input’s rank is not equal to first’s rank, then throw a TypeError.

" + "html": "

If input’s rank is not equal to first’s rank, then throw a TypeError.

" }, { "html": "For each dim in the range 0 to input’s rank, exclusive:", "rationale": "if", "steps": [ { - "html": "

If dim is not equal to axis and if input’s shape[dim] is not equal to first’s shape[dim], then throw a TypeError.

" + "html": "

If dim is not equal to axis and if input’s shape[dim] is not equal to first’s shape[dim], then throw a TypeError.

" }, { "html": "If dim is equal to axis:", "rationale": "let", "steps": [ { - "html": "

Let size be the sum of desc.shape[axis] and input’s shape[dim].

" + "html": "

Let size be the sum of desc.shape[axis] and input’s shape[dim].

" }, { - "html": "

If size is not a valid dimension, then throw a TypeError.

" + "html": "

If size is not a valid dimension, then throw a TypeError.

" }, { - "html": "

Set desc.shape[axis] to size.

" + "html": "

Set desc.shape[axis] to size.

" } ] } @@ -1309,7 +1117,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the \"concat\" operation, given inputs, axis, and options.

" @@ -1368,49 +1176,49 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input, filter, and options.bias (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, filter, and options.bias (if it exists) returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" }, { - "html": "

If filter’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If filter’s rank is not its allowed rank, then throw a TypeError.

" }, { - "html": "

If filter’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If filter’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If options.padding does not exist, set it to the list « 0, 0, 0, 0 ».

" + "html": "

If options.padding does not exist, set it to the list « 0, 0, 0, 0 ».

" }, { - "html": "

Otherwise, if options.padding's size is not 4, then throw a TypeError.

" + "html": "

Otherwise, if options.padding's size is not 4, then throw a TypeError.

" }, { - "html": "

If options.strides does not exist, set it to the list « 1, 1 ».

" + "html": "

If options.strides does not exist, set it to the list « 1, 1 ».

" }, { - "html": "

Otherwise, if options.strides's size is not 2, then throw a TypeError.

" + "html": "

Otherwise, if options.strides's size is not 2, then throw a TypeError.

" }, { - "html": "

If any element in options.strides is equal to 0, then throw a TypeError.

" + "html": "

If any element in options.strides is equal to 0, then throw a TypeError.

" }, { - "html": "

If options.dilations does not exist, set it to the list « 1, 1 ».

" + "html": "

If options.dilations does not exist, set it to the list « 1, 1 ».

" }, { - "html": "

Otherwise, if options.dilations's size is not 2, then throw a TypeError.

" + "html": "

Otherwise, if options.dilations's size is not 2, then throw a TypeError.

" }, { - "html": "

If any element in options.dilations is equal to 0, then throw a TypeError.

" + "html": "

If any element in options.dilations is equal to 0, then throw a TypeError.

" }, { - "html": "

If options.groups is 0, then throw a TypeError.

" + "html": "

If options.groups is 0, then throw a TypeError.

" }, { "html": "Calculate the output shape:", @@ -1469,20 +1277,20 @@ ] }, { - "html": "

If inputChannels % options.groups is not 0, then throw a TypeError.

" + "html": "

If inputChannels % options.groups is not 0, then throw a TypeError.

" }, { - "html": "

Otherwise, if inputChannels / options.groups is not equal to filterInputChannels, then throw a TypeError.

" + "html": "

Otherwise, if inputChannels / options.groups is not equal to filterInputChannels, then throw a TypeError.

" }, { - "html": "If options.bias exists:", + "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its shape is not equal to « outputChannels », then throw a TypeError.

" + "html": "

If its shape is not equal to « outputChannels », then throw a TypeError.

" }, { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" } ] }, @@ -1509,7 +1317,7 @@ ] }, { - "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" + "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" }, { "html": "

Let desc be the result of creating an MLOperandDescriptor given input’s dataType and outputShape.

" @@ -1521,7 +1329,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the \"conv2d\" operation, given options and filter.

" @@ -1533,7 +1341,7 @@ "html": "

Set operator’s inputs to input and filter.

" }, { - "html": "

If options.bias exists, then add it to operator’s inputs.

" + "html": "

If options.bias exists, then add it to operator’s inputs.

" }, { "html": "

Set operator’s output to output.

" @@ -1583,59 +1391,59 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input, filter, and options.bias (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, filter, and options.bias (if it exists) returns false, then throw a TypeError.

" }, { - "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If filter’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If filter’s rank is not its allowed rank, then throw a TypeError.

" }, { - "html": "

If filter’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If filter’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If options.padding does not exist, set it to the list « 0, 0, 0, 0 ».

" + "html": "

If options.padding does not exist, set it to the list « 0, 0, 0, 0 ».

" }, { - "html": "

Otherwise, if options.padding's size is not 4, then throw a TypeError.

" + "html": "

Otherwise, if options.padding's size is not 4, then throw a TypeError.

" }, { - "html": "

If options.strides does not exist, set it to the list « 1, 1 ».

" + "html": "

If options.strides does not exist, set it to the list « 1, 1 ».

" }, { - "html": "

Otherwise, if options.strides's size is not 2, then throw a TypeError.

" + "html": "

Otherwise, if options.strides's size is not 2, then throw a TypeError.

" }, { - "html": "

If any element in options.strides is equal to 0, then throw a TypeError.

" + "html": "

If any element in options.strides is equal to 0, then throw a TypeError.

" }, { - "html": "

If options.dilations does not exist, set it to the list « 1, 1 ».

" + "html": "

If options.dilations does not exist, set it to the list « 1, 1 ».

" }, { - "html": "

Otherwise, if options.dilations's size is not 2, then throw a TypeError.

" + "html": "

Otherwise, if options.dilations's size is not 2, then throw a TypeError.

" }, { - "html": "

If any element in options.dilations is equal to 0, then throw a TypeError.

" + "html": "

If any element in options.dilations is equal to 0, then throw a TypeError.

" }, { - "html": "

If options.outputPadding does not exist, set it to the list « 0, 0 ».

" + "html": "

If options.outputPadding does not exist, set it to the list « 0, 0 ».

" }, { - "html": "

Otherwise, if options.outputPadding's size is not 2, then throw a TypeError.

" + "html": "

Otherwise, if options.outputPadding's size is not 2, then throw a TypeError.

" }, { - "html": "If options.outputSizes exists:", + "html": "If options.outputSizes exists:", "rationale": "if", "steps": [ { - "html": "

If its size is not 2, then throw a TypeError.

" + "html": "

If its size is not 2, then throw a TypeError.

" } ] }, @@ -1644,12 +1452,12 @@ "rationale": "if", "steps": [ { - "html": "

If options.outputPadding[0] is greater than or equal to options.strides[0], or options.outputPadding[1] is greater than or equal to options.strides[1], then throw a TypeError.

" + "html": "

If options.outputPadding[0] is greater than or equal to options.strides[0], or options.outputPadding[1] is greater than or equal to options.strides[1], then throw a TypeError.

" } ] }, { - "html": "

If options.groups is 0, then throw a TypeError.

" + "html": "

If options.groups is 0, then throw a TypeError.

" }, { "html": "Calculate the output shape:", @@ -1704,25 +1512,25 @@ ] }, { - "html": "

If inputChannels is not equal to filterInputChannels, then throw a TypeError.

" + "html": "

If inputChannels is not equal to filterInputChannels, then throw a TypeError.

" }, { "html": "

Let outputChannels be filterOutputChannels * options.groups.

" }, { - "html": "If options.bias exists:", + "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its shape is not equal to « outputChannels », then throw a TypeError.

" + "html": "

If its shape is not equal to « outputChannels », then throw a TypeError.

" }, { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" } ] }, { - "html": "

If options.outputSizes exists, let outputSizes be options.outputSizes.

" + "html": "

If options.outputSizes exists, let outputSizes be options.outputSizes.

" }, { "html": "

Otherwise, let outputSizes be the result of calculating convtranspose2d output sizes given inputHeight, inputWidth, filterHeight, filterWidth, options.padding, options.strides, options.dilations, and options.outputPadding.

" @@ -1747,7 +1555,7 @@ ] }, { - "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" + "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" }, { "html": "

Let desc be the result of creating an MLOperandDescriptor given input’s dataType and outputShape.

" @@ -1759,7 +1567,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the \"convTranspose2d\" operation, given options and filter.

" @@ -1771,7 +1579,7 @@ "html": "

Set operator’s inputs to input and filter.

" }, { - "html": "

If options.bias exists, then add it to operator’s inputs.

" + "html": "

If options.bias exists, then add it to operator’s inputs.

" }, { "html": "

Set operator’s output to output.

" @@ -1789,23 +1597,23 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Assert: op is one of \"add\", \"sub\", \"mul\", \"div\", \"max\", \"min\", \"pow\".

" + "html": "

Assert: op is one of \"add\", \"sub\", \"mul\", \"div\", \"max\", \"min\", \"pow\".

" }, { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" }, { - "html": "

If a’s dataType is not equal to b’s dataType, then throw a TypeError.

" + "html": "

If a’s dataType is not equal to b’s dataType, then throw a TypeError.

" }, { "html": "Let outputShape be the result of bidirectionally broadcasting a’s shape and b’s shape.", "rationale": "if", "steps": [ { - "html": "

If that returns failure, then throw a TypeError.

" + "html": "

If that returns failure, then throw a TypeError.

" } ] }, @@ -1817,7 +1625,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and descriptor.

" + "html": "

Let output be the result of creating an MLOperand given this and descriptor.

" }, { "html": "

Let operator be an operator for the op operation, given a, b, and options.

" @@ -1849,7 +1657,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1869,7 +1677,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1889,7 +1697,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1909,7 +1717,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1929,7 +1737,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1949,7 +1757,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1969,7 +1777,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1984,20 +1792,20 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Assert: op is one of \"equal\", \"greater\", \"greaterOrEqual\", \"lesser\", \"lesserOrEqual\", \"logicalNot\".

" + "html": "

Assert: op is one of \"equal\", \"greater\", \"greaterOrEqual\", \"lesser\", \"lesserOrEqual\", \"logicalNot\".

" }, { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { "html": "If op is \"logicalNot\":", "rationale": "if", "steps": [ { - "html": "

If validating operand with this and a returns false, then throw a TypeError.

" + "html": "

If validating operand with this and a returns false, then throw a TypeError.

" }, { - "html": "

If a’s dataType is not \"uint8\", then throw a TypeError.

" + "html": "

If a’s dataType is not \"uint8\", then throw a TypeError.

" }, { "html": "

Let outputShape be a clone of a’s shape.

" @@ -2009,13 +1817,13 @@ "rationale": "if", "steps": [ { - "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" }, { - "html": "

If a’s dataType is not equal to b’s dataType, then throw a TypeError.

" + "html": "

If a’s dataType is not equal to b’s dataType, then throw a TypeError.

" }, { - "html": "

Let outputShape be the result of bidirectionally broadcasting a’s shape and b’s shape. If that returns failure, then throw a TypeError.

" + "html": "

Let outputShape be the result of bidirectionally broadcasting a’s shape and b’s shape. If that returns failure, then throw a TypeError.

" } ] }, @@ -2027,7 +1835,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and descriptor.

" + "html": "

Let output be the result of creating an MLOperand given this and descriptor.

" }, { "html": "

Let operator be an operator for the op operation, given a and (if op is not \"logicalNot\") b, and options.

" @@ -2059,7 +1867,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2079,7 +1887,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2099,7 +1907,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2119,7 +1927,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2139,7 +1947,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2159,7 +1967,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2174,16 +1982,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Assert: op is one of \"abs\", \"ceil\", \"cos\", \"erf\", \"exp\", \"floor\", \"identity\", \"log\", \"neg\", \"reciprocal\", \"sin\", \"sqrt\", \"tan\".

" + "html": "

Assert: op is one of \"abs\", \"ceil\", \"cos\", \"erf\", \"exp\", \"floor\", \"identity\", \"log\", \"neg\", \"reciprocal\", \"sin\", \"sqrt\", \"tan\".

" }, { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If allowedDataTypes is given and it does not contain input’s dataType, then throw a TypeError.

" + "html": "

If allowedDataTypes is given and it does not contain input’s dataType, then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -2222,7 +2030,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2242,7 +2050,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2262,7 +2070,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2282,7 +2090,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2302,7 +2110,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2322,7 +2130,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2342,7 +2150,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2362,7 +2170,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2382,7 +2190,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2402,7 +2210,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2422,7 +2230,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2442,7 +2250,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2462,7 +2270,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2477,13 +2285,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "

Set options.alpha to the result of casting options.alpha to input’s dataType.

" @@ -2520,17 +2328,17 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { "html": "Let outputShape be the result of unidirectionally broadcasting input’s shape and newShape.", "rationale": "if", "steps": [ { - "html": "

If that returns failure, then throw a TypeError.

" + "html": "

If that returns failure, then throw a TypeError.

" } ] }, @@ -2542,7 +2350,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and outputDescriptor.

" + "html": "

Let output be the result of creating an MLOperand given this and outputDescriptor.

" }, { "html": "

Let operator be an operator for the \"expand\" operation, given input, newShape, and options.

" @@ -2569,13 +2377,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input and indices returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input and indices returns false, then throw a TypeError.

" }, { - "html": "

If indices’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If indices’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "

Let shapeInput be input’s shape and rankInput be shapeInput’s rank.

" @@ -2587,7 +2395,7 @@ "html": "

Let axis be options.axis.

" }, { - "html": "

If axis is greater than or equal to rankInput, then throw a TypeError.

" + "html": "

If axis is greater than or equal to rankInput, then throw a TypeError.

" }, { "html": "

Let dimCount be zero.

" @@ -2687,13 +2495,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -2727,16 +2535,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" }, { - "html": "

If the dataType of any of a or b is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If the dataType of any of a or b is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If the rank of any of a or b is not its allowed rank, then throw a TypeError.

" + "html": "

If the rank of any of a or b is not its allowed rank, then throw a TypeError.

" }, { "html": "

Set options.alpha to the result of casting options.alpha to a’s dataType.

" @@ -2757,17 +2565,17 @@ "html": "

If options.bTranspose is true, then reverse the order of the items in shapeB.

" }, { - "html": "

If shapeA[1] is not equal to shapeB[0], then throw a TypeError.

" + "html": "

If shapeA[1] is not equal to shapeB[0], then throw a TypeError.

" }, { - "html": "If options.c exists:", + "html": "If options.c exists:", "rationale": "if", "steps": [ { - "html": "

If it is not unidirectionally broadcastable to the shape « shapeA[0], shapeB[1] », then throw a TypeError.

" + "html": "

If it is not unidirectionally broadcastable to the shape « shapeA[0], shapeB[1] », then throw a TypeError.

" }, { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" } ] }, @@ -2779,7 +2587,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the \"gemm\" operation, given options.

" @@ -2791,7 +2599,7 @@ "html": "

Set operator’s inputs to a and b.

" }, { - "html": "

If options.c exists, then add it to operator’s inputs.

" + "html": "

If options.c exists, then add it to operator’s inputs.

" }, { "html": "

Set operator’s output to output.

" @@ -2809,19 +2617,19 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input, weight, recurrentWeight, options.bias (if it exists), options.recurrentBias (if it exists), and options.initialHiddenState (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, weight, recurrentWeight, options.bias (if it exists), options.recurrentBias (if it exists), and options.initialHiddenState (if it exists) returns false, then throw a TypeError.

" }, { - "html": "

If the dataType of any of input, weight or recurrentWeight is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If the dataType of any of input, weight or recurrentWeight is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If the rank of any of input, weight or recurrentWeight is not its allowed rank, then throw a TypeError.

" + "html": "

If the rank of any of input, weight or recurrentWeight is not its allowed rank, then throw a TypeError.

" }, { - "html": "

If input’s shape[0] is not equal to steps, then throw a TypeError.

" + "html": "

If input’s shape[0] is not equal to steps, then throw a TypeError.

" }, { "html": "

Let batchSize be input’s shape[1].

" @@ -2833,56 +2641,56 @@ "html": "

Let numDirections be 2 if options.direction is \"both\", or 1 otherwise.

" }, { - "html": "

If weight’s shape is not equal to « numDirections, 3 * hiddenSize, inputSize », then throw a TypeError.

" + "html": "

If weight’s shape is not equal to « numDirections, 3 * hiddenSize, inputSize », then throw a TypeError.

" }, { - "html": "

If recurrentWeight’s shape is not equal to « numDirections, 3 * hiddenSize, hiddenSize », then throw a TypeError.

" + "html": "

If recurrentWeight’s shape is not equal to « numDirections, 3 * hiddenSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenSize * 6 is not a valid dimension, then throw a TypeError.

" + "html": "

If hiddenSize * 6 is not a valid dimension, then throw a TypeError.

" }, { - "html": "If options.bias exists:", + "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.recurrentBias exists:", + "html": "If options.recurrentBias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.initialHiddenState exists:", + "html": "If options.initialHiddenState exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.activations exists:", + "html": "If options.activations exists:", "rationale": "if", "steps": [ { - "html": "

If its size is not 2, then throw a TypeError.

" + "html": "

If its size is not 2, then throw a TypeError.

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -2924,14 +2732,14 @@ "html": "

Let operator be an operator for the \"gru\" operation, given weight, recurrentWeight, steps, hiddenSize and options.

" }, { - "html": "

Let output0 be the result of creating an MLOperand given this and desc0.

" + "html": "

Let output0 be the result of creating an MLOperand given this and desc0.

" }, { "html": "If options.returnSequence is true:", "rationale": "let", "steps": [ { - "html": "

Let output1 be the result of creating an MLOperand given this and desc1.

" + "html": "

Let output1 be the result of creating an MLOperand given this and desc1.

" }, { "html": "

Let output be the list « output0, output1 ».

" @@ -2957,13 +2765,13 @@ "html": "

Set operator’s inputs to input, weight, and recurrentWeight.

" }, { - "html": "

If options.bias exists, then add it to operator’s inputs.

" + "html": "

If options.bias exists, then add it to operator’s inputs.

" }, { - "html": "

If options.recurrentBias exists, then add it to operator’s inputs.

" + "html": "

If options.recurrentBias exists, then add it to operator’s inputs.

" }, { - "html": "

If options.initialHiddenState exists, then add it to operator’s inputs.

" + "html": "

If options.initialHiddenState exists, then add it to operator’s inputs.

" }, { "html": "

Set operator’s activation functions to a clone of activations.

" @@ -2984,16 +2792,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input, weight, recurrentWeight, hiddenState, options.bias (if it exists), and options.recurrentBias (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, weight, recurrentWeight, hiddenState, options.bias (if it exists), and options.recurrentBias (if it exists) returns false, then throw a TypeError.

" }, { - "html": "

If the dataType of any of input, weight, recurrentWeight, or hiddenState is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If the dataType of any of input, weight, recurrentWeight, or hiddenState is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If the rank of any of input, weight, recurrentWeight or hiddenState is not its allowed ranks (according to this table), then throw a TypeError.

" + "html": "

If the rank of any of input, weight, recurrentWeight or hiddenState is not its allowed ranks (according to this table), then throw a TypeError.

" }, { "html": "

Let batchSize be input’s shape[0].

" @@ -3002,47 +2810,47 @@ "html": "

Let inputSize be input’s shape[1].

" }, { - "html": "

If weight’s shape is not equal to « 3 * hiddenSize, inputSize », then throw a TypeError.

" + "html": "

If weight’s shape is not equal to « 3 * hiddenSize, inputSize », then throw a TypeError.

" }, { - "html": "

If recurrentWeight’s shape is not equal to « 3 * hiddenSize, hiddenSize », then throw a TypeError.

" + "html": "

If recurrentWeight’s shape is not equal to « 3 * hiddenSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If hiddenState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenSize * 6 is not a valid dimension, then throw a TypeError.

" + "html": "

If hiddenSize * 6 is not a valid dimension, then throw a TypeError.

" }, { - "html": "If options.bias exists:", + "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.recurrentBias exists:", + "html": "If options.recurrentBias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.activations exists:", + "html": "If options.activations exists:", "rationale": "if", "steps": [ { - "html": "

If its size is not 2, then throw a TypeError.

" + "html": "

If its size is not 2, then throw a TypeError.

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -3066,7 +2874,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the \"gruCell\" operation, given weight, recurrentWeight, hiddenState, hiddenSize and options.

" @@ -3078,10 +2886,10 @@ "html": "

Set operator’s inputs to input, weight, recurrentWeight, and hiddenState.

" }, { - "html": "

If options.bias exists, then add it to operator’s inputs.

" + "html": "

If options.bias exists, then add it to operator’s inputs.

" }, { - "html": "

If options.recurrentBias exists, then add it to operator’s inputs.

" + "html": "

If options.recurrentBias exists, then add it to operator’s inputs.

" }, { "html": "

Set operator’s activation functions to a clone of activations.

" @@ -3102,13 +2910,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "

Set options.alpha to the result of casting options.alpha to input’s dataType.

" @@ -3148,13 +2956,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -3188,16 +2996,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input, options.scale (if it exists), and options.bias (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, options.scale (if it exists), and options.bias (if it exists) returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" }, { "html": "

Set options.epsilon to the result of casting options.epsilon to input’s dataType.

" @@ -3206,26 +3014,26 @@ "html": "

Let axis be 1 if options.layout is \"nchw\", and 3 otherwise.

" }, { - "html": "If options.scale exists:", + "html": "If options.scale exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « input’s shape[axis] », then throw a TypeError.

" + "html": "

If its shape is not equal to « input’s shape[axis] », then throw a TypeError.

" } ] }, { - "html": "If options.bias exists:", + "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « input’s shape[axis] », then throw a TypeError.

" + "html": "

If its shape is not equal to « input’s shape[axis] », then throw a TypeError.

" } ] }, @@ -3246,10 +3054,10 @@ "html": "

Set operator’s input to input.

" }, { - "html": "

If options.scale exists, then add it to operator’s inputs.

" + "html": "

If options.scale exists, then add it to operator’s inputs.

" }, { - "html": "

If options.bias exists, then add it to operator’s inputs.

" + "html": "

If options.bias exists, then add it to operator’s inputs.

" }, { "html": "

Set operator’s output to output.

" @@ -3267,16 +3075,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input, options.scale (if it exists), and options.bias (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, options.scale (if it exists), and options.bias (if it exists) returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If options.axes does not exist, then set options.axes to a new list, either equal to the range from 1 to input’s rank, exclusive, if input’s rank is greater than 1, or an empty list otherwise.

" + "html": "

If options.axes does not exist, then set options.axes to a new list, either equal to the range from 1 to input’s rank, exclusive, if input’s rank is greater than 1, or an empty list otherwise.

" }, { "html": "

Otherwise, if options.axes contains duplicate values, or if any of its elements is not in the range 0 to input’s rank, exclusive, then return failure.

" @@ -3285,26 +3093,26 @@ "html": "

Set options.epsilon to the result of casting options.epsilon to input’s dataType.

" }, { - "html": "If options.scale exists:", + "html": "If options.scale exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its rank is not equal to options.axes's size, then throw a TypeError.

" + "html": "

If its rank is not equal to options.axes's size, then throw a TypeError.

" } ] }, { - "html": "If options.bias exists:", + "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its rank is not equal to options.axes's size, then throw a TypeError.

" + "html": "

If its rank is not equal to options.axes's size, then throw a TypeError.

" } ] }, @@ -3316,26 +3124,26 @@ "html": "

Let axis be options.axes[index].

" }, { - "html": "

If axis is greater or equal to input’s rank, then throw a TypeError.

" + "html": "

If axis is greater or equal to input’s rank, then throw a TypeError.

" }, { "html": "

Let size be input’s shape[axis].

" }, { - "html": "If options.scale exists:", + "html": "If options.scale exists:", "rationale": "if", "steps": [ { - "html": "

If its shape[index] is not equal to size, then throw a TypeError.

" + "html": "

If its shape[index] is not equal to size, then throw a TypeError.

" } ] }, { - "html": "If options.bias exists:", + "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its shape[index] is not equal to size, then throw a TypeError.

" + "html": "

If its shape[index] is not equal to size, then throw a TypeError.

" } ] } @@ -3358,10 +3166,10 @@ "html": "

Set operator’s input to input.

" }, { - "html": "

If options.scale exists, then add it to operator’s inputs.

" + "html": "

If options.scale exists, then add it to operator’s inputs.

" }, { - "html": "

If options.bias exists, then add it to operator’s inputs.

" + "html": "

If options.bias exists, then add it to operator’s inputs.

" }, { "html": "

Set operator’s output to output.

" @@ -3379,13 +3187,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "

Set options.alpha to the result of casting options.alpha to input’s dataType.

" @@ -3422,13 +3230,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "

Set options.alpha to the result of casting options.alpha to input’s dataType.

" @@ -3468,22 +3276,22 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input, weight, recurrentWeight, options.bias (if it exists), options.recurrentBias (if it exists), options.peepholeWeight (if it exists), options.initialHiddenState (if it exists), and options.initialCellState (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, weight, recurrentWeight, options.bias (if it exists), options.recurrentBias (if it exists), options.peepholeWeight (if it exists), options.initialHiddenState (if it exists), and options.initialCellState (if it exists) returns false, then throw a TypeError.

" }, { "html": "

Let numDirections be 2 if options.direction is \"both\", or 1 otherwise.

" }, { - "html": "

If the dataType of any of input, weight or recurrentWeight is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If the dataType of any of input, weight or recurrentWeight is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If the rank of any of input, weight or recurrentWeight is not its allowed rank, then throw a TypeError.

" + "html": "

If the rank of any of input, weight or recurrentWeight is not its allowed rank, then throw a TypeError.

" }, { - "html": "

If input’s shape[0] is not equal to steps, then throw a TypeError.

" + "html": "

If input’s shape[0] is not equal to steps, then throw a TypeError.

" }, { "html": "

Let batchSize be input’s shape[1].

" @@ -3492,80 +3300,80 @@ "html": "

Let inputSize be input’s shape[2].

" }, { - "html": "

If weight’s shape is not equal to « numDirections, 4 * hiddenSize, inputSize », then throw a TypeError.

" + "html": "

If weight’s shape is not equal to « numDirections, 4 * hiddenSize, inputSize », then throw a TypeError.

" }, { - "html": "

If recurrentWeight’s shape is not equal to « numDirections, 4 * hiddenSize, hiddenSize », then throw a TypeError.

" + "html": "

If recurrentWeight’s shape is not equal to « numDirections, 4 * hiddenSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenSize * 8 is not a valid dimension, then throw a TypeError.

" + "html": "

If hiddenSize * 8 is not a valid dimension, then throw a TypeError.

" }, { - "html": "If options.bias exists:", + "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « numDirections, 4 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, 4 * hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.recurrentBias exists:", + "html": "If options.recurrentBias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « numDirections, 4 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, 4 * hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.peepholeWeight exists:", + "html": "If options.peepholeWeight exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.initialHiddenState exists:", + "html": "If options.initialHiddenState exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.initialCellState exists:", + "html": "If options.initialCellState exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.activations exists:", + "html": "If options.activations exists:", "rationale": "if", "steps": [ { - "html": "

If its size is not 3, then throw a TypeError.

" + "html": "

If its size is not 3, then throw a TypeError.

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -3607,17 +3415,17 @@ "html": "

Let operator be an operator for the \"lstm\" operation, given weight, recurrentWeight, steps, hiddenSize and options.

" }, { - "html": "

Let output0 be the result of creating an MLOperand given this and desc.

" + "html": "

Let output0 be the result of creating an MLOperand given this and desc.

" }, { - "html": "

Let output1 be the result of creating an MLOperand given this and desc.

" + "html": "

Let output1 be the result of creating an MLOperand given this and desc.

" }, { "html": "If options.returnSequence is true:", "rationale": "let", "steps": [ { - "html": "

Let output2 be the result of creating an MLOperand given this and desc2.

" + "html": "

Let output2 be the result of creating an MLOperand given this and desc2.

" }, { "html": "

Let output be the list « output0, output1, output2 ».

" @@ -3643,19 +3451,19 @@ "html": "

Set operator’s inputs to input, weight, and recurrentWeight.

" }, { - "html": "

If options.bias exists, then add it to operator’s inputs.

" + "html": "

If options.bias exists, then add it to operator’s inputs.

" }, { - "html": "

If options.recurrentBias exists, then add it to operator’s inputs.

" + "html": "

If options.recurrentBias exists, then add it to operator’s inputs.

" }, { - "html": "

If options.peepholeWeight exists, then add it to operator’s inputs.

" + "html": "

If options.peepholeWeight exists, then add it to operator’s inputs.

" }, { - "html": "

If options.initialHiddenState exists, then add it to operator’s inputs.

" + "html": "

If options.initialHiddenState exists, then add it to operator’s inputs.

" }, { - "html": "

If options.initialCellState exists, then add it to operator’s inputs.

" + "html": "

If options.initialCellState exists, then add it to operator’s inputs.

" }, { "html": "

Set operator’s activation functions to a clone of activations.

" @@ -3676,16 +3484,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input, weight, recurrentWeight, hiddenState, cellState, options.bias (if it exists), options.recurrentBias (if it exists), and options.peepholeWeight (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, weight, recurrentWeight, hiddenState, cellState, options.bias (if it exists), options.recurrentBias (if it exists), and options.peepholeWeight (if it exists) returns false, then throw a TypeError.

" }, { - "html": "

If the dataType of any of input, weight, recurrentWeight, hiddenState or cellState is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If the dataType of any of input, weight, recurrentWeight, hiddenState or cellState is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If the rank of any of input, weight, recurrentWeight, hiddenState or cellState is not its allowed rank, then throw a TypeError.

" + "html": "

If the rank of any of input, weight, recurrentWeight, hiddenState or cellState is not its allowed rank, then throw a TypeError.

" }, { "html": "

Let batchSize be input’s shape[0].

" @@ -3694,62 +3502,62 @@ "html": "

Let inputSize be input’s shape[1].

" }, { - "html": "

If weight’s shape is not equal to « 4 * hiddenSize, inputSize », then throw a TypeError.

" + "html": "

If weight’s shape is not equal to « 4 * hiddenSize, inputSize », then throw a TypeError.

" }, { - "html": "

If recurrentWeight’s shape is not equal to « 4 * hiddenSize, hiddenSize », then throw a TypeError.

" + "html": "

If recurrentWeight’s shape is not equal to « 4 * hiddenSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If hiddenState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If cellState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If cellState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenSize * 8 is not a valid dimension, then throw a TypeError.

" + "html": "

If hiddenSize * 8 is not a valid dimension, then throw a TypeError.

" }, { - "html": "If options.bias exists:", + "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « 4 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « 4 * hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.recurrentBias exists:", + "html": "If options.recurrentBias exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « 4 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « 4 * hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.peepholeWeight exists:", + "html": "If options.peepholeWeight exists:", "rationale": "if", "steps": [ { - "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" } ] }, { - "html": "If options.activations exists:", + "html": "If options.activations exists:", "rationale": "if", "steps": [ { - "html": "

If its size is not 3, then throw a TypeError.

" + "html": "

If its size is not 3, then throw a TypeError.

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -3769,7 +3577,7 @@ "html": "

Let desc be a new MLOperandDescriptor.

" }, { - "html": "

Set desc.shape to the list « batchSize, hiddenSize ».

" + "html": "

Set desc.shape to the list « batchSize, hiddenSize ».

" }, { "html": "

Set desc.dataType to input’s dataType.

" @@ -3779,10 +3587,10 @@ "rationale": "let", "steps": [ { - "html": "

Let output0 be the result of creating an MLOperand given this and desc.

" + "html": "

Let output0 be the result of creating an MLOperand given this and desc.

" }, { - "html": "

Let output1 be the result of creating an MLOperand given this and desc.

" + "html": "

Let output1 be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let output be the list « output0, output1 ».

" @@ -3797,13 +3605,13 @@ "html": "

Set operator’s inputs to input, weight, recurrentWeight, hiddenState, and cellState.

" }, { - "html": "

If options.bias exists, then add it to operator’s inputs.

" + "html": "

If options.bias exists, then add it to operator’s inputs.

" }, { - "html": "

If options.recurrentBias exists, then add it to operator’s inputs.

" + "html": "

If options.recurrentBias exists, then add it to operator’s inputs.

" }, { - "html": "

If options.peepholeWeight exists, then add it to operator’s inputs.

" + "html": "

If options.peepholeWeight exists, then add it to operator’s inputs.

" }, { "html": "

Set operator’s activation functions to a clone of activations.

" @@ -3836,7 +3644,7 @@ "html": "

Let rankB be b’s rank.

" }, { - "html": "

If either rankA or rankB is less than 2, then throw a TypeError.

" + "html": "

If either rankA or rankB is less than 2, then throw a TypeError.

" }, { "html": "

Let colsA be shapeA[rankA - 1].

" @@ -3851,7 +3659,7 @@ "html": "

Let rowsB be shapeB[rankB - 2].

" }, { - "html": "

If colsA is not equal to rowsB, then throw a TypeError.

" + "html": "

If colsA is not equal to rowsB, then throw a TypeError.

" }, { "html": "

Let batchShapeA be a clone of shapeA with the spatial dimensions (last 2 items) removed.

" @@ -3860,7 +3668,7 @@ "html": "

Let batchShapeB be a clone of shapeB with the spatial dimensions (last 2 items) removed.

" }, { - "html": "

Let outputShape be the result of bidirectionally broadcasting batchShapeA and batchShapeB. If that returns failure, then throw a TypeError.

" + "html": "

Let outputShape be the result of bidirectionally broadcasting batchShapeA and batchShapeB. If that returns failure, then throw a TypeError.

" }, { "html": "

Append « rowsA, colsB » to outputShape.

" @@ -3876,20 +3684,20 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" }, { - "html": "

If the dataType of any of a or b is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If the dataType of any of a or b is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "Let outputShape be the result of calculating matmul output sizes given a and b.", "rationale": "if", "steps": [ { - "html": "

If that throws an error, re-throw the error.

" + "html": "

If that throws an error, re-throw the error.

" } ] }, @@ -3901,7 +3709,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the \"matmul\" operation, given options.

" @@ -3953,16 +3761,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s rank is 0, then throw a TypeError.

" + "html": "

If input’s rank is 0, then throw a TypeError.

" }, { - "html": "

If beginningPadding’s size and endingPadding’s size are not both equal to input’s rank, then throw a TypeError.

" + "html": "

If beginningPadding’s size and endingPadding’s size are not both equal to input’s rank, then throw a TypeError.

" }, { "html": "

Let desc be a copy of input.[[descriptor]].

" @@ -3971,20 +3779,20 @@ "html": "

Let outputShape be the result of calculating padding output sizes given input, beginningPadding and endingPadding.

" }, { - "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" + "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" }, { "html": "

Set options.value to the result of casting options.value to input’s dataType.

" }, { - "html": "

Set desc.shape to outputShape.

" + "html": "

Set desc.shape to outputShape.

" }, { "html": "Make graph connections:", "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the \"padding\" operation, given beginningPadding, endingPadding and options.

" @@ -4108,80 +3916,80 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Assert: op is one of \"averagePool2d\", \"l2Pool2d\", \"maxPool2d\".

" + "html": "

Assert: op is one of \"averagePool2d\", \"l2Pool2d\", \"maxPool2d\".

" }, { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If allowedDataTypes is given and it does not contain input’s dataType, then throw a TypeError.

" + "html": "

If allowedDataTypes is given and it does not contain input’s dataType, then throw a TypeError.

" }, { - "html": "

If input’s rank is not 4, then throw a TypeError.

" + "html": "

If input’s rank is not 4, then throw a TypeError.

" }, { - "html": "

If options.windowDimensions exists and its size is not 2, then throw a TypeError.

" + "html": "

If options.windowDimensions exists and its size is not 2, then throw a TypeError.

" }, { "html": "

Otherwise, set options.windowDimensions to the height and width dimensions of the shape of input.

" }, { - "html": "

If options.outputSizes exists, or if options.padding does not exist, set options.padding to the list « 0, 0, 0, 0 ».

" + "html": "

If options.outputSizes exists, or if options.padding does not exist, set options.padding to the list « 0, 0, 0, 0 ».

" }, { - "html": "

If options.padding's size is not 4, then throw a TypeError.

" + "html": "

If options.padding's size is not 4, then throw a TypeError.

" }, { - "html": "

If options.strides does not exist, set options.strides to the list « 1, 1 ».

" + "html": "

If options.strides does not exist, set options.strides to the list « 1, 1 ».

" }, { - "html": "

If options.strides's size is not 2, then throw a TypeError.

" + "html": "

If options.strides's size is not 2, then throw a TypeError.

" }, { - "html": "

If any value in options.strides is not greater than 0, then throw a TypeError.

" + "html": "

If any value in options.strides is not greater than 0, then throw a TypeError.

" }, { - "html": "If options.outputSizes exists:", + "html": "If options.outputSizes exists:", "rationale": "if", "steps": [ { - "html": "

If its size is not 2, then throw a TypeError.

" + "html": "

If its size is not 2, then throw a TypeError.

" }, { - "html": "

If its elements are not smaller than the elements at the same dimension (index) for options.strides, then throw a TypeError.

" + "html": "

If its elements are not smaller than the elements at the same dimension (index) for options.strides, then throw a TypeError.

" } ] }, { - "html": "

If options.dilations does not exist, set options.dilations to the list « 1, 1 ».

" + "html": "

If options.dilations does not exist, set options.dilations to the list « 1, 1 ».

" }, { - "html": "

If options.dilations's size is not 2, then throw a TypeError.

" + "html": "

If options.dilations's size is not 2, then throw a TypeError.

" }, { - "html": "

If any value in options.dilations is not greater than 0, then throw a TypeError.

" + "html": "

If any value in options.dilations is not greater than 0, then throw a TypeError.

" }, { "html": "

Let desc be a copy of input.[[descriptor]].

" }, { - "html": "

Let outputShape be the result of calculating pool2d output sizes given options.layout, input’s shape, options.roundingType, options.windowDimensions, options.padding, options.strides, options.dilations, and options.outputSizes (if it exists).

" + "html": "

Let outputShape be the result of calculating pool2d output sizes given options.layout, input’s shape, options.roundingType, options.windowDimensions, options.padding, options.strides, options.dilations, and options.outputSizes (if it exists).

" }, { - "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" + "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" }, { - "html": "

Set desc.shape to outputShape.

" + "html": "

Set desc.shape to outputShape.

" }, { "html": "Make graph connections:", "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the op operation, given options.

" @@ -4213,7 +4021,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4233,7 +4041,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4253,7 +4061,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4268,20 +4076,20 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of input and slope returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input and slope returns false, then throw a TypeError.

" }, { - "html": "

If the dataType of any of input or slope is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If the dataType of any of input or slope is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "Let outputShape be to the result of bidirectionally broadcasting slope’s shape and input’s shape.", "rationale": "if", "steps": [ { - "html": "

If that returns failure, then throw a TypeError.

" + "html": "

If that returns failure, then throw a TypeError.

" } ] }, @@ -4293,7 +4101,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and descriptor.

" + "html": "

Let output be the result of creating an MLOperand given this and descriptor.

" }, { "html": "

Let operator be an operator for the \"prelu\" operation, given slope and options.

" @@ -4375,19 +4183,19 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Assert: op is one of \"reduceL1\", \"reduceL2\", \"reduceLogSum\", \"reduceLogSumExp\", \"reduceMax\", \"reduceMean\", \"reduceMin\", \"reduceProduct\", \"reduceSum\", \"reduceSumSquare\".

" + "html": "

Assert: op is one of \"reduceL1\", \"reduceL2\", \"reduceLogSum\", \"reduceLogSumExp\", \"reduceMax\", \"reduceMean\", \"reduceMin\", \"reduceProduct\", \"reduceSum\", \"reduceSumSquare\".

" }, { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If allowedDataTypes is given and it does not contain input’s dataType, then throw a TypeError.

" + "html": "

If allowedDataTypes is given and it does not contain input’s dataType, then throw a TypeError.

" }, { - "html": "

Let outputShape be the result of calculating reduction output sizes given input’s shape, options.axes (if it exists), and options.keepDimensions. If that returns failure, then throw a TypeError.

" + "html": "

Let outputShape be the result of calculating reduction output sizes given input’s shape, options.axes (if it exists), and options.keepDimensions. If that returns failure, then throw a TypeError.

" }, { "html": "

Let desc be the result of creating an MLOperandDescriptor given input’s dataType and outputShape.

" @@ -4397,7 +4205,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the op operation, given options.

" @@ -4429,7 +4237,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4449,7 +4257,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4469,7 +4277,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4489,7 +4297,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4509,7 +4317,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4529,7 +4337,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4549,7 +4357,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4569,7 +4377,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4589,7 +4397,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4609,7 +4417,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4624,13 +4432,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -4664,16 +4472,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If options.scales does not exist, set it to the list « 1.0, 1.0 ».

" + "html": "

If options.scales does not exist, set it to the list « 1.0, 1.0 ».

" }, { "html": "

Otherwise, if any of its values is not greater than 0, or if its size is not 2, return false.

" }, { - "html": "

If options.sizes exists, and if its size is not 2, or if any of its values is not greater than 0, return false.

" + "html": "

If options.sizes exists, and if its size is not 2, or if any of its values is not greater than 0, return false.

" }, { - "html": "

If options.axes does not exists, set it to the list « 2, 3 ».

" + "html": "

If options.axes does not exists, set it to the list « 2, 3 ».

" }, { "html": "

Otherwise, if options.axes contains duplicate values, or if any of its elements is not in the range 0 to input’s rank, exclusive, then return false.

" @@ -4692,14 +4500,14 @@ "html": "

Let inputDescriptor be input.[[descriptor]].

" }, { - "html": "

Let outputShape be a clone of inputDescriptor.shape.

" + "html": "

Let outputShape be a clone of inputDescriptor.shape.

" }, { "html": "For each index in the range 0 to options.axes's size, exclusive:", "rationale": "if", "steps": [ { - "html": "

If options.sizes exists, then let size be options.sizes[index].

" + "html": "

If options.sizes exists, then let size be options.sizes[index].

" }, { "html": "

Otherwise, let size be floor(input’s shape[options.axes[index]] * options.scales[index]).

" @@ -4723,29 +4531,29 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" }, { - "html": "

If checking resample options given options and input returns false, then throw a TypeError.

" + "html": "

If checking resample options given options and input returns false, then throw a TypeError.

" }, { - "html": "

Let desc be the result of calculating resample output sizes given input and options. If that returns failure, then throw a TypeError.

" + "html": "

Let desc be the result of calculating resample output sizes given input and options. If that returns failure, then throw a TypeError.

" }, { "html": "Make graph connections:", "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the \"resample2d\" operation, given options.

" @@ -4772,10 +4580,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { "html": "

Let outputShape be an empty array of unsigned long.

" @@ -4784,26 +4592,26 @@ "html": "

If newShape’s size is 0, set outputShape to an empty list for a scalar.

" }, { - "html": "

If any item in newShape is not a valid dimension, then throw a TypeError.

" + "html": "

If any item in newShape is not a valid dimension, then throw a TypeError.

" }, { "html": "

Let inputElementCount be the product of all elements in input’s shape. Empty dimensions yield an inputElementCount of 1.

" }, { - "html": "

If product of all values in newShape is not equal to inputElementCount, then throw a TypeError.

" + "html": "

If product of all values in newShape is not equal to inputElementCount, then throw a TypeError.

" }, { "html": "

Let desc be a copy of input.[[descriptor]].

" }, { - "html": "

Set desc.shape to newShape.

" + "html": "

Set desc.shape to newShape.

" }, { "html": "Make graph connections:", "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and desc.

" + "html": "

Let output be the result of creating an MLOperand given this and desc.

" }, { "html": "

Let operator be an operator for the \"reshape\" operation, given options.

" @@ -4830,13 +4638,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -4870,29 +4678,29 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If any of sizes’s items are 0, then throw a TypeError.

" + "html": "

If any of sizes’s items are 0, then throw a TypeError.

" }, { - "html": "

If starts’s size and sizes’s size are not both equal to input’s rank, then throw a TypeError.

" + "html": "

If starts’s size and sizes’s size are not both equal to input’s rank, then throw a TypeError.

" }, { "html": "For each index in the range 0 to input’s rank, exclusive:", "rationale": "if", "steps": [ { - "html": "

If sizes[index] is 0, then throw a TypeError.

" + "html": "

If sizes[index] is 0, then throw a TypeError.

" }, { - "html": "

If starts[index] is greater than or equal to input’s shape[index], then throw a TypeError.

" + "html": "

If starts[index] is greater than or equal to input’s shape[index], then throw a TypeError.

" }, { - "html": "

If starts[index] + sizes[index] is greater than input’s shape[index], then throw a TypeError.

" + "html": "

If starts[index] + sizes[index] is greater than input’s shape[index], then throw a TypeError.

" } ] }, @@ -4928,16 +4736,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If axis is greater than or equal to input’s rank, then throw a TypeError.

" + "html": "

If axis is greater than or equal to input’s rank, then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -4971,13 +4779,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -5011,13 +4819,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -5051,23 +4859,23 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { "html": "

Let axis be options.axis.

" }, { - "html": "

If axis is greater than or equal to input’s rank, then throw a TypeError.

" + "html": "

If axis is greater than or equal to input’s rank, then throw a TypeError.

" }, { "html": "If splits is an unsigned long:", "rationale": "if", "steps": [ { - "html": "

If input’s shape[axis] % splits is not 0, then throw a TypeError.

" + "html": "

If input’s shape[axis] % splits is not 0, then throw a TypeError.

" }, { "html": "

Otherwise, let splitCount be splits.

" @@ -5079,10 +4887,10 @@ "rationale": "if", "steps": [ { - "html": "

If any of its elements is equal to 0, then throw a TypeError.

" + "html": "

If any of its elements is equal to 0, then throw a TypeError.

" }, { - "html": "

If the sum of its elements is not equal to input’s shape[axis], then throw a TypeError.

" + "html": "

If the sum of its elements is not equal to input’s shape[axis], then throw a TypeError.

" }, { "html": "

Otherwise, let splitCount be splits’s size.

" @@ -5142,13 +4950,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -5182,26 +4990,26 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If options.permutation does not exist, let options.permutation be the reversed sequence of all indices for input’s shape.

" + "html": "

If options.permutation does not exist, let options.permutation be the reversed sequence of all indices for input’s shape.

" }, { - "html": "Otherwise if options.permutation exists:", + "html": "Otherwise if options.permutation exists:", "rationale": "if", "steps": [ { - "html": "

If its size is not equal to input’s rank, then throw a TypeError.

" + "html": "

If its size is not equal to input’s rank, then throw a TypeError.

" }, { - "html": "

If its values are not in the range 0 to input’s rank exclusive, then throw a TypeError.

" + "html": "

If its values are not in the range 0 to input’s rank exclusive, then throw a TypeError.

" }, { - "html": "

If it contains duplicate values, then throw a TypeError.

" + "html": "

If it contains duplicate values, then throw a TypeError.

" } ] }, @@ -5237,13 +5045,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and input returns false, then throw a TypeError.

" + "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s rank is not one of its allowed ranks (according to this table), then throw a TypeError.

" + "html": "

If input’s rank is not one of its allowed ranks (according to this table), then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -5277,20 +5085,20 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any of condition, trueValue, and falseValue returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of condition, trueValue, and falseValue returns false, then throw a TypeError.

" }, { - "html": "

If the dataType of any of condition, trueValue, or falseValue is not one of its allowed data types (according to this table), then throw a TypeError.

" + "html": "

If the dataType of any of condition, trueValue, or falseValue is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { "html": "Let outputShape be the result of bidirectionally broadcasting trueValue’s shape and falseValue’s shape.", "rationale": "if", "steps": [ { - "html": "

If that returns failure, then throw a TypeError.

" + "html": "

If that returns failure, then throw a TypeError.

" } ] }, @@ -5299,7 +5107,7 @@ "rationale": "if", "steps": [ { - "html": "

If that returns failure, then throw a TypeError.

" + "html": "

If that returns failure, then throw a TypeError.

" } ] }, @@ -5311,7 +5119,7 @@ "rationale": "let", "steps": [ { - "html": "

Let output be the result of creating an MLOperand given this and descriptor.

" + "html": "

Let output be the result of creating an MLOperand given this and descriptor.

" }, { "html": "

Let operator be an operator for the \"where\" operation, given condition, trueValue, falseValue, and options.

" diff --git a/tr/dfns/FileAPI.json b/tr/dfns/FileAPI.json index 1706fa9fdc8a..b817d6288e19 100644 --- a/tr/dfns/FileAPI.json +++ b/tr/dfns/FileAPI.json @@ -2137,7 +2137,7 @@ "for": [ "blob URL entry" ], - "access": "public", + "access": "private", "informative": false, "heading": { "id": "url-model", @@ -2188,6 +2188,25 @@ }, "definedIn": "prose" }, + { + "id": "blob-url-obtain-object", + "href": "https://www.w3.org/TR/FileAPI/#blob-url-obtain-object", + "linkingText": [ + "obtain a blob object" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "url-model", + "href": "https://www.w3.org/TR/FileAPI/#url-model", + "title": "Model", + "number": "8.2" + }, + "definedIn": "prose" + }, { "id": "unicodeBlobURL", "href": "https://www.w3.org/TR/FileAPI/#unicodeBlobURL", @@ -2276,6 +2295,25 @@ }, "definedIn": "prose" }, + { + "id": "check-for-same-partition-blob-url-usage", + "href": "https://www.w3.org/TR/FileAPI/#check-for-same-partition-blob-url-usage", + "linkingText": [ + "check for same-partition blob URL usage" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "partitioningOfBlobUrls", + "href": "https://www.w3.org/TR/FileAPI/#partitioningOfBlobUrls", + "title": "Access restrictions on blob URLs", + "number": "8.3.2" + }, + "definedIn": "prose" + }, { "id": "lifeTime", "href": "https://www.w3.org/TR/FileAPI/#lifeTime", @@ -2294,7 +2332,7 @@ "id": "lifeTime", "href": "https://www.w3.org/TR/FileAPI/#lifeTime", "title": "Lifetime of blob URLs", - "number": "8.3.2" + "number": "8.3.3" }, "definedIn": "heading" }, diff --git a/tr/dfns/webnn.json b/tr/dfns/webnn.json index 16502965483a..9a39893e58e0 100644 --- a/tr/dfns/webnn.json +++ b/tr/dfns/webnn.json @@ -643,25 +643,6 @@ }, "definedIn": "prose" }, - { - "id": "typedefdef-mlnamedarraybufferviews", - "href": "https://www.w3.org/TR/webnn/#typedefdef-mlnamedarraybufferviews", - "linkingText": [ - "MLNamedArrayBufferViews" - ], - "localLinkingText": [], - "type": "typedef", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "api-mlcontext", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext", - "title": "MLContext interface", - "number": "7.3" - }, - "definedIn": "pre" - }, { "id": "typedefdef-mlnamedtensors", "href": "https://www.w3.org/TR/webnn/#typedefdef-mlnamedtensors", @@ -681,25 +662,6 @@ }, "definedIn": "pre" }, - { - "id": "dictdef-mlcomputeresult", - "href": "https://www.w3.org/TR/webnn/#dictdef-mlcomputeresult", - "linkingText": [ - "MLComputeResult" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "api-mlcontext", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext", - "title": "MLContext interface", - "number": "7.3" - }, - "definedIn": "pre" - }, { "id": "mlcontext", "href": "https://www.w3.org/TR/webnn/#mlcontext", @@ -885,48 +847,6 @@ }, "definedIn": "dt" }, - { - "id": "dom-mlcomputeresult-inputs", - "href": "https://www.w3.org/TR/webnn/#dom-mlcomputeresult-inputs", - "linkingText": [ - "inputs" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "MLComputeResult" - ], - "access": "public", - "informative": false, - "heading": { - "id": "api-mlcontext", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext", - "title": "MLContext interface", - "number": "7.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-mlcomputeresult-outputs", - "href": "https://www.w3.org/TR/webnn/#dom-mlcomputeresult-outputs", - "linkingText": [ - "outputs" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "MLComputeResult" - ], - "access": "public", - "informative": false, - "heading": { - "id": "api-mlcontext", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext", - "title": "MLContext interface", - "number": "7.3" - }, - "definedIn": "dt" - }, { "id": "validate-buffer-with-descriptor", "href": "https://www.w3.org/TR/webnn/#validate-buffer-with-descriptor", @@ -965,130 +885,6 @@ }, "definedIn": "prose" }, - { - "id": "execute-graph", - "href": "https://www.w3.org/TR/webnn/#execute-graph", - "linkingText": [ - "execute graph" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "api-mlcontext", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext", - "title": "MLContext interface", - "number": "7.3" - }, - "definedIn": "prose" - }, - { - "id": "mlnamedarraybufferviews-transfer", - "href": "https://www.w3.org/TR/webnn/#mlnamedarraybufferviews-transfer", - "linkingText": [ - "transfer" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "MLNamedArrayBufferViews" - ], - "access": "private", - "informative": false, - "heading": { - "id": "mlnamedarraybufferviews-transfer-alg", - "href": "https://www.w3.org/TR/webnn/#mlnamedarraybufferviews-transfer-alg", - "title": "MLNamedArrayBufferViews transfer algorithm", - "number": "7.3.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-mlcontext-compute-graph-inputs-outputs-graph", - "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-compute-graph-inputs-outputs-graph", - "linkingText": [ - "graph" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MLContext/compute(graph, inputs, outputs)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "api-mlcontext-compute", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext-compute", - "title": "compute()", - "number": "7.3.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-mlcontext-compute-graph-inputs-outputs-inputs", - "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-compute-graph-inputs-outputs-inputs", - "linkingText": [ - "inputs" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MLContext/compute(graph, inputs, outputs)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "api-mlcontext-compute", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext-compute", - "title": "compute()", - "number": "7.3.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-mlcontext-compute-graph-inputs-outputs-outputs", - "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-compute-graph-inputs-outputs-outputs", - "linkingText": [ - "outputs" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MLContext/compute(graph, inputs, outputs)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "api-mlcontext-compute", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext-compute", - "title": "compute()", - "number": "7.3.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-mlcontext-compute", - "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-compute", - "linkingText": [ - "compute(graph, inputs, outputs)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "MLContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "api-mlcontext-compute", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext-compute", - "title": "compute()", - "number": "7.3.2" - }, - "definedIn": "prose" - }, { "id": "dom-mlcontext-dispatch-graph-inputs-outputs-graph", "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch-graph-inputs-outputs-graph", @@ -1106,7 +902,7 @@ "id": "api-mlcontext-dispatch", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch", "title": "dispatch()", - "number": "7.3.3" + "number": "7.3.1" }, "definedIn": "prose" }, @@ -1127,7 +923,7 @@ "id": "api-mlcontext-dispatch", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch", "title": "dispatch()", - "number": "7.3.3" + "number": "7.3.1" }, "definedIn": "prose" }, @@ -1148,7 +944,7 @@ "id": "api-mlcontext-dispatch", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch", "title": "dispatch()", - "number": "7.3.3" + "number": "7.3.1" }, "definedIn": "prose" }, @@ -1169,7 +965,7 @@ "id": "api-mlcontext-dispatch", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch", "title": "dispatch()", - "number": "7.3.3" + "number": "7.3.1" }, "definedIn": "prose" }, @@ -1190,7 +986,7 @@ "id": "api-mlcontext-createtensor", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-createtensor", "title": "createTensor()", - "number": "7.3.4" + "number": "7.3.2" }, "definedIn": "prose" }, @@ -1211,7 +1007,7 @@ "id": "api-mlcontext-createtensor", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-createtensor", "title": "createTensor()", - "number": "7.3.4" + "number": "7.3.2" }, "definedIn": "prose" }, @@ -1232,7 +1028,7 @@ "id": "api-mlcontext-readtensor", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor", "title": "readTensor(tensor)", - "number": "7.3.5" + "number": "7.3.3" }, "definedIn": "prose" }, @@ -1253,7 +1049,7 @@ "id": "api-mlcontext-readtensor", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor", "title": "readTensor(tensor)", - "number": "7.3.5" + "number": "7.3.3" }, "definedIn": "prose" }, @@ -1274,7 +1070,7 @@ "id": "api-mlcontext-readtensor-byob", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor-byob", "title": "readTensor(tensor, outputData)", - "number": "7.3.6" + "number": "7.3.4" }, "definedIn": "prose" }, @@ -1295,7 +1091,7 @@ "id": "api-mlcontext-readtensor-byob", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor-byob", "title": "readTensor(tensor, outputData)", - "number": "7.3.6" + "number": "7.3.4" }, "definedIn": "prose" }, @@ -1316,7 +1112,7 @@ "id": "api-mlcontext-readtensor-byob", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor-byob", "title": "readTensor(tensor, outputData)", - "number": "7.3.6" + "number": "7.3.4" }, "definedIn": "prose" }, @@ -1337,7 +1133,7 @@ "id": "api-mlcontext-writetensor", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-writetensor", "title": "writeTensor()", - "number": "7.3.7" + "number": "7.3.5" }, "definedIn": "prose" }, @@ -1358,7 +1154,7 @@ "id": "api-mlcontext-writetensor", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-writetensor", "title": "writeTensor()", - "number": "7.3.7" + "number": "7.3.5" }, "definedIn": "prose" }, @@ -1379,7 +1175,7 @@ "id": "api-mlcontext-writetensor", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-writetensor", "title": "writeTensor()", - "number": "7.3.7" + "number": "7.3.5" }, "definedIn": "prose" }, @@ -1398,7 +1194,7 @@ "id": "api-mlcontext-opsupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary", "title": "MLOpSupportLimits dictionary", - "number": "7.3.8.1" + "number": "7.3.6.1" }, "definedIn": "pre" }, @@ -1419,7 +1215,7 @@ "id": "api-mlcontext-opsupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary", "title": "MLOpSupportLimits dictionary", - "number": "7.3.8.1" + "number": "7.3.6.1" }, "definedIn": "dt" }, @@ -1440,7 +1236,7 @@ "id": "api-mlcontext-opsupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary", "title": "MLOpSupportLimits dictionary", - "number": "7.3.8.1" + "number": "7.3.6.1" }, "definedIn": "dt" }, @@ -1461,7 +1257,7 @@ "id": "api-mlcontext-opsupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary", "title": "MLOpSupportLimits dictionary", - "number": "7.3.8.1" + "number": "7.3.6.1" }, "definedIn": "dt" }, @@ -1482,7 +1278,7 @@ "id": "api-mlcontext-opsupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary", "title": "MLOpSupportLimits dictionary", - "number": "7.3.8.1" + "number": "7.3.6.1" }, "definedIn": "dt" }, @@ -1501,7 +1297,7 @@ "id": "api-mlcontext-supportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-supportlimits-dictionary", "title": "MLSupportLimits dictionary", - "number": "7.3.8.2" + "number": "7.3.6.2" }, "definedIn": "pre" }, @@ -1522,7 +1318,7 @@ "id": "api-mlcontext-supportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-supportlimits-dictionary", "title": "MLSupportLimits dictionary", - "number": "7.3.8.2" + "number": "7.3.6.2" }, "definedIn": "dt" }, @@ -1541,7 +1337,7 @@ "id": "api-mlcontext-binarysupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-binarysupportlimits-dictionary", "title": "MLBinarySupportLimits dictionary", - "number": "7.3.8.3" + "number": "7.3.6.3" }, "definedIn": "pre" }, @@ -1562,7 +1358,7 @@ "id": "api-mlcontext-binarysupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-binarysupportlimits-dictionary", "title": "MLBinarySupportLimits dictionary", - "number": "7.3.8.3" + "number": "7.3.6.3" }, "definedIn": "dt" }, @@ -1583,7 +1379,7 @@ "id": "api-mlcontext-binarysupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-binarysupportlimits-dictionary", "title": "MLBinarySupportLimits dictionary", - "number": "7.3.8.3" + "number": "7.3.6.3" }, "definedIn": "dt" }, @@ -1604,7 +1400,7 @@ "id": "api-mlcontext-binarysupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-binarysupportlimits-dictionary", "title": "MLBinarySupportLimits dictionary", - "number": "7.3.8.3" + "number": "7.3.6.3" }, "definedIn": "dt" }, @@ -1623,7 +1419,7 @@ "id": "api-mlcontext-singleinputsupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-singleinputsupportlimits-dictionary", "title": "MLSingleInputSupportLimits dictionary", - "number": "7.3.8.4" + "number": "7.3.6.4" }, "definedIn": "pre" }, @@ -1644,7 +1440,7 @@ "id": "api-mlcontext-singleinputsupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-singleinputsupportlimits-dictionary", "title": "MLSingleInputSupportLimits dictionary", - "number": "7.3.8.4" + "number": "7.3.6.4" }, "definedIn": "dt" }, @@ -1665,7 +1461,7 @@ "id": "api-mlcontext-singleinputsupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-singleinputsupportlimits-dictionary", "title": "MLSingleInputSupportLimits dictionary", - "number": "7.3.8.4" + "number": "7.3.6.4" }, "definedIn": "dt" }, diff --git a/tr/headings/FileAPI.json b/tr/headings/FileAPI.json index f445e8f8a5cc..2e050c2eba3b 100644 --- a/tr/headings/FileAPI.json +++ b/tr/headings/FileAPI.json @@ -364,12 +364,19 @@ "title": "Origin of blob URLs", "number": "8.3.1" }, + { + "id": "partitioningOfBlobUrls", + "href": "https://www.w3.org/TR/FileAPI/#partitioningOfBlobUrls", + "level": 4, + "title": "Access restrictions on blob URLs", + "number": "8.3.2" + }, { "id": "lifeTime", "href": "https://www.w3.org/TR/FileAPI/#lifeTime", "level": 4, "title": "Lifetime of blob URLs", - "number": "8.3.2" + "number": "8.3.3" }, { "id": "creating-revoking", diff --git a/tr/headings/webnn.json b/tr/headings/webnn.json index d653ab10ee1f..3a8ebc4b9ae1 100644 --- a/tr/headings/webnn.json +++ b/tr/headings/webnn.json @@ -308,103 +308,82 @@ "title": "MLContext interface", "number": "7.3" }, - { - "id": "mlnamedarraybufferviews-transfer-alg", - "href": "https://www.w3.org/TR/webnn/#mlnamedarraybufferviews-transfer-alg", - "level": 4, - "title": "MLNamedArrayBufferViews transfer algorithm", - "number": "7.3.1" - }, - { - "id": "api-mlcontext-compute", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext-compute", - "level": 4, - "title": "compute()", - "number": "7.3.2" - }, - { - "id": "api-mlcontext-compute-examples", - "href": "https://www.w3.org/TR/webnn/#api-mlcontext-compute-examples", - "level": 5, - "title": "Examples", - "number": "7.3.2.1" - }, { "id": "api-mlcontext-dispatch", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch", "level": 4, "title": "dispatch()", - "number": "7.3.3" + "number": "7.3.1" }, { "id": "api-mlcontext-dispatch-examples", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch-examples", "level": 5, "title": "Examples", - "number": "7.3.3.1" + "number": "7.3.1.1" }, { "id": "api-mlcontext-createtensor", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-createtensor", "level": 4, "title": "createTensor()", - "number": "7.3.4" + "number": "7.3.2" }, { "id": "api-mlcontext-readtensor", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor", "level": 4, "title": "readTensor(tensor)", - "number": "7.3.5" + "number": "7.3.3" }, { "id": "api-mlcontext-readtensor-byob", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor-byob", "level": 4, "title": "readTensor(tensor, outputData)", - "number": "7.3.6" + "number": "7.3.4" }, { "id": "api-mlcontext-writetensor", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-writetensor", "level": 4, "title": "writeTensor()", - "number": "7.3.7" + "number": "7.3.5" }, { "id": "api-mlcontext-opsupportlimits", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits", "level": 4, "title": "opSupportLimits()", - "number": "7.3.8" + "number": "7.3.6" }, { "id": "api-mlcontext-opsupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary", "level": 5, "title": "MLOpSupportLimits dictionary", - "number": "7.3.8.1" + "number": "7.3.6.1" }, { "id": "api-mlcontext-supportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-supportlimits-dictionary", "level": 5, "title": "MLSupportLimits dictionary", - "number": "7.3.8.2" + "number": "7.3.6.2" }, { "id": "api-mlcontext-binarysupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-binarysupportlimits-dictionary", "level": 5, "title": "MLBinarySupportLimits dictionary", - "number": "7.3.8.3" + "number": "7.3.6.3" }, { "id": "api-mlcontext-singleinputsupportlimits-dictionary", "href": "https://www.w3.org/TR/webnn/#api-mlcontext-singleinputsupportlimits-dictionary", "level": 5, "title": "MLSingleInputSupportLimits dictionary", - "number": "7.3.8.4" + "number": "7.3.6.4" }, { "id": "api-mlgraph", diff --git a/tr/idl/webnn.idl b/tr/idl/webnn.idl index 77045f8fad7f..89154e32dfa0 100644 --- a/tr/idl/webnn.idl +++ b/tr/idl/webnn.idl @@ -32,19 +32,10 @@ interface ML { Promise createContext(GPUDevice gpuDevice); }; -typedef record MLNamedArrayBufferViews; typedef record MLNamedTensors; -dictionary MLComputeResult { - MLNamedArrayBufferViews inputs; - MLNamedArrayBufferViews outputs; -}; - [SecureContext, Exposed=(Window, DedicatedWorker)] interface MLContext { - // ISSUE(791): compute() will soon be removed in favor of dispatch(). - Promise compute( - MLGraph graph, MLNamedArrayBufferViews inputs, MLNamedArrayBufferViews outputs); undefined dispatch(MLGraph graph, MLNamedTensors inputs, MLNamedTensors outputs); Promise createTensor(MLTensorDescriptor descriptor); diff --git a/tr/ids/FileAPI.json b/tr/ids/FileAPI.json index 775d0769a77c..fcc81c6bf2c1 100644 --- a/tr/ids/FileAPI.json +++ b/tr/ids/FileAPI.json @@ -893,6 +893,9 @@ "https://www.w3.org/TR/FileAPI/#ref-for-mediasource%E2%91%A1", "https://www.w3.org/TR/FileAPI/#blob-url-entry-environment", "https://www.w3.org/TR/FileAPI/#ref-for-environment-settings-object", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-obtain-object", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry%E2%91%A0", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry-object", "https://www.w3.org/TR/FileAPI/#ref-for-map-getting-the-keys%E2%91%A0", "https://www.w3.org/TR/FileAPI/#ref-for-BlobURLStore%E2%91%A0", "https://www.w3.org/TR/FileAPI/#blob-url", @@ -903,6 +906,12 @@ "https://www.w3.org/TR/FileAPI/#ref-for-empty-host", "https://www.w3.org/TR/FileAPI/#ref-for-concept-url-path", "https://www.w3.org/TR/FileAPI/#ref-for-valid-url-string%E2%91%A1", + "https://www.w3.org/TR/FileAPI/#blob-url-obtain-object", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry%E2%91%A1", + "https://www.w3.org/TR/FileAPI/#ref-for-environment-settings-object%E2%91%A0", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry-object%E2%91%A0", + "https://www.w3.org/TR/FileAPI/#ref-for-check-for-same-partition-blob-url-usage", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry-object%E2%91%A1", "https://www.w3.org/TR/FileAPI/#unicodeBlobURL", "https://www.w3.org/TR/FileAPI/#ref-for-current-settings-object", "https://www.w3.org/TR/FileAPI/#ref-for-concept-settings-object-origin", @@ -911,7 +920,7 @@ "https://www.w3.org/TR/FileAPI/#add-an-entry", "https://www.w3.org/TR/FileAPI/#ref-for-BlobURLStore%E2%91%A1", "https://www.w3.org/TR/FileAPI/#ref-for-unicodeBlobURL", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry%E2%91%A0", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry%E2%91%A2", "https://www.w3.org/TR/FileAPI/#ref-for-current-settings-object%E2%91%A0", "https://www.w3.org/TR/FileAPI/#ref-for-map-set", "https://www.w3.org/TR/FileAPI/#removeTheEntry", @@ -929,6 +938,18 @@ "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A2", "https://www.w3.org/TR/FileAPI/#originOfBlobURL", "https://www.w3.org/TR/FileAPI/#ref-for-BlobURLStore%E2%91%A4", + "https://www.w3.org/TR/FileAPI/#partitioningOfBlobUrls", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A3", + "https://www.w3.org/TR/FileAPI/#ref-for-service-worker-registration-storage-key", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A4", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A5", + "https://www.w3.org/TR/FileAPI/#check-for-same-partition-blob-url-usage", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry%E2%91%A3", + "https://www.w3.org/TR/FileAPI/#ref-for-environment-settings-object%E2%91%A1", + "https://www.w3.org/TR/FileAPI/#ref-for-obtain-a-storage-key-for-non-storage-purposes", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry-environment", + "https://www.w3.org/TR/FileAPI/#ref-for-obtain-a-storage-key-for-non-storage-purposes%E2%91%A0", + "https://www.w3.org/TR/FileAPI/#ref-for-storage-key-equal", "https://www.w3.org/TR/FileAPI/#lifeTime", "https://www.w3.org/TR/FileAPI/#ref-for-lifeTime", "https://www.w3.org/TR/FileAPI/#ref-for-unloading-document-cleanup-steps", @@ -936,15 +957,15 @@ "https://www.w3.org/TR/FileAPI/#ref-for-relevant-settings-object", "https://www.w3.org/TR/FileAPI/#ref-for-BlobURLStore%E2%91%A5", "https://www.w3.org/TR/FileAPI/#ref-for-map-value", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry-environment", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry-environment%E2%91%A0", "https://www.w3.org/TR/FileAPI/#issue-5f2e5a9d", "https://www.w3.org/TR/FileAPI/#creating-revoking", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A3", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A6", "https://www.w3.org/TR/FileAPI/#ref-for-url%E2%91%A0", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A4", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A5", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A7", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A8", "https://www.w3.org/TR/FileAPI/#ref-for-concept-network-error", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A6", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/FileAPI/#ref-for-Exposed%E2%91%A4", "https://www.w3.org/TR/FileAPI/#ref-for-url%E2%91%A1", "https://www.w3.org/TR/FileAPI/#ref-for-idl-DOMString%E2%91%A0%E2%91%A2", @@ -961,38 +982,37 @@ "https://www.w3.org/TR/FileAPI/#dfn-revokeObjectURL", "https://www.w3.org/TR/FileAPI/#ref-for-concept-url-parser%E2%91%A0", "https://www.w3.org/TR/FileAPI/#ref-for-concept-url-scheme%E2%91%A2", - "https://www.w3.org/TR/FileAPI/#ref-for-concept-url-origin", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url-entry%E2%91%A4", + "https://www.w3.org/TR/FileAPI/#ref-for-check-for-same-partition-blob-url-usage%E2%91%A0", "https://www.w3.org/TR/FileAPI/#ref-for-current-settings-object%E2%91%A1", - "https://www.w3.org/TR/FileAPI/#ref-for-same-origin", - "https://www.w3.org/TR/FileAPI/#ref-for-concept-settings-object-origin%E2%91%A0", "https://www.w3.org/TR/FileAPI/#ref-for-removeTheEntry", "https://www.w3.org/TR/FileAPI/#ref-for-concept-network-error%E2%91%A0", "https://www.w3.org/TR/FileAPI/#example-8201d564", - "https://www.w3.org/TR/FileAPI/#ref-for-same-origin%E2%91%A0", + "https://www.w3.org/TR/FileAPI/#ref-for-same-origin", "https://www.w3.org/TR/FileAPI/#ref-for-the-iframe-element", "https://www.w3.org/TR/FileAPI/#ref-for-BlobURLStore%E2%91%A6", "https://www.w3.org/TR/FileAPI/#ref-for-dfn-revokeObjectURL%E2%91%A1", "https://www.w3.org/TR/FileAPI/#ref-for-concept-network-error%E2%91%A1", "https://www.w3.org/TR/FileAPI/#examplesOfCreationRevocation", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A7", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/FileAPI/#ref-for-concept-fetch%E2%91%A0", "https://www.w3.org/TR/FileAPI/#ref-for-dfn-Blob%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/FileAPI/#ref-for-dfn-createObjectURL%E2%91%A1", "https://www.w3.org/TR/FileAPI/#ref-for-lifeTime%E2%91%A0", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A8", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/FileAPI/#example-1527a3d5", "https://www.w3.org/TR/FileAPI/#ref-for-the-img-element%E2%91%A0", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/FileAPI/#example-ec3131a7", "https://www.w3.org/TR/FileAPI/#ref-for-dfn-revokeObjectURL%E2%91%A2", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/FileAPI/#ref-for-dfn-revokeObjectURL%E2%91%A3", "https://www.w3.org/TR/FileAPI/#security-discussion", "https://www.w3.org/TR/FileAPI/#ref-for-dfn-filereader%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/FileAPI/#ref-for-dfn-filelist%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/FileAPI/#ref-for-blob-url%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/FileAPI/#ref-for-dfn-throw%E2%91%A3", "https://www.w3.org/TR/FileAPI/#ref-for-securityerror%E2%91%A3", "https://www.w3.org/TR/FileAPI/#ref-for-securityerror%E2%91%A4", @@ -1080,6 +1100,9 @@ "https://www.w3.org/TR/FileAPI/#fc5a3214", "https://www.w3.org/TR/FileAPI/#678221b9", "https://www.w3.org/TR/FileAPI/#d72dabca", + "https://www.w3.org/TR/FileAPI/#9e860004", + "https://www.w3.org/TR/FileAPI/#8d831b4d", + "https://www.w3.org/TR/FileAPI/#76919410", "https://www.w3.org/TR/FileAPI/#59ed4e57", "https://www.w3.org/TR/FileAPI/#2d10bf58", "https://www.w3.org/TR/FileAPI/#6b6bb798", @@ -1090,7 +1113,6 @@ "https://www.w3.org/TR/FileAPI/#c0350ab0", "https://www.w3.org/TR/FileAPI/#f06432d7", "https://www.w3.org/TR/FileAPI/#cfc67fdc", - "https://www.w3.org/TR/FileAPI/#959ad97b", "https://www.w3.org/TR/FileAPI/#c0868016", "https://www.w3.org/TR/FileAPI/#3a711be7", "https://www.w3.org/TR/FileAPI/#dcffbccd", @@ -1138,6 +1160,8 @@ "https://www.w3.org/TR/FileAPI/#biblio-rfc2119", "https://www.w3.org/TR/FileAPI/#biblio-rfc2397", "https://www.w3.org/TR/FileAPI/#biblio-rfc4122", + "https://www.w3.org/TR/FileAPI/#biblio-service-workers", + "https://www.w3.org/TR/FileAPI/#biblio-storage", "https://www.w3.org/TR/FileAPI/#biblio-streams", "https://www.w3.org/TR/FileAPI/#biblio-url", "https://www.w3.org/TR/FileAPI/#biblio-webidl", diff --git a/tr/ids/webnn.json b/tr/ids/webnn.json index a30424ad15a8..5a4c7c73cbdb 100644 --- a/tr/ids/webnn.json +++ b/tr/ids/webnn.json @@ -48,9 +48,9 @@ "https://www.w3.org/TR/webnn/#issue-2dcd6d4c", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch%E2%91%A0", "https://www.w3.org/TR/webnn/#security-new-ops", "https://www.w3.org/TR/webnn/#privacy", "https://www.w3.org/TR/webnn/#ref-for-gpudevice%E2%91%A0", @@ -107,7 +107,8 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperatoroptions-label", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperatoroptions-label%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute%E2%91%A1", + "https://www.w3.org/TR/webnn/#issue-cbeaefa0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build%E2%91%A0", @@ -121,19 +122,21 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0", - "https://www.w3.org/TR/webnn/#programming-model-device-selection", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcontextoptions%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor", + "https://www.w3.org/TR/webnn/#programming-model-device-selection", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcontextoptions%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-gpudevice%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView", "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcontextoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlpowerpreference%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mldevicetype%E2%91%A1", @@ -142,7 +145,7 @@ "https://www.w3.org/TR/webnn/#ref-for-task-source", "https://www.w3.org/TR/webnn/#ref-for-concept-task", "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A7", "https://www.w3.org/TR/webnn/#queue-an-ml-task", "https://www.w3.org/TR/webnn/#ref-for-global-object", "https://www.w3.org/TR/webnn/#ref-for-queue-a-global-task", @@ -186,12 +189,12 @@ "https://www.w3.org/TR/webnn/#ref-for-Exposed", "https://www.w3.org/TR/webnn/#ml", "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-ml-createcontext", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcontextoptions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-ml-createcontext-options-options", "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-ml-createcontext-gpudevice", "https://www.w3.org/TR/webnn/#ref-for-gpudevice%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-ml-createcontext-options-gpudevice", @@ -215,12 +218,12 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcontextoptions%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-ml-createcontext-options-gpudevice", "https://www.w3.org/TR/webnn/#ref-for-gpudevice%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#create-a-context", "https://www.w3.org/TR/webnn/#ref-for-realm", "https://www.w3.org/TR/webnn/#ref-for-gpudevice%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcontextoptions%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-gpudevice%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-contexttype-slot", "https://www.w3.org/TR/webnn/#ref-for-context-type-webgpu", @@ -288,56 +291,38 @@ "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlcontext", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-context-type", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mldevicetype%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlpowerpreference%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-record", "https://www.w3.org/TR/webnn/#ref-for-idl-USVString", - "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A1", - "https://www.w3.org/TR/webnn/#typedefdef-mlnamedarraybufferviews", - "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mltensor", "https://www.w3.org/TR/webnn/#typedefdef-mlnamedtensors", - "https://www.w3.org/TR/webnn/#dictdef-mlcomputeresult", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcomputeresult-inputs", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcomputeresult-outputs", "https://www.w3.org/TR/webnn/#ref-for-SecureContext%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-Exposed%E2%91%A0", "https://www.w3.org/TR/webnn/#mlcontext", - "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcomputeresult", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute-graph-inputs-outputs-graph", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute-graph-inputs-outputs-inputs", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute-graph-inputs-outputs-outputs", "https://www.w3.org/TR/webnn/#ref-for-idl-undefined", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch-graph-inputs-outputs-graph", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors", + "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch-graph-inputs-outputs-inputs", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch-graph-inputs-outputs-outputs", - "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-createtensor", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltensordescriptor", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-createtensor-descriptor-descriptor", - "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-ArrayBuffer", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor-tensor-tensor", - "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor-tensor-outputdata", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A2", @@ -352,21 +337,21 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-writetensor-tensor-inputdata-inputdata", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits", "https://www.w3.org/TR/webnn/#dom-mlcontext-opsupportlimits", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlcontext-contexttype-slot", "https://www.w3.org/TR/webnn/#ref-for-context-type%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-context-type%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlcontext-devicetype-slot", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mldevicetype%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mldevicetype%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlcontext-powerpreference-slot", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlpowerpreference%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlpowerpreference%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlcontext-timeline-slot", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-computational-graph%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-data-slot", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A4", @@ -379,13 +364,6 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcontextoptions%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontextoptions-devicetype%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mldevicetype-gpu%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A2", - "https://www.w3.org/TR/webnn/#dom-mlcomputeresult-inputs", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A3", - "https://www.w3.org/TR/webnn/#dom-mlcomputeresult-outputs", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A4", "https://www.w3.org/TR/webnn/#validate-buffer-with-descriptor", "https://www.w3.org/TR/webnn/#ref-for-AllowSharedBufferSource%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor", @@ -393,157 +371,31 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-byte-length", "https://www.w3.org/TR/webnn/#ref-for-idl-ArrayBuffer%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-SharedArrayBuffer", - "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-table-the-typedarray-constructors", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype", "https://www.w3.org/TR/webnn/#validate-tensors-with-descriptors", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-size", "https://www.w3.org/TR/webnn/#ref-for-map-size%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-iterate", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot", - "https://www.w3.org/TR/webnn/#execute-graph", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-implementation-slot", - "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-inputdescriptors-slot", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-implementation-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-table-the-typedarray-constructors%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape", - "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-implementation-slot%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-outputdescriptors-slot", - "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-byte-length%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror", - "https://www.w3.org/TR/webnn/#ref-for-table-the-typedarray-constructors%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-table-the-typedarray-constructors%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A3", - "https://www.w3.org/TR/webnn/#mlnamedarraybufferviews-transfer-alg", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#mlnamedarraybufferviews-transfer", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-realm%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-buffersource-transferable", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-arraybuffer-transfer", - "https://www.w3.org/TR/webnn/#ref-for-buffersource-underlying-buffer", - "https://www.w3.org/TR/webnn/#ref-for-assert", - "https://www.w3.org/TR/webnn/#ref-for-table-the-typedarray-constructors%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-buffersource-byte-length%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-table-the-typedarray-constructors%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-sec-construct", - "https://www.w3.org/TR/webnn/#api-mlcontext-compute", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute%E2%91%A4", - "https://www.w3.org/TR/webnn/#issue-f267aeab", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcontextoptions%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-arraybufferview-write", - "https://www.w3.org/TR/webnn/#ref-for-mlnamedarraybufferviews-transfer", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#dom-mlcontext-compute-graph-inputs-outputs-graph", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#dom-mlcontext-compute-graph-inputs-outputs-inputs", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlnamedarraybufferviews-transfer%E2%91%A0", - "https://www.w3.org/TR/webnn/#dom-mlcontext-compute-graph-inputs-outputs-outputs", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mlnamedarraybufferviews-transfer%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcomputeresult%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute-graph-inputs-outputs-graph%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute-graph-inputs-outputs-inputs%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute-graph-inputs-outputs-outputs%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute-graph-inputs-outputs-graph%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlcontext-compute", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-realm%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-contexttype-slot%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-context-type-default%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-inputdescriptors-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-outputdescriptors-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-outputdescriptors-slot%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mlnamedarraybufferviews-transfer%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mlnamedarraybufferviews-transfer%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-in-parallel%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-execute-graph", - "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcomputeresult%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcomputeresult-inputs%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcomputeresult-outputs%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A1", - "https://www.w3.org/TR/webnn/#api-mlcontext-compute-examples", - "https://www.w3.org/TR/webnn/#example-b9695d94", "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-dispatch%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot", "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch-graph-inputs-outputs-graph", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch-graph-inputs-outputs-inputs", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch-graph-inputs-outputs-outputs", - "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch", "https://www.w3.org/TR/webnn/#ref-for-list", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A5", @@ -551,32 +403,32 @@ "https://www.w3.org/TR/webnn/#ref-for-list-extend", "https://www.w3.org/TR/webnn/#ref-for-map-getting-the-values%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-item", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror", "https://www.w3.org/TR/webnn/#ref-for-list-iterate", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-context-slot", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-isdestroyed-slot", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-validate-tensors-with-descriptors", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-inputdescriptors-slot%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-inputdescriptors-slot", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-validate-tensors-with-descriptors%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-outputdescriptors-slot%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-outputdescriptors-slot", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-implementation-slot%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-implementation-slot", "https://www.w3.org/TR/webnn/#issue-d3f82f0f", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A3", "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch-examples", "https://www.w3.org/TR/webnn/#example-1aca2bd4", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A6", "https://www.w3.org/TR/webnn/#api-mlcontext-createtensor", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-createtensor%E2%91%A0", @@ -584,115 +436,115 @@ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlcontext-createtensor-descriptor-descriptor", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltensordescriptor%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlcontext-createtensor", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-create-an-mltensor", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-data-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-unknownerror", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-data-slot%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor-tensor-tensor", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-idl-ArrayBuffer%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-realm%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-realm%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-isdestroyed-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensordescriptor-readable", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-byte-sequence", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-data-slot%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-unknownerror%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-arraybuffer-create", "https://www.w3.org/TR/webnn/#ref-for-idl-ArrayBuffer%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A2", "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor-byob", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor-tensor-outputdata%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-data-slot%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor-tensor-outputdata-tensor", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor-tensor-outputdata-outputdata", "https://www.w3.org/TR/webnn/#ref-for-AllowSharedBufferSource%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor-tensor-outputdata", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-isdestroyed-slot%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensordescriptor-readable%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-byte-sequence%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-data-slot%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-unknownerror%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-buffersource-detached", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-arraybuffer-write", - "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A5", "https://www.w3.org/TR/webnn/#api-mlcontext-writetensor", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-writetensor%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-data-slot%E2%91%A5", @@ -703,33 +555,33 @@ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlcontext-writetensor-tensor-inputdata-inputdata", "https://www.w3.org/TR/webnn/#ref-for-AllowSharedBufferSource%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlcontext-writetensor", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-isdestroyed-slot%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensordescriptor-writable", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-get-buffer-source-copy", - "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-assert", "https://www.w3.org/TR/webnn/#ref-for-byte-sequence-length", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-byte-length%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-byte-length%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-data-slot%E2%91%A6", "https://www.w3.org/TR/webnn/#issue-52ee2372", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A7", "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-opsupportlimits", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-opsupportlimits%E2%91%A0", @@ -753,15 +605,15 @@ "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-constant", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-output", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#api-mlcontext-supportlimits-dictionary", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A5", "https://www.w3.org/TR/webnn/#dictdef-mlsupportlimits", @@ -802,37 +654,37 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraph", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-SecureContext%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-Exposed%E2%91%A1", "https://www.w3.org/TR/webnn/#mlgraph", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraph-context-slot", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraph-inputdescriptors-slot", - "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraph-outputdescriptors-slot", - "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraph-implementation-slot", "https://www.w3.org/TR/webnn/#api-mloperanddescriptor", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A7", "https://www.w3.org/TR/webnn/#enumdef-mlinputoperandlayout", @@ -853,7 +705,7 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape", "https://www.w3.org/TR/webnn/#dom-mloperanddescriptor-datatype", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mloperanddescriptor-shape", @@ -863,26 +715,26 @@ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-clone", "https://www.w3.org/TR/webnn/#mloperanddescriptor-byte-length", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-table-the-typedarray-constructors%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-table-the-typedarray-constructors%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A2", "https://www.w3.org/TR/webnn/#valid-dimension", "https://www.w3.org/TR/webnn/#ref-for-idl-long", "https://www.w3.org/TR/webnn/#issue-f000a729", "https://www.w3.org/TR/webnn/#mloperanddescriptor-check-dimensions", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-size", "https://www.w3.org/TR/webnn/#issue-8054fa8e", - "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-byte-length%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-byte-length%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mloperand", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA", @@ -896,7 +748,7 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-shape", "https://www.w3.org/TR/webnn/#dictdef-mloperatoroptions", - "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperatoroptions-label%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-bigint", "https://www.w3.org/TR/webnn/#ref-for-idl-unrestricted-double", @@ -922,18 +774,18 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#mloperand-shape", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#mloperand-rank", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mloperand-datatype", "https://www.w3.org/TR/webnn/#ref-for-getter-steps", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype", "https://www.w3.org/TR/webnn/#dom-mloperand-shape", "https://www.w3.org/TR/webnn/#ref-for-getter-steps%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-builder-slot", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-mlgraphbuilder", @@ -957,7 +809,7 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions", "https://www.w3.org/TR/webnn/#dom-mloperatoroptions-label", - "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0", @@ -981,7 +833,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-name-slot", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-name-slot%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-name-slot%E2%91%A1", "https://www.w3.org/TR/webnn/#mlgraphbuilder-validate-operand", @@ -1021,7 +873,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensordescriptor-writable%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mltensordescriptor-readable", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor-tensor-outputdata%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mltensordescriptor-writable", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A2", @@ -1029,7 +881,7 @@ "https://www.w3.org/TR/webnn/#api-mltensor", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A8", @@ -1052,7 +904,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-readable", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-writable", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-destroy", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mltensor-context-slot", @@ -1078,23 +930,23 @@ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#mltensor-shape", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mltensor-datatype", "https://www.w3.org/TR/webnn/#ref-for-getter-steps%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mltensor-datatype", "https://www.w3.org/TR/webnn/#dom-mltensor-shape", "https://www.w3.org/TR/webnn/#ref-for-getter-steps%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mltensor-shape", "https://www.w3.org/TR/webnn/#dom-mltensor-readable", "https://www.w3.org/TR/webnn/#ref-for-getter-steps%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensordescriptor-readable%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mltensor-writable", "https://www.w3.org/TR/webnn/#ref-for-getter-steps%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensordescriptor-writable%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mltensor-create", @@ -1111,21 +963,21 @@ "https://www.w3.org/TR/webnn/#api-mltensor-destroy", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-destroy%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mltensor-destroy", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-isdestroyed-slot%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-context-slot%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-data-slot%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#typedefdef-mlnamedoperands", "https://www.w3.org/TR/webnn/#ref-for-SecureContext%E2%91%A5", @@ -1136,7 +988,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constructor-context-context", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-input", - "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-input-name-descriptor-name", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-input-name-descriptor-descriptor", @@ -1152,18 +1004,18 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant-type-value-type", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnumber%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant-type-value-value", - "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedoperands", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build-outputs-outputs", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-contexttype-slot%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-contexttype-slot%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-context-type-default%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-context-type-default%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-context-slot", @@ -1176,7 +1028,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constructor", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constructor-context-context", @@ -1184,17 +1036,17 @@ "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-new", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mlgraphbuilder", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-concept-document-window%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-to-use%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-webnn-feature%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-securityerror%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-context-slot", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A3", @@ -1204,31 +1056,31 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-input", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph", "https://www.w3.org/TR/webnn/#ref-for-computational-graph-input", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-name-slot%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-check-dimensions", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-name-slot%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-computational-graph-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A0", @@ -1241,21 +1093,21 @@ "https://www.w3.org/TR/webnn/#ref-for-AllowSharedBufferSource%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-check-dimensions%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-get-buffer-source-copy%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-computational-graph-constants", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-type-value", @@ -1268,49 +1120,49 @@ "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnumber%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-type-value", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-computational-graph-constants%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-build", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-build-outputs-outputs", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedoperands%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-build", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-computational-graph-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-computational-graph-constants%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-ordered-set", "https://www.w3.org/TR/webnn/#ref-for-ordered-set%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-ordered-set%E2%91%A1", @@ -1321,7 +1173,7 @@ "https://www.w3.org/TR/webnn/#ref-for-set-append", "https://www.w3.org/TR/webnn/#ref-for-set-append%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-computational-graph-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-set-append%E2%91%A1", @@ -1329,35 +1181,35 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-queue-enqueue", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-realm%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-realm%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-context-slot%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-inputdescriptors-slot%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-inputdescriptors-slot%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-name-slot%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-outputdescriptors-slot%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-outputdescriptors-slot%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-in-parallel%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-in-parallel%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-map-getting-the-values%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-implementation-slot%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-implementation-slot%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-computational-graph-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-computational-graph-constants%E2%91%A2", @@ -1436,41 +1288,41 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-reduction-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-keepdimensions%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operator-output", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-argminmax-op", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmax", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-argminmax-op%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm", "https://www.w3.org/TR/webnn/#dictdef-mlbatchnormalizationoptions", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A1", @@ -1587,83 +1439,83 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlbatchnormalizationsupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-scale%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-bias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-the-range", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-epsilon%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-epsilon%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-scale%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-bias%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-scale%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-bias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A0", @@ -1731,15 +1583,15 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3", @@ -1789,15 +1641,15 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-minvalue%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-minvalue%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A2", @@ -1808,8 +1660,8 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-minvalue%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-maxvalue%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A4", @@ -1871,53 +1723,53 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlconcatsupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-is-empty%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A7", @@ -2048,63 +1900,63 @@ "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-conv-output-size", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-conv-output-size%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-conv2d", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-padding%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-padding%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-dilations%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-dilations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-dilations%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-groups%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-inputlayout%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A3", @@ -2116,20 +1968,20 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2dfilteroperandlayout-ihwo%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2dfilteroperandlayout-oihw%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-groups%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-groups%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-conv2d-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-padding%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides%E2%91%A3", @@ -2139,17 +1991,17 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A4", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d", @@ -2264,81 +2116,81 @@ "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-convtranspose-output-size", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-convtranspose-output-size%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-convtranspose2d", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-padding%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-padding%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-dilations%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-dilations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-dilations%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputsizes%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-groups%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-inputlayout%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A6", @@ -2348,20 +2200,20 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2dfilteroperandlayout-iohw%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2dfilteroperandlayout-hwoi%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2dfilteroperandlayout-ohwi%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-groups%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-bias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputsizes%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputsizes%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-convtranspose2d-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-padding%E2%91%A2", @@ -2373,17 +2225,17 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A5", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary", @@ -2513,29 +2365,29 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcasting", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A2", @@ -2543,32 +2395,32 @@ "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sub", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mul", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-div", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-max", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-min", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pow", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-broadcasting%E2%91%A0", @@ -2698,39 +2550,39 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcasting%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A3", @@ -2738,28 +2590,28 @@ "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greater", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greaterorequal", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesser", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesserorequal", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-logicalnot", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A7", @@ -2925,20 +2777,20 @@ "https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-contain", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A0", @@ -2951,80 +2803,80 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-ceil", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cos", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-erf", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-exp", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-floor", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-identity", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-log", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-neg", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reciprocal", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sin", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sqrt", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tan", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu", "https://www.w3.org/TR/webnn/#dictdef-mleluoptions", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A3%E2%91%A0", @@ -3066,19 +2918,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-elu%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mleluoptions-alpha%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mleluoptions-alpha%E2%91%A1", @@ -3129,23 +2981,23 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcasting", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A6", @@ -3229,25 +3081,25 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgathersupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gather%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgatheroptions-axis%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-iteration-break", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A6", @@ -3295,19 +3147,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gelu%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gelu", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A4", @@ -3402,23 +3254,23 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgemmsupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gemm%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-alpha%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-alpha%E2%91%A1", @@ -3433,26 +3285,26 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-atranspose%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-btranspose%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-c%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcastable%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-c%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru", @@ -3617,80 +3469,80 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgrusupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-initialhiddenstate%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-direction%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkdirection-both%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-initialhiddenstate%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-activations%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-activations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-sigmoid%E2%91%A0", @@ -3702,10 +3554,10 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-returnsequence%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A7", @@ -3713,13 +3565,13 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-initialhiddenstate%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operator-activation%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A4", @@ -3850,67 +3702,67 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgrucellsupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-bias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-recurrentbias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-bias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-recurrentbias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-bias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-recurrentbias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-activations%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-activations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-sigmoid%E2%91%A2", @@ -3918,15 +3770,15 @@ "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-bias%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-recurrentbias%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operator-activation%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A6", @@ -3980,19 +3832,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardsigmoid%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlhardsigmoidoptions-alpha%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlhardsigmoidoptions-alpha%E2%91%A1", @@ -4040,19 +3892,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardswish%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A1", @@ -4145,27 +3997,27 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlnormalizationsupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-instancenormalization%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-instancenormalization", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-scale%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-bias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-epsilon%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-epsilon%E2%91%A1", @@ -4173,34 +4025,34 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-layout%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-scale%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-bias%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-scale%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-bias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A0%E2%91%A1", @@ -4270,25 +4122,25 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlnormalizationsupportlimits%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-layernormalization%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-layernormalization", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-scale%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A2", @@ -4303,55 +4155,55 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-epsilon%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-scale%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-scale%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-scale%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leakyrelu", @@ -4395,19 +4247,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-leakyrelu%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlleakyreluoptions-alpha%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlleakyreluoptions-alpha%E2%91%A1", @@ -4462,19 +4314,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-linear%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mllinearoptions-alpha%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllinearoptions-alpha%E2%91%A1", @@ -4665,102 +4517,102 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmsupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-direction%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkdirection-both%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-activations%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-activations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-sigmoid%E2%91%A4", @@ -4773,12 +4625,12 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A7", @@ -4788,19 +4640,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operator-activation%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A8", @@ -4959,108 +4811,108 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmcellsupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-bias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-peepholeweight%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-bias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-bias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-peepholeweight%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-activations%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-activations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-sigmoid%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-tanh%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-tanh%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-bias%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-peepholeweight%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operator-activation%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A0", @@ -5122,38 +4974,38 @@ "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-remove", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-remove%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcasting%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-append", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-matmul-output-sizes", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A8", @@ -5230,36 +5082,36 @@ "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-padding-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpadoptions-value%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpadoptions-value%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%93%AA", @@ -5379,69 +5231,69 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpool2doptions%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-contain%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-windowdimensions%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-windowdimensions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-padding%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-padding%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-padding%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-pool2d-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-layout%E2%91%A0", @@ -5452,14 +5304,14 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A0", @@ -5468,18 +5320,18 @@ "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-pooling-op", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-l2pool2d", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-pooling-op%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-maxpool2d", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-pooling-op%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-average", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-l2", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-max", @@ -5551,28 +5403,28 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlprelusupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-prelu%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcasting%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A1", @@ -5742,31 +5594,31 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-contain%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-reduction-output-sizes%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-axes%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A2", @@ -5777,64 +5629,64 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-create-reduction-operation%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsum", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-create-reduction-operation%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsumexp", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-create-reduction-operation%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemax", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-create-reduction-operation%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemean", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-create-reduction-operation%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemin", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-create-reduction-operation%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reduceproduct", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-create-reduction-operation%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesum", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-create-reduction-operation%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesumsquare", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-create-reduction-operation%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A5", @@ -5874,19 +5726,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-relu%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-relu", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A8", @@ -5952,13 +5804,13 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-resample2d%E2%91%A2", "https://www.w3.org/TR/webnn/#mlgraphbuilder-check-resample-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-scales%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%93%AA", @@ -5968,13 +5820,13 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlresample2doptions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A5", @@ -5984,31 +5836,31 @@ "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-resample2d", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-check-resample-options", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-resample-output-sizes", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A4", @@ -6053,29 +5905,29 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A5", @@ -6114,19 +5966,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sigmoid%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sigmoid", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A1", @@ -6181,35 +6033,35 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#issue-b8ab142b", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A2", @@ -6254,22 +6106,22 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A3", @@ -6309,19 +6161,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softplus%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A4", @@ -6361,19 +6213,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softsign%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A5", @@ -6454,31 +6306,31 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitsupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlsplitoptions-axis%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#issue-578f9ca8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A5", @@ -6526,19 +6378,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-tanh%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tanh", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A7", @@ -6587,31 +6439,31 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-transpose%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A8", @@ -6661,19 +6513,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-triangular%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A4%E2%93%AA", @@ -6758,32 +6610,32 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlwheresupportlimits%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-where%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcasting%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcasting%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A5%E2%91%A5", @@ -6856,10 +6708,7 @@ "https://www.w3.org/TR/webnn/#ref-for-sec-ecmascript-language-types-number-type", "https://www.w3.org/TR/webnn/#converttoint", "https://www.w3.org/TR/webnn/#examples", - "https://www.w3.org/TR/webnn/#example-99852ef0", - "https://www.w3.org/TR/webnn/#example-6d499ac7", - "https://www.w3.org/TR/webnn/#example-215c9f06", - "https://www.w3.org/TR/webnn/#example-d3330320", + "https://www.w3.org/TR/webnn/#example-9c6ddbf8", "https://www.w3.org/TR/webnn/#emulation", "https://www.w3.org/TR/webnn/#emulation-squeeze", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape%E2%91%A3", @@ -6870,9 +6719,9 @@ "https://www.w3.org/TR/webnn/#appendices", "https://www.w3.org/TR/webnn/#appendices-mloperanddatatype-arraybufferview-compatibility", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-Float32Array", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A4%E2%93%AA", @@ -6899,12 +6748,10 @@ "https://www.w3.org/TR/webnn/#index", "https://www.w3.org/TR/webnn/#index-defined-here", "https://www.w3.org/TR/webnn/#index-defined-elsewhere", - "https://www.w3.org/TR/webnn/#944206e4", "https://www.w3.org/TR/webnn/#e63ec40a", "https://www.w3.org/TR/webnn/#38d90164", "https://www.w3.org/TR/webnn/#999962ef", "https://www.w3.org/TR/webnn/#a5f015e3", - "https://www.w3.org/TR/webnn/#023f906d", "https://www.w3.org/TR/webnn/#b8308563", "https://www.w3.org/TR/webnn/#be0c27b2", "https://www.w3.org/TR/webnn/#5d7209e9", @@ -6999,14 +6846,10 @@ "https://www.w3.org/TR/webnn/#9cce47fd", "https://www.w3.org/TR/webnn/#4013a022", "https://www.w3.org/TR/webnn/#b4cfa5ce", - "https://www.w3.org/TR/webnn/#69c80471", - "https://www.w3.org/TR/webnn/#208ccd75", "https://www.w3.org/TR/webnn/#5f90bbfb", - "https://www.w3.org/TR/webnn/#f32e046f", "https://www.w3.org/TR/webnn/#11e0b87f", "https://www.w3.org/TR/webnn/#e97a9688", "https://www.w3.org/TR/webnn/#2d6ca7ca", - "https://www.w3.org/TR/webnn/#f3fd9d04", "https://www.w3.org/TR/webnn/#references", "https://www.w3.org/TR/webnn/#normative", "https://www.w3.org/TR/webnn/#biblio-ecmascript", diff --git a/tr/index.json b/tr/index.json index 0e003324d276..7a68af25a187 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2024-12-04T01:35:17.577Z", + "date": "2024-12-05T01:35:09.978Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -717,7 +717,7 @@ "https://aomediacodec.github.io/av1-spec/" ], "crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", - "date": "4 December 2024", + "date": "5 December 2024", "links": "links/av1-spec.json" }, { @@ -10360,11 +10360,11 @@ ], "crawled": "https://www.w3.org/TR/FileAPI/", "crawlCacheInfo": { - "lastModified": "Fri, 22 Nov 2024 17:02:23 GMT" + "lastModified": "Wed, 04 Dec 2024 16:44:56 GMT" }, "generator": "bikeshed", - "date": "22 November 2024", - "revision": "851e00e7364f0a08136756c0d1ec18c6e0fa41ce", + "date": "4 December 2024", + "revision": "77b2086a2ffb613dadd5f76c2edd03822b1cd5cb", "algorithms": "algorithms/FileAPI.json", "links": "links/FileAPI.json", "refs": "refs/FileAPI.json", @@ -20687,11 +20687,11 @@ ], "crawled": "https://www.w3.org/TR/webnn/", "crawlCacheInfo": { - "lastModified": "Thu, 28 Nov 2024 00:06:48 GMT" + "lastModified": "Wed, 04 Dec 2024 05:34:47 GMT" }, "generator": "bikeshed", - "date": "28 November 2024", - "revision": "bcc5dc2daac0127f332ef082155784176cf734ea", + "date": "4 December 2024", + "revision": "df555e1b0a6beb2deaf4b98e2642492ff00e98f4", "algorithms": "algorithms/webnn.json", "links": "links/webnn.json", "refs": "refs/webnn.json", diff --git a/tr/links/FileAPI.json b/tr/links/FileAPI.json index 1f9573caa52d..e032517271cf 100644 --- a/tr/links/FileAPI.json +++ b/tr/links/FileAPI.json @@ -57,6 +57,7 @@ "https://lists.w3.org/Archives/Public/public-webapi/": {}, "https://lists.w3.org/Archives/Public/public-webapps/": {}, "https://mimesniff.spec.whatwg.org/": {}, + "https://storage.spec.whatwg.org/": {}, "https://streams.spec.whatwg.org/": {}, "https://tc39.es/ecma262/multipage/": {}, "https://url.spec.whatwg.org/": {}, @@ -67,6 +68,7 @@ "https://www.w3.org/2004/01/pp-impl/114929/status": {}, "https://www.w3.org/TR/": {}, "https://www.w3.org/TR/media-source-2/": {}, + "https://www.w3.org/TR/service-workers/": {}, "https://www.w3.org/TR/workers/": {}, "https://www.w3.org/groups/wg/webapps": {}, "https://www.w3.org/policies/patent-policy/20200915/": { @@ -225,6 +227,12 @@ "parameters" ] }, + "https://storage.spec.whatwg.org/": { + "anchors": [ + "obtain-a-storage-key-for-non-storage-purposes", + "storage-key-equal" + ] + }, "https://streams.spec.whatwg.org/": { "anchors": [ "readablestream", @@ -246,8 +254,7 @@ "concept-url-parser", "empty-host", "concept-url-path", - "concept-url-serializer", - "concept-url-origin" + "concept-url-serializer" ] }, "https://webidl.spec.whatwg.org/": { @@ -279,6 +286,11 @@ "dfn-throw" ] }, + "https://www.w3.org/TR/service-workers/": { + "anchors": [ + "service-worker-registration-storage-key" + ] + }, "https://xhr.spec.whatwg.org/": { "anchors": [ "xmlhttprequest", diff --git a/tr/links/webnn.json b/tr/links/webnn.json index f714fdf0f8f6..10767ff31675 100644 --- a/tr/links/webnn.json +++ b/tr/links/webnn.json @@ -55,11 +55,6 @@ "https://github.com/ondyari/FaceForensics": {}, "https://github.com/tensorflow/nmt": {}, "https://github.com/webmachinelearning/webmachinelearning-ethics": {}, - "https://github.com/webmachinelearning/webnn/blob/main/mltensor-explainer.md": { - "anchors": [ - "compute-vs-dispatch" - ] - }, "https://github.com/webmachinelearning/webnn/blob/master/explainer.md": {}, "https://github.com/webmachinelearning/webnn/blob/master/op_compatibility/first_wave_models.md": {}, "https://github.com/webmachinelearning/webnn/issues": {}, @@ -71,7 +66,6 @@ "https://github.com/webmachinelearning/webnn/issues/529": {}, "https://github.com/webmachinelearning/webnn/issues/623": {}, "https://github.com/webmachinelearning/webnn/issues/778": {}, - "https://github.com/webmachinelearning/webnn/issues/791": {}, "https://github.com/webmachinelearning/webnn/issues/85": {}, "https://github.com/whatwg/webidl/issues/1388": {}, "https://github.com/xiph/rnnoise": {}, @@ -179,13 +173,13 @@ "map-exists", "map-size", "map-iterate", - "assert", "list", "map-getting-the-values", "list-extend", "list-item", "list-iterate", "byte-sequence", + "assert", "byte-sequence-length", "list-clone", "list-size", @@ -212,11 +206,6 @@ "sec-ecmascript-language-types-number-type" ] }, - "https://tc39.es/ecma262/multipage/abstract-operations.html": { - "anchors": [ - "sec-construct" - ] - }, "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html": { "anchors": [ "realm" @@ -245,12 +234,8 @@ "AllowSharedBufferSource", "buffersource-byte-length", "idl-SharedArrayBuffer", - "exceptiondef-typeerror", - "buffersource-transferable", - "arraybuffer-transfer", - "buffersource-underlying-buffer", "dfn-throw", - "arraybufferview-write", + "exceptiondef-typeerror", "unknownerror", "arraybuffer-create", "buffersource-detached", diff --git a/tr/refs/FileAPI.json b/tr/refs/FileAPI.json index e3a32e8d001b..face338e66f8 100644 --- a/tr/refs/FileAPI.json +++ b/tr/refs/FileAPI.json @@ -49,6 +49,14 @@ "name": "RFC4122", "url": "https://www.rfc-editor.org/rfc/rfc9562" }, + { + "name": "SERVICE-WORKERS", + "url": "https://www.w3.org/TR/service-workers/" + }, + { + "name": "STORAGE", + "url": "https://storage.spec.whatwg.org/" + }, { "name": "STREAMS", "url": "https://streams.spec.whatwg.org/"