From d0c223ca378f0b314b613d5b35e53a8043d58a42 Mon Sep 17 00:00:00 2001
From: reffy-bot <>
Date: Thu, 28 Nov 2024 01:35:43 +0000
Subject: [PATCH] Update of TR report from new reffy run
Using reffy commit 17.2.10.
---
tr/algorithms/webmidi.json | 14 +-
tr/algorithms/webnn.json | 1339 ++++++++++-------
tr/dfns/webnn.json | 1831 ++++++++++++++++--------
tr/headings/webnn.json | 192 ++-
tr/idl/webnn.idl | 28 +-
tr/ids/WGSL.json | 10 +-
tr/ids/webmidi.json | 5 +-
tr/ids/webnn.json | 2763 ++++++++++++++++++++----------------
tr/index.json | 40 +-
tr/links/webmidi.json | 32 +-
tr/links/webnn.json | 26 +-
tr/refs/webmidi.json | 2 +-
12 files changed, 3872 insertions(+), 2410 deletions(-)
diff --git a/tr/algorithms/webmidi.json b/tr/algorithms/webmidi.json
index 566a7924905e..e81d2e3ef0de 100644
--- a/tr/algorithms/webmidi.json
+++ b/tr/algorithms/webmidi.json
@@ -17,10 +17,10 @@
"html": "
\n Return promise and run the following steps\n asynchronously.\n
"
},
{
- "html": "\n Let document be the calling context's\n Document.\n
"
+ "html": "\n Let document be the calling context's\n Document.\n
"
},
{
- "html": "\n If document is not allowed to use the\n policy-controlled feature named midi, jump to\n the step labeled failure below.\n
"
+ "html": "\n If document is not allowed to use the\n policy-controlled feature named midi, jump to\n the step labeled failure below.\n
"
},
{
"html": "\n Optionally, e.g. based on a previously-established user\n preference, for security reasons, or due to platform\n limitations, jump to the step labeled failure below.\n
"
@@ -41,7 +41,7 @@
"html": "\n Terminate these steps.\n
"
},
{
- "html": "\n failure: Let error be a new\n DOMException
. This exception's .name should be\n \"NotAllowedError
\" if the user or their security settings\n denied the application from creating a MIDIAccess instance\n with the requested options, or if the error is the result of\n document not being allowed to use the feature,\n \"AbortError
\" if the page is going to be closed for a user\n navigation, \"InvalidStateError
\" if the underlying systems\n raise any errors, or otherwise it should be\n \"NotSupportedError
\".\n
"
+ "html": "\n failure: Let error be a new\n DOMException
. This exception's .name should be\n \"NotAllowedError
\" if the user or their security settings\n denied the application from creating a MIDIAccess instance\n with the requested options, or if the error is the result of\n document not being allowed to use the feature,\n \"AbortError
\" if the page is going to be closed for a user\n navigation, \"InvalidStateError
\" if the underlying systems\n raise any errors, or otherwise it should be\n \"NotSupportedError
\".\n
"
},
{
"html": "\n Call resolver's reject(value)
method\n with error as value argument.\n
"
@@ -58,7 +58,7 @@
"html": "Let port be the MIDIPort
corresponding to the\n newly-available, or the existing port."
},
{
- "html": "Fire an event named \"statechange\" at the MIDIAccess
,\n using MIDIConnectionEvent
with port
set to port."
+ "html": "Fire an event named \"statechange\" at the MIDIAccess
,\n using MIDIConnectionEvent
with port
set to port."
}
]
},
@@ -102,7 +102,7 @@
"html": "\n Terminate these steps.\n
"
},
{
- "html": "\n failure: Let error be a new\n DOMException
. This exception's .name should be\n \"InvalidAccessError\"
if the port is unavailable.\n
"
+ "html": "\n failure: Let error be a new\n DOMException
. This exception's .name should be\n \"InvalidAccessError\"
if the port is unavailable.\n
"
},
{
"html": "\n Call resolver's reject(value)
method\n with error as value argument.\n
"
@@ -152,7 +152,7 @@
"html": "\n Let port be the MIDIPort
.\n
"
},
{
- "html": "\n Fire an event named statechange at the MIDIPort
, and\n statechange at the\n MIDIAccess
, using MIDIConnectionEvent
with the port
attribute set\n to port.\n
"
+ "html": "\n Fire an event named statechange at the MIDIPort
, and\n statechange at the\n MIDIAccess
, using MIDIConnectionEvent
with the port
attribute set\n to port.\n
"
}
]
},
@@ -167,7 +167,7 @@
"html": "\n If the MIDIAccess
did not enable System Exclusive\n access, and the message is a System Exclusive message, abort\n this process.\n
"
},
{
- "html": "\n Fire an event named \"midimessage\" at port, using\n MIDIMessageEvent
with the timeStamp
attribute set\n to the time the message was received by the system, and with the\n data
attribute set to a Uint8Array
of\n MIDI data bytes representing a single MIDI message.\n
"
+ "html": "\n Fire an event named \"midimessage\" at port, using\n MIDIMessageEvent
with the timeStamp
attribute set\n to the time the message was received by the system, and with the\n data
attribute set to a Uint8Array
of\n MIDI data bytes representing a single MIDI message.\n
"
}
]
}
diff --git a/tr/algorithms/webnn.json b/tr/algorithms/webnn.json
index 5ceaf6e17e4e..d8d03ffc7592 100644
--- a/tr/algorithms/webnn.json
+++ b/tr/algorithms/webnn.json
@@ -124,10 +124,55 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If bufferView’s element type does not match to descriptor.dataType
according to this table, return false.
"
+ "html": "If bufferSource’s byte length is not equal to descriptor’s byte length return false.
"
},
{
- "html": "If bufferView.[[ByteLength]] is not equal to descriptor’s byte length, return false.
"
+ "html": "Switch on the type of bufferSource:",
+ "rationale": ".switch",
+ "steps": [
+ {
+ "operation": "switch",
+ "steps": [
+ {
+ "case": "ArrayBuffer",
+ "html": "Return true.
"
+ },
+ {
+ "case": "SharedArrayBuffer",
+ "html": "Return true.
"
+ },
+ {
+ "case": "ArrayBufferView",
+ "html": "If bufferSource’s element type matches descriptor’s dataType
according to this table return true, otherwise return false.
"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "validate tensors with descriptors",
+ "href": "https://www.w3.org/TR/webnn/#validate-tensors-with-descriptors",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "If namedTensors’s size is not equal to namedDescriptors’s size, then return false.
"
+ },
+ {
+ "html": "For each name → tensor of namedTensors:",
+ "rationale": "if",
+ "steps": [
+ {
+ "html": "If namedDescriptors[name] does not exist, then return false.
"
+ },
+ {
+ "html": "If tensor.[[descriptor]]
is not equal to namedDescriptors[name], then return false.
"
+ }
+ ]
+ },
+ {
+ "html": "Return true.
"
}
]
},
@@ -140,7 +185,7 @@
"html": "Let inputResources be the input resources of graph.[[implementation]]
.
"
},
{
- "html": "For each name → inputValue of inputs:",
+ "html": "For each name → inputValue of inputs:",
"rationale": "let",
"steps": [
{
@@ -167,7 +212,7 @@
]
},
{
- "html": "For each name → outputValue of outputs:",
+ "html": "For each name → outputValue of outputs:",
"rationale": "issue",
"steps": [
{
@@ -197,7 +242,7 @@
]
},
{
- "html": "Return undefined
.
"
+ "html": "Return undefined
.
"
}
]
},
@@ -207,7 +252,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "For each name → view of views:",
+ "html": "For each name → view of views:",
"rationale": "if",
"steps": [
{
@@ -219,7 +264,7 @@
"html": "Let transferredViews be a new MLNamedArrayBufferViews
.
"
},
{
- "html": "For each name → view of views:",
+ "html": "For each name → view of views:",
"rationale": "let",
"steps": [
{
@@ -232,7 +277,7 @@
"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 elementsNumber be the result of view’s byte length / view’s element size.
"
},
{
"html": "Let transferredView be Construct(constructor, transferredBuffer, view.[[ByteOffset]], elementsNumber).
"
@@ -265,11 +310,11 @@
"html": "If graph.[[context]]
.[[contextType]]
is not \"default\", then return a new promise rejected with an \"OperationError
\" DOMException
.
"
},
{
- "html": "For each name → descriptor of graph.[[inputDescriptors]]
:",
+ "html": "For each name → descriptor of graph.[[inputDescriptors]]
:",
"rationale": "if",
"steps": [
{
- "html": "If inputs[name] does not exist, then return a new promise rejected with a TypeError
.
"
+ "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
.
"
@@ -277,11 +322,11 @@
]
},
{
- "html": "For each name → resource of outputs:",
+ "html": "For each name → resource of outputs:",
"rationale": "if",
"steps": [
{
- "html": "If graph.[[outputDescriptors]]
[name] does not exist, then return a new promise rejected with a TypeError
.
"
+ "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
.
"
@@ -323,13 +368,225 @@
}
]
},
+ {
+ "name": "MLContext/dispatch(graph, inputs, outputs)",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "Let allTensors be a list of MLTensor
s consisting of inputs’s values extended by outputs’s values.
"
+ },
+ {
+ "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.[[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 outputs and graph.[[outputDescriptors]]
returns false, then throw a TypeError
.
"
+ },
+ {
+ "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": "Return undefined
.
"
+ }
+ ]
+ },
+ {
+ "name": "MLContext/createTensor(descriptor)",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-createtensor",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "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 promise be a new promise.
"
+ },
+ {
+ "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": "Otherwise, queue an ML task with global to resolve promise with tensor.
"
+ }
+ ]
+ },
+ {
+ "html": "Return promise.
"
+ }
+ ]
+ },
+ {
+ "name": "MLContext/readTensor(tensor)",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "Let global be this's relevant global object.
"
+ },
+ {
+ "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.[[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": "Let promise be a new promise.
"
+ },
+ {
+ "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": "Otherwise, queue an ML task with global to create an ArrayBuffer
result given bytes and realm and then resolve promise with result.
"
+ }
+ ]
+ },
+ {
+ "html": "Return promise.
"
+ }
+ ]
+ },
+ {
+ "name": "MLContext/readTensor(tensor, outputData)",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor-tensor-outputdata",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "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.[[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 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": "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": "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": "Write bytes to outputData.
"
+ },
+ {
+ "html": "Resolve promise with undefined
.
"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "html": "Return promise.
"
+ }
+ ]
+ },
+ {
+ "name": "MLContext/writeTensor(tensor, inputData)",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-writetensor",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "If tensor.[[context]]
is not this, 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 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": "Enqueue the following steps to tensor.[[context]]
.[[timeline]]
:",
+ "rationale": "copy",
+ "steps": [
+ {
+ "html": "Copy bytes to tensor.[[data]]
.
"
+ }
+ ]
+ },
+ {
+ "html": "Return undefined
.
"
+ }
+ ]
+ },
{
"name": "create an MLOperandDescriptor",
"href": "https://www.w3.org/TR/webnn/#create-an-mloperanddescriptor",
"rationale": ".algorithm",
"steps": [
{
- "html": "Let descriptor be a new MLOperandDescriptor
.
"
+ "html": "Let descriptor be a new MLOperandDescriptor
.
"
},
{
"html": "Set descriptor.dataType
to dataType.
"
@@ -351,7 +608,7 @@
"html": "Let elementLength be 1.
"
},
{
- "html": "For each dimension of desc.shape
:",
+ "html": "For each dimension of desc.shape
:",
"rationale": "set",
"steps": [
{
@@ -379,7 +636,7 @@
"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.
"
@@ -420,26 +677,70 @@
"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.
"
}
]
},
+ {
+ "name": "create an MLTensor",
+ "href": "https://www.w3.org/TR/webnn/#create-an-mltensor",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "Let tensor be a new MLTensor
.
"
+ },
+ {
+ "html": "Set tensor.[[context]]
to context.
"
+ },
+ {
+ "html": "Set tensor.[[descriptor]]
to descriptor.
"
+ },
+ {
+ "html": "Set tensor.[[isDestroyed]]
to false.
"
+ },
+ {
+ "html": "Return tensor.
"
+ }
+ ]
+ },
+ {
+ "name": "MLTensor/destroy()",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensor-destroy",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "Set this.[[isDestroyed]]
to true.
"
+ },
+ {
+ "html": "Enqueue the following steps to this.[[context]]
.[[timeline]]
:",
+ "rationale": "release",
+ "steps": [
+ {
+ "html": "Release this.[[data]]
.
"
+ }
+ ]
+ },
+ {
+ "html": "Return undefined
.
"
+ }
+ ]
+ },
{
"name": "MLGraphBuilder/MLGraphBuilder(context)",
"href": "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mlgraphbuilder",
"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.
"
}
]
},
@@ -449,29 +750,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 MLOperand
s in this's graph's inputs have a [[name]]
equal to name, then throw a TypeError
.
"
+ "html": "If any MLOperand
s 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.
"
}
]
},
@@ -481,31 +782,31 @@
]
},
{
- "name": "MLGraphBuilder/constant(descriptor, bufferView)",
+ "name": "MLGraphBuilder/constant(descriptor, buffer)",
"href": "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant",
"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 bufferView 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 bufferView.
"
+ "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.
"
}
]
},
@@ -520,7 +821,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.
"
@@ -533,10 +834,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.
"
}
]
},
@@ -551,23 +852,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 name → operand of outputs:",
+ "html": "For each name → operand 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
.
"
}
]
},
@@ -581,7 +882,7 @@
"html": "Let inputs be a new empty set.
"
},
{
- "html": "Let queue be a new queue containing outputs’s values.
"
+ "html": "Let queue be a new queue containing outputs’s values.
"
},
{
"html": "While queue is not empty:",
@@ -597,10 +898,10 @@
"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:",
+ "html": "For each input of operand.[[operator]]
's inputs:",
"rationale": "enqueue",
"steps": [
{
@@ -611,61 +912,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:",
+ "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 name → operand of outputs:",
+ "html": "For each name → operand 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:",
"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.
"
@@ -678,19 +979,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.
"
@@ -703,7 +1004,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.
"
@@ -732,7 +1033,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.
"
}
]
},
@@ -752,7 +1053,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.
"
}
]
},
@@ -767,53 +1068,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
.
"
}
]
},
@@ -825,7 +1126,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.
"
@@ -834,10 +1135,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.
"
@@ -855,10 +1156,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:",
@@ -892,10 +1193,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.
"
@@ -910,7 +1211,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:",
@@ -944,58 +1245,58 @@
"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:",
+ "html": "For each index in the range 1 to inputs’s size, exclusive:",
"rationale": "let",
"steps": [
{
"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:",
+ "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.
"
}
]
}
@@ -1008,7 +1309,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.
"
@@ -1067,49 +1368,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:",
@@ -1168,20 +1469,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
.
"
}
]
},
@@ -1208,7 +1509,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.
"
@@ -1220,7 +1521,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.
"
@@ -1232,7 +1533,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.
"
@@ -1282,59 +1583,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
.
"
}
]
},
@@ -1343,12 +1644,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:",
@@ -1403,25 +1704,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
.
"
@@ -1446,7 +1747,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.
"
@@ -1458,7 +1759,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.
"
@@ -1470,7 +1771,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.
"
@@ -1488,23 +1789,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
.
"
}
]
},
@@ -1516,7 +1817,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.
"
@@ -1548,7 +1849,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.
"
}
]
},
@@ -1568,7 +1869,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.
"
}
]
},
@@ -1588,7 +1889,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.
"
}
]
},
@@ -1608,7 +1909,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.
"
}
]
},
@@ -1628,7 +1929,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.
"
}
]
},
@@ -1648,7 +1949,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.
"
}
]
},
@@ -1668,7 +1969,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.
"
}
]
},
@@ -1683,20 +1984,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.
"
@@ -1708,13 +2009,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
.
"
}
]
},
@@ -1726,7 +2027,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.
"
@@ -1758,7 +2059,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.
"
}
]
},
@@ -1778,7 +2079,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.
"
}
]
},
@@ -1798,7 +2099,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.
"
}
]
},
@@ -1818,7 +2119,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.
"
}
]
},
@@ -1838,7 +2139,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.
"
}
]
},
@@ -1858,7 +2159,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.
"
}
]
},
@@ -1873,16 +2174,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:",
@@ -1921,7 +2222,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.
"
}
]
},
@@ -1941,7 +2242,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.
"
}
]
},
@@ -1961,7 +2262,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.
"
}
]
},
@@ -1981,7 +2282,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.
"
}
]
},
@@ -2001,7 +2302,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.
"
}
]
},
@@ -2021,7 +2322,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.
"
}
]
},
@@ -2041,7 +2342,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.
"
}
]
},
@@ -2061,7 +2362,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.
"
}
]
},
@@ -2081,7 +2382,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.
"
}
]
},
@@ -2101,7 +2402,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.
"
}
]
},
@@ -2121,7 +2422,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.
"
}
]
},
@@ -2141,7 +2442,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.
"
}
]
},
@@ -2161,7 +2462,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.
"
}
]
},
@@ -2176,13 +2477,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.
"
@@ -2219,17 +2520,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
.
"
}
]
},
@@ -2241,7 +2542,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.
"
@@ -2268,13 +2569,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.
"
@@ -2286,7 +2587,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.
"
@@ -2298,7 +2599,7 @@
"html": "Let shapeOutput be an empty list.
"
},
{
- "html": "For each size of shapeInput:",
+ "html": "For each size of shapeInput:",
"rationale": "if",
"steps": [
{
@@ -2319,7 +2620,7 @@
"html": "Let dimCount be zero.
"
},
{
- "html": "For each size of shapeIndices:",
+ "html": "For each size of shapeIndices:",
"rationale": "set",
"steps": [
{
@@ -2337,7 +2638,7 @@
"html": "Let dimCount be zero.
"
},
{
- "html": "For each size of shapeInput:",
+ "html": "For each size of shapeInput:",
"rationale": "if",
"steps": [
{
@@ -2386,13 +2687,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:",
@@ -2426,16 +2727,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.
"
@@ -2456,17 +2757,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
.
"
}
]
},
@@ -2478,7 +2779,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.
"
@@ -2490,7 +2791,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.
"
@@ -2508,19 +2809,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].
"
@@ -2532,56 +2833,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
.
"
@@ -2623,17 +2924,17 @@
"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 ».
"
+ "html": "Let output be the list « output0, output1 ».
"
},
{
"html": "Set output0.[[operator]]
and output1.[[operator]]
to operator.
"
@@ -2645,7 +2946,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let output be the list « output0 ».
"
+ "html": "Let output be the list « output0 ».
"
},
{
"html": "Set output0.[[operator]]
to operator.
"
@@ -2656,13 +2957,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.
"
@@ -2683,16 +2984,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].
"
@@ -2701,47 +3002,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
.
"
@@ -2765,7 +3066,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.
"
@@ -2777,10 +3078,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.
"
@@ -2801,13 +3102,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.
"
@@ -2847,13 +3148,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:",
@@ -2887,16 +3188,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.
"
@@ -2905,26 +3206,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
.
"
}
]
},
@@ -2945,10 +3246,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.
"
@@ -2966,16 +3267,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.
"
@@ -2984,57 +3285,57 @@
"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
.
"
}
]
},
{
- "html": "For each index in the range 0 to options.axes
's size, exclusive:",
+ "html": "For each index in the range 0 to options.axes
's size, exclusive:",
"rationale": "let",
"steps": [
{
"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
.
"
}
]
}
@@ -3057,10 +3358,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.
"
@@ -3078,13 +3379,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.
"
@@ -3121,13 +3422,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.
"
@@ -3167,22 +3468,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].
"
@@ -3191,80 +3492,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
.
"
@@ -3306,20 +3607,20 @@
"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 ».
"
+ "html": "Let output be the list « output0, output1, output2 ».
"
},
{
"html": "Set output0.[[operator]]
, output1.[[operator]]
and output2.[[operator]]
to operator.
"
@@ -3331,7 +3632,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let output be the list « output0, output1 ».
"
+ "html": "Let output be the list « output0, output1 ».
"
},
{
"html": "Set output0.[[operator]]
and output1.[[operator]]
to operator.
"
@@ -3342,19 +3643,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.
"
@@ -3375,16 +3676,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].
"
@@ -3393,62 +3694,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
.
"
@@ -3465,26 +3766,26 @@
]
},
{
- "html": "Let desc be a new MLOperandDescriptor
.
"
+ "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.
"
+ "html": "Set desc.dataType
to input’s dataType.
"
},
{
"html": "Make graph connections:",
"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 ».
"
+ "html": "Let output be the list « output0, output1 ».
"
},
{
"html": "Let operator be an operator for the \"lstmCell\" operation, given weight, recurrentWeight, hiddenState, cellState, hiddenSize and options.
"
@@ -3496,13 +3797,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.
"
@@ -3535,7 +3836,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].
"
@@ -3550,7 +3851,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.
"
@@ -3559,7 +3860,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.
"
@@ -3575,20 +3876,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.
"
}
]
},
@@ -3600,7 +3901,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.
"
@@ -3630,7 +3931,7 @@
"html": "Let shape be a copy of input’s shape.
"
},
{
- "html": "For each index in the range 0 to shape’s rank, exclusive:",
+ "html": "For each index in the range 0 to shape’s rank, exclusive:",
"rationale": "add",
"steps": [
{
@@ -3652,16 +3953,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]]
.
"
@@ -3670,20 +3971,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.
"
@@ -3807,80 +4108,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.
"
@@ -3912,7 +4213,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.
"
}
]
},
@@ -3932,7 +4233,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.
"
}
]
},
@@ -3952,7 +4253,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.
"
}
]
},
@@ -3967,20 +4268,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
.
"
}
]
},
@@ -3992,7 +4293,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.
"
@@ -4035,7 +4336,7 @@
"html": "Let outputShape be a clone of inputShape.
"
},
{
- "html": "For each axis of axes:",
+ "html": "For each axis of axes:",
"rationale": "set",
"steps": [
{
@@ -4050,10 +4351,10 @@
"rationale": "let",
"steps": [
{
- "html": "Let outputShape be an empty list.
"
+ "html": "Let outputShape be an empty list.
"
},
{
- "html": "For each index in the range 0 to inputRank, exclusive:",
+ "html": "For each index in the range 0 to inputRank, exclusive:",
"rationale": "if",
"steps": [
{
@@ -4074,19 +4375,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.
"
@@ -4096,7 +4397,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.
"
@@ -4128,7 +4429,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.
"
}
]
},
@@ -4148,7 +4449,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.
"
}
]
},
@@ -4168,7 +4469,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.
"
}
]
},
@@ -4188,7 +4489,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.
"
}
]
},
@@ -4208,7 +4509,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.
"
}
]
},
@@ -4228,7 +4529,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.
"
}
]
},
@@ -4248,7 +4549,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,7 +4569,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.
"
}
]
},
@@ -4288,7 +4589,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.
"
}
]
},
@@ -4308,7 +4609,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.
"
}
]
},
@@ -4323,13 +4624,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:",
@@ -4363,16 +4664,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.
"
@@ -4391,14 +4692,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:",
+ "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]).
"
@@ -4412,7 +4713,7 @@
]
},
{
- "html": "Return the result of creating an MLOperandDescriptor given inputDescriptor.dataType
and outputShape.
"
+ "html": "Return the result of creating an MLOperandDescriptor given inputDescriptor.dataType
and outputShape.
"
}
]
},
@@ -4422,29 +4723,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.
"
@@ -4471,38 +4772,38 @@
"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
.
"
+ "html": "Let outputShape be an empty array of unsigned long
.
"
},
{
- "html": "If newShape’s size is 0, set outputShape to an empty list for a scalar.
"
+ "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.
"
@@ -4529,13 +4830,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:",
@@ -4569,29 +4870,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:",
+ "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
.
"
}
]
},
@@ -4627,16 +4928,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:",
@@ -4670,13 +4971,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:",
@@ -4710,13 +5011,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:",
@@ -4750,23 +5051,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
:",
+ "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.
"
@@ -4774,14 +5075,14 @@
]
},
{
- "html": "If splits is a sequence<unsigned long
>:",
+ "html": "If splits is a sequence<unsigned long
>:",
"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.
"
@@ -4796,17 +5097,17 @@
"html": "Let operator be an operator for the \"split\" operation, given splits and options.
"
},
{
- "html": "Let outputs be a new list.
"
+ "html": "Let outputs be a new list.
"
},
{
- "html": "For each index in the range 0 to splitCount, exclusive:",
+ "html": "For each index in the range 0 to splitCount, exclusive:",
"rationale": "let",
"steps": [
{
"html": "Let operand be the result of copying an MLOperand given input.
"
},
{
- "html": "If splits is an unsigned long
, then let newDimension be operand’s shape[axis] / splits.
"
+ "html": "If splits is an unsigned long
, then let newDimension be operand’s shape[axis] / splits.
"
},
{
"html": "Otherwise, let newDimension be splits[index].
"
@@ -4841,13 +5142,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:",
@@ -4881,26 +5182,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
.
"
}
]
},
@@ -4936,13 +5237,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:",
@@ -4976,20 +5277,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
.
"
}
]
},
@@ -4998,7 +5299,7 @@
"rationale": "if",
"steps": [
{
- "html": "If that returns failure, then throw a TypeError
.
"
+ "html": "If that returns failure, then throw a TypeError
.
"
}
]
},
@@ -5010,7 +5311,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.
"
@@ -5052,10 +5353,10 @@
"html": "While paddedShapeFrom’s size is less than sizeTo, prepend 1 to paddedShapeFrom.
"
},
{
- "html": "Let outputShape be a new list.
"
+ "html": "Let outputShape be a new list.
"
},
{
- "html": "For each index in the range 0 to sizeTo, exclusive:",
+ "html": "For each index in the range 0 to sizeTo, exclusive:",
"rationale": "let",
"steps": [
{
@@ -5104,10 +5405,10 @@
"html": "While paddedB’s size is less than outputSize, prepend 1 to paddedB.
"
},
{
- "html": "Let outputShape be a new list.
"
+ "html": "Let outputShape be a new list.
"
},
{
- "html": "For each index in the range 0 to outputSize, exclusive:",
+ "html": "For each index in the range 0 to outputSize, exclusive:",
"rationale": "let",
"steps": [
{
diff --git a/tr/dfns/webnn.json b/tr/dfns/webnn.json
index 775d7cb8b234..16502965483a 100644
--- a/tr/dfns/webnn.json
+++ b/tr/dfns/webnn.json
@@ -662,6 +662,25 @@
},
"definedIn": "pre"
},
+ {
+ "id": "typedefdef-mlnamedtensors",
+ "href": "https://www.w3.org/TR/webnn/#typedefdef-mlnamedtensors",
+ "linkingText": [
+ "MLNamedTensors"
+ ],
+ "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": "dictdef-mlcomputeresult",
"href": "https://www.w3.org/TR/webnn/#dictdef-mlcomputeresult",
@@ -784,6 +803,27 @@
},
"definedIn": "dt"
},
+ {
+ "id": "dom-mlcontext-timeline-slot",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-timeline-slot",
+ "linkingText": [
+ "[[timeline]]"
+ ],
+ "localLinkingText": [],
+ "type": "attribute",
+ "for": [
+ "MLContext"
+ ],
+ "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": "context-type",
"href": "https://www.w3.org/TR/webnn/#context-type",
@@ -906,6 +946,25 @@
},
"definedIn": "prose"
},
+ {
+ "id": "validate-tensors-with-descriptors",
+ "href": "https://www.w3.org/TR/webnn/#validate-tensors-with-descriptors",
+ "linkingText": [
+ "validate tensors with descriptors"
+ ],
+ "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": "execute-graph",
"href": "https://www.w3.org/TR/webnn/#execute-graph",
@@ -1030,6 +1089,300 @@
},
"definedIn": "prose"
},
+ {
+ "id": "dom-mlcontext-dispatch-graph-inputs-outputs-graph",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch-graph-inputs-outputs-graph",
+ "linkingText": [
+ "graph"
+ ],
+ "localLinkingText": [],
+ "type": "argument",
+ "for": [
+ "MLContext/dispatch(graph, inputs, outputs)"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-dispatch",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch",
+ "title": "dispatch()",
+ "number": "7.3.3"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-dispatch-graph-inputs-outputs-inputs",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch-graph-inputs-outputs-inputs",
+ "linkingText": [
+ "inputs"
+ ],
+ "localLinkingText": [],
+ "type": "argument",
+ "for": [
+ "MLContext/dispatch(graph, inputs, outputs)"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-dispatch",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch",
+ "title": "dispatch()",
+ "number": "7.3.3"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-dispatch-graph-inputs-outputs-outputs",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch-graph-inputs-outputs-outputs",
+ "linkingText": [
+ "outputs"
+ ],
+ "localLinkingText": [],
+ "type": "argument",
+ "for": [
+ "MLContext/dispatch(graph, inputs, outputs)"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-dispatch",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch",
+ "title": "dispatch()",
+ "number": "7.3.3"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-dispatch",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-dispatch",
+ "linkingText": [
+ "dispatch(graph, inputs, outputs)"
+ ],
+ "localLinkingText": [],
+ "type": "method",
+ "for": [
+ "MLContext"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-dispatch",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-dispatch",
+ "title": "dispatch()",
+ "number": "7.3.3"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-createtensor-descriptor-descriptor",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-createtensor-descriptor-descriptor",
+ "linkingText": [
+ "descriptor"
+ ],
+ "localLinkingText": [],
+ "type": "argument",
+ "for": [
+ "MLContext/createTensor(descriptor)"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-createtensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-createtensor",
+ "title": "createTensor()",
+ "number": "7.3.4"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-createtensor",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-createtensor",
+ "linkingText": [
+ "createTensor(descriptor)"
+ ],
+ "localLinkingText": [],
+ "type": "method",
+ "for": [
+ "MLContext"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-createtensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-createtensor",
+ "title": "createTensor()",
+ "number": "7.3.4"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-readtensor-tensor-tensor",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor-tensor-tensor",
+ "linkingText": [
+ "tensor"
+ ],
+ "localLinkingText": [],
+ "type": "argument",
+ "for": [
+ "MLContext/readTensor(tensor)"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-readtensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor",
+ "title": "readTensor(tensor)",
+ "number": "7.3.5"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-readtensor",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor",
+ "linkingText": [
+ "readTensor(tensor)"
+ ],
+ "localLinkingText": [],
+ "type": "method",
+ "for": [
+ "MLContext"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-readtensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor",
+ "title": "readTensor(tensor)",
+ "number": "7.3.5"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-readtensor-tensor-outputdata-tensor",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor-tensor-outputdata-tensor",
+ "linkingText": [
+ "tensor"
+ ],
+ "localLinkingText": [],
+ "type": "argument",
+ "for": [
+ "MLContext/readTensor(tensor, outputData)"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-readtensor-byob",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor-byob",
+ "title": "readTensor(tensor, outputData)",
+ "number": "7.3.6"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-readtensor-tensor-outputdata-outputdata",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor-tensor-outputdata-outputdata",
+ "linkingText": [
+ "outputData"
+ ],
+ "localLinkingText": [],
+ "type": "argument",
+ "for": [
+ "MLContext/readTensor(tensor, outputData)"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-readtensor-byob",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor-byob",
+ "title": "readTensor(tensor, outputData)",
+ "number": "7.3.6"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-readtensor-tensor-outputdata",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-readtensor-tensor-outputdata",
+ "linkingText": [
+ "readTensor(tensor, outputData)"
+ ],
+ "localLinkingText": [],
+ "type": "method",
+ "for": [
+ "MLContext"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-readtensor-byob",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor-byob",
+ "title": "readTensor(tensor, outputData)",
+ "number": "7.3.6"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-writetensor-tensor-inputdata-tensor",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-writetensor-tensor-inputdata-tensor",
+ "linkingText": [
+ "tensor"
+ ],
+ "localLinkingText": [],
+ "type": "argument",
+ "for": [
+ "MLContext/writeTensor(tensor, inputData)"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-writetensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-writetensor",
+ "title": "writeTensor()",
+ "number": "7.3.7"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-writetensor-tensor-inputdata-inputdata",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-writetensor-tensor-inputdata-inputdata",
+ "linkingText": [
+ "inputData"
+ ],
+ "localLinkingText": [],
+ "type": "argument",
+ "for": [
+ "MLContext/writeTensor(tensor, inputData)"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-writetensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-writetensor",
+ "title": "writeTensor()",
+ "number": "7.3.7"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mlcontext-writetensor",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlcontext-writetensor",
+ "linkingText": [
+ "writeTensor(tensor, inputData)"
+ ],
+ "localLinkingText": [],
+ "type": "method",
+ "for": [
+ "MLContext"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mlcontext-writetensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-writetensor",
+ "title": "writeTensor()",
+ "number": "7.3.7"
+ },
+ "definedIn": "prose"
+ },
{
"id": "dictdef-mlopsupportlimits",
"href": "https://www.w3.org/TR/webnn/#dictdef-mlopsupportlimits",
@@ -1045,7 +1398,7 @@
"id": "api-mlcontext-opsupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary",
"title": "MLOpSupportLimits dictionary",
- "number": "7.3.3.1"
+ "number": "7.3.8.1"
},
"definedIn": "pre"
},
@@ -1066,7 +1419,7 @@
"id": "api-mlcontext-opsupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary",
"title": "MLOpSupportLimits dictionary",
- "number": "7.3.3.1"
+ "number": "7.3.8.1"
},
"definedIn": "dt"
},
@@ -1087,7 +1440,7 @@
"id": "api-mlcontext-opsupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary",
"title": "MLOpSupportLimits dictionary",
- "number": "7.3.3.1"
+ "number": "7.3.8.1"
},
"definedIn": "dt"
},
@@ -1108,7 +1461,7 @@
"id": "api-mlcontext-opsupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary",
"title": "MLOpSupportLimits dictionary",
- "number": "7.3.3.1"
+ "number": "7.3.8.1"
},
"definedIn": "dt"
},
@@ -1129,7 +1482,7 @@
"id": "api-mlcontext-opsupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary",
"title": "MLOpSupportLimits dictionary",
- "number": "7.3.3.1"
+ "number": "7.3.8.1"
},
"definedIn": "dt"
},
@@ -1148,7 +1501,7 @@
"id": "api-mlcontext-supportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-supportlimits-dictionary",
"title": "MLSupportLimits dictionary",
- "number": "7.3.3.2"
+ "number": "7.3.8.2"
},
"definedIn": "pre"
},
@@ -1169,7 +1522,7 @@
"id": "api-mlcontext-supportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-supportlimits-dictionary",
"title": "MLSupportLimits dictionary",
- "number": "7.3.3.2"
+ "number": "7.3.8.2"
},
"definedIn": "dt"
},
@@ -1188,7 +1541,7 @@
"id": "api-mlcontext-binarysupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-binarysupportlimits-dictionary",
"title": "MLBinarySupportLimits dictionary",
- "number": "7.3.3.3"
+ "number": "7.3.8.3"
},
"definedIn": "pre"
},
@@ -1209,7 +1562,7 @@
"id": "api-mlcontext-binarysupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-binarysupportlimits-dictionary",
"title": "MLBinarySupportLimits dictionary",
- "number": "7.3.3.3"
+ "number": "7.3.8.3"
},
"definedIn": "dt"
},
@@ -1230,7 +1583,7 @@
"id": "api-mlcontext-binarysupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-binarysupportlimits-dictionary",
"title": "MLBinarySupportLimits dictionary",
- "number": "7.3.3.3"
+ "number": "7.3.8.3"
},
"definedIn": "dt"
},
@@ -1251,7 +1604,7 @@
"id": "api-mlcontext-binarysupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-binarysupportlimits-dictionary",
"title": "MLBinarySupportLimits dictionary",
- "number": "7.3.3.3"
+ "number": "7.3.8.3"
},
"definedIn": "dt"
},
@@ -1270,7 +1623,7 @@
"id": "api-mlcontext-singleinputsupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-singleinputsupportlimits-dictionary",
"title": "MLSingleInputSupportLimits dictionary",
- "number": "7.3.3.4"
+ "number": "7.3.8.4"
},
"definedIn": "pre"
},
@@ -1291,7 +1644,7 @@
"id": "api-mlcontext-singleinputsupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-singleinputsupportlimits-dictionary",
"title": "MLSingleInputSupportLimits dictionary",
- "number": "7.3.3.4"
+ "number": "7.3.8.4"
},
"definedIn": "dt"
},
@@ -1312,7 +1665,7 @@
"id": "api-mlcontext-singleinputsupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-singleinputsupportlimits-dictionary",
"title": "MLSingleInputSupportLimits dictionary",
- "number": "7.3.3.4"
+ "number": "7.3.8.4"
},
"definedIn": "dt"
},
@@ -2248,6 +2601,336 @@
},
"definedIn": "prose"
},
+ {
+ "id": "dictdef-mltensordescriptor",
+ "href": "https://www.w3.org/TR/webnn/#dictdef-mltensordescriptor",
+ "linkingText": [
+ "MLTensorDescriptor"
+ ],
+ "localLinkingText": [],
+ "type": "dictionary",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensordescriptor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensordescriptor",
+ "title": "MLTensorDescriptor dictionary",
+ "number": "7.7"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "dom-mltensordescriptor-readable",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensordescriptor-readable",
+ "linkingText": [
+ "readable"
+ ],
+ "localLinkingText": [],
+ "type": "dict-member",
+ "for": [
+ "MLTensorDescriptor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensordescriptor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensordescriptor",
+ "title": "MLTensorDescriptor dictionary",
+ "number": "7.7"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "dom-mltensordescriptor-writable",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensordescriptor-writable",
+ "linkingText": [
+ "writable"
+ ],
+ "localLinkingText": [],
+ "type": "dict-member",
+ "for": [
+ "MLTensorDescriptor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensordescriptor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensordescriptor",
+ "title": "MLTensorDescriptor dictionary",
+ "number": "7.7"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "mltensor",
+ "href": "https://www.w3.org/TR/webnn/#mltensor",
+ "linkingText": [
+ "MLTensor"
+ ],
+ "localLinkingText": [],
+ "type": "interface",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "dom-mltensor-context-slot",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensor-context-slot",
+ "linkingText": [
+ "[[context]]"
+ ],
+ "localLinkingText": [],
+ "type": "attribute",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "dom-mltensor-descriptor-slot",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensor-descriptor-slot",
+ "linkingText": [
+ "[[descriptor]]"
+ ],
+ "localLinkingText": [],
+ "type": "attribute",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "dom-mltensor-isdestroyed-slot",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensor-isdestroyed-slot",
+ "linkingText": [
+ "[[isDestroyed]]"
+ ],
+ "localLinkingText": [],
+ "type": "attribute",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "dom-mltensor-data-slot",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensor-data-slot",
+ "linkingText": [
+ "[[data]]"
+ ],
+ "localLinkingText": [],
+ "type": "attribute",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "mltensor-datatype",
+ "href": "https://www.w3.org/TR/webnn/#mltensor-datatype",
+ "linkingText": [
+ "dataType"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "mltensor-shape",
+ "href": "https://www.w3.org/TR/webnn/#mltensor-shape",
+ "linkingText": [
+ "shape"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mltensor-datatype",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensor-datatype",
+ "linkingText": [
+ "dataType"
+ ],
+ "localLinkingText": [],
+ "type": "attribute",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mltensor-shape",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensor-shape",
+ "linkingText": [
+ "shape"
+ ],
+ "localLinkingText": [],
+ "type": "attribute",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mltensor-readable",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensor-readable",
+ "linkingText": [
+ "readable"
+ ],
+ "localLinkingText": [],
+ "type": "attribute",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mltensor-writable",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensor-writable",
+ "linkingText": [
+ "writable"
+ ],
+ "localLinkingText": [],
+ "type": "attribute",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "create-an-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#create-an-mltensor",
+ "linkingText": [
+ "create an MLTensor"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor-create",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor-create",
+ "title": "Creating an MLTensor",
+ "number": "7.8.1"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "dom-mltensor-destroy",
+ "href": "https://www.w3.org/TR/webnn/#dom-mltensor-destroy",
+ "linkingText": [
+ "destroy()"
+ ],
+ "localLinkingText": [],
+ "type": "method",
+ "for": [
+ "MLTensor"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "api-mltensor-destroy",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor-destroy",
+ "title": "destroy()",
+ "number": "7.8.2"
+ },
+ "definedIn": "prose"
+ },
{
"id": "typedefdef-mlnamedoperands",
"href": "https://www.w3.org/TR/webnn/#typedefdef-mlnamedoperands",
@@ -2263,7 +2946,7 @@
"id": "api-mlgraphbuilder",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder",
"title": "MLGraphBuilder interface",
- "number": "7.7"
+ "number": "7.9"
},
"definedIn": "pre"
},
@@ -2282,7 +2965,7 @@
"id": "api-mlgraphbuilder",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder",
"title": "MLGraphBuilder interface",
- "number": "7.7"
+ "number": "7.9"
},
"definedIn": "pre"
},
@@ -2303,7 +2986,7 @@
"id": "api-mlgraphbuilder",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder",
"title": "MLGraphBuilder interface",
- "number": "7.7"
+ "number": "7.9"
},
"definedIn": "dt"
},
@@ -2324,7 +3007,7 @@
"id": "api-mlgraphbuilder",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder",
"title": "MLGraphBuilder interface",
- "number": "7.7"
+ "number": "7.9"
},
"definedIn": "dt"
},
@@ -2345,7 +3028,7 @@
"id": "api-mlgraphbuilder-constructor",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constructor",
"title": "MLGraphBuilder constructor",
- "number": "7.7.1"
+ "number": "7.9.1"
},
"definedIn": "prose"
},
@@ -2367,7 +3050,7 @@
"id": "api-mlgraphbuilder-constructor",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constructor",
"title": "MLGraphBuilder constructor",
- "number": "7.7.1"
+ "number": "7.9.1"
},
"definedIn": "prose"
},
@@ -2388,7 +3071,7 @@
"id": "api-mlgraphbuilder-input",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-input",
"title": "input operands",
- "number": "7.7.2"
+ "number": "7.9.2"
},
"definedIn": "prose"
},
@@ -2409,7 +3092,7 @@
"id": "api-mlgraphbuilder-input",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-input",
"title": "input operands",
- "number": "7.7.2"
+ "number": "7.9.2"
},
"definedIn": "prose"
},
@@ -2430,49 +3113,49 @@
"id": "api-mlgraphbuilder-input",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-input",
"title": "input operands",
- "number": "7.7.2"
+ "number": "7.9.2"
},
"definedIn": "prose"
},
{
- "id": "dom-mlgraphbuilder-constant-descriptor-bufferview-descriptor",
- "href": "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-descriptor-bufferview-descriptor",
+ "id": "dom-mlgraphbuilder-constant-descriptor-buffer-descriptor",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-descriptor-buffer-descriptor",
"linkingText": [
"descriptor"
],
"localLinkingText": [],
"type": "argument",
"for": [
- "MLGraphBuilder/constant(descriptor, bufferView)"
+ "MLGraphBuilder/constant(descriptor, buffer)"
],
"access": "public",
"informative": false,
"heading": {
- "id": "api-mlgraphbuilder-constant-bufferview",
- "href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-bufferview",
- "title": "constant(descriptor, bufferView)",
- "number": "7.7.3.1"
+ "id": "api-mlgraphbuilder-constant-buffer",
+ "href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-buffer",
+ "title": "constant(descriptor, buffer)",
+ "number": "7.9.3.1"
},
"definedIn": "prose"
},
{
- "id": "dom-mlgraphbuilder-constant-descriptor-bufferview-bufferview",
- "href": "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-descriptor-bufferview-bufferview",
+ "id": "dom-mlgraphbuilder-constant-descriptor-buffer-buffer",
+ "href": "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-descriptor-buffer-buffer",
"linkingText": [
- "bufferView"
+ "buffer"
],
"localLinkingText": [],
"type": "argument",
"for": [
- "MLGraphBuilder/constant(descriptor, bufferView)"
+ "MLGraphBuilder/constant(descriptor, buffer)"
],
"access": "public",
"informative": false,
"heading": {
- "id": "api-mlgraphbuilder-constant-bufferview",
- "href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-bufferview",
- "title": "constant(descriptor, bufferView)",
- "number": "7.7.3.1"
+ "id": "api-mlgraphbuilder-constant-buffer",
+ "href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-buffer",
+ "title": "constant(descriptor, buffer)",
+ "number": "7.9.3.1"
},
"definedIn": "prose"
},
@@ -2480,7 +3163,7 @@
"id": "dom-mlgraphbuilder-constant",
"href": "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant",
"linkingText": [
- "constant(descriptor, bufferView)"
+ "constant(descriptor, buffer)"
],
"localLinkingText": [],
"type": "method",
@@ -2490,10 +3173,10 @@
"access": "public",
"informative": false,
"heading": {
- "id": "api-mlgraphbuilder-constant-bufferview",
- "href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-bufferview",
- "title": "constant(descriptor, bufferView)",
- "number": "7.7.3.1"
+ "id": "api-mlgraphbuilder-constant-buffer",
+ "href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-buffer",
+ "title": "constant(descriptor, buffer)",
+ "number": "7.9.3.1"
},
"definedIn": "prose"
},
@@ -2514,7 +3197,7 @@
"id": "api-mlgraphbuilder-constant-type-value",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-type-value",
"title": "constant(type, value)",
- "number": "7.7.3.2"
+ "number": "7.9.3.2"
},
"definedIn": "prose"
},
@@ -2535,7 +3218,7 @@
"id": "api-mlgraphbuilder-constant-type-value",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-type-value",
"title": "constant(type, value)",
- "number": "7.7.3.2"
+ "number": "7.9.3.2"
},
"definedIn": "prose"
},
@@ -2556,7 +3239,7 @@
"id": "api-mlgraphbuilder-constant-type-value",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-type-value",
"title": "constant(type, value)",
- "number": "7.7.3.2"
+ "number": "7.9.3.2"
},
"definedIn": "prose"
},
@@ -2577,7 +3260,7 @@
"id": "api-mlgraphbuilder-build",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-build",
"title": "build method",
- "number": "7.7.4"
+ "number": "7.9.4"
},
"definedIn": "prose"
},
@@ -2598,7 +3281,7 @@
"id": "api-mlgraphbuilder-build",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-build",
"title": "build method",
- "number": "7.7.4"
+ "number": "7.9.4"
},
"definedIn": "prose"
},
@@ -2617,7 +3300,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "pre"
},
@@ -2638,7 +3321,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "dt"
},
@@ -2659,7 +3342,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "dt"
},
@@ -2681,7 +3364,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "prose"
},
@@ -2703,7 +3386,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "prose"
},
@@ -2725,7 +3408,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "prose"
},
@@ -2746,7 +3429,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "dt"
},
@@ -2767,7 +3450,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "dt"
},
@@ -2788,7 +3471,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "prose"
},
@@ -2810,7 +3493,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "prose"
},
@@ -2832,7 +3515,7 @@
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
"definedIn": "prose"
},
@@ -2851,7 +3534,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "pre"
},
@@ -2870,7 +3553,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "pre"
},
@@ -2891,7 +3574,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -2912,7 +3595,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -2933,7 +3616,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -2954,7 +3637,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -2975,7 +3658,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "prose"
},
@@ -2996,7 +3679,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "prose"
},
@@ -3017,7 +3700,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "prose"
},
@@ -3038,7 +3721,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "prose"
},
@@ -3059,7 +3742,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -3080,7 +3763,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -3101,7 +3784,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -3122,7 +3805,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -3143,7 +3826,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -3164,7 +3847,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -3185,7 +3868,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "dt"
},
@@ -3207,7 +3890,7 @@
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
"definedIn": "prose"
},
@@ -3228,7 +3911,7 @@
"id": "api-mlgraphbuilder-cast",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-cast",
"title": "cast",
- "number": "7.7.7"
+ "number": "7.9.7"
},
"definedIn": "prose"
},
@@ -3249,7 +3932,7 @@
"id": "api-mlgraphbuilder-cast",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-cast",
"title": "cast",
- "number": "7.7.7"
+ "number": "7.9.7"
},
"definedIn": "prose"
},
@@ -3270,7 +3953,7 @@
"id": "api-mlgraphbuilder-cast",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-cast",
"title": "cast",
- "number": "7.7.7"
+ "number": "7.9.7"
},
"definedIn": "prose"
},
@@ -3291,7 +3974,7 @@
"id": "api-mlgraphbuilder-cast",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-cast",
"title": "cast",
- "number": "7.7.7"
+ "number": "7.9.7"
},
"definedIn": "dt"
},
@@ -3313,7 +3996,7 @@
"id": "api-mlgraphbuilder-cast",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-cast",
"title": "cast",
- "number": "7.7.7"
+ "number": "7.9.7"
},
"definedIn": "prose"
},
@@ -3332,7 +4015,7 @@
"id": "api-mlgraphbuilder-clamp",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp",
"title": "clamp",
- "number": "7.7.8"
+ "number": "7.9.8"
},
"definedIn": "pre"
},
@@ -3353,7 +4036,7 @@
"id": "api-mlgraphbuilder-clamp",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp",
"title": "clamp",
- "number": "7.7.8"
+ "number": "7.9.8"
},
"definedIn": "dt"
},
@@ -3374,7 +4057,7 @@
"id": "api-mlgraphbuilder-clamp",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp",
"title": "clamp",
- "number": "7.7.8"
+ "number": "7.9.8"
},
"definedIn": "dt"
},
@@ -3395,7 +4078,7 @@
"id": "api-mlgraphbuilder-clamp",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp",
"title": "clamp",
- "number": "7.7.8"
+ "number": "7.9.8"
},
"definedIn": "prose"
},
@@ -3416,7 +4099,7 @@
"id": "api-mlgraphbuilder-clamp",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp",
"title": "clamp",
- "number": "7.7.8"
+ "number": "7.9.8"
},
"definedIn": "prose"
},
@@ -3437,7 +4120,7 @@
"id": "api-mlgraphbuilder-clamp",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp",
"title": "clamp",
- "number": "7.7.8"
+ "number": "7.9.8"
},
"definedIn": "dt"
},
@@ -3459,7 +4142,7 @@
"id": "api-mlgraphbuilder-clamp",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp",
"title": "clamp",
- "number": "7.7.8"
+ "number": "7.9.8"
},
"definedIn": "prose"
},
@@ -3478,7 +4161,7 @@
"id": "api-mlgraphbuilder-concat",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat",
"title": "concat",
- "number": "7.7.9"
+ "number": "7.9.9"
},
"definedIn": "pre"
},
@@ -3499,7 +4182,7 @@
"id": "api-mlgraphbuilder-concat",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat",
"title": "concat",
- "number": "7.7.9"
+ "number": "7.9.9"
},
"definedIn": "prose"
},
@@ -3520,7 +4203,7 @@
"id": "api-mlgraphbuilder-concat",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat",
"title": "concat",
- "number": "7.7.9"
+ "number": "7.9.9"
},
"definedIn": "prose"
},
@@ -3541,7 +4224,7 @@
"id": "api-mlgraphbuilder-concat",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat",
"title": "concat",
- "number": "7.7.9"
+ "number": "7.9.9"
},
"definedIn": "prose"
},
@@ -3562,7 +4245,7 @@
"id": "api-mlgraphbuilder-concat",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat",
"title": "concat",
- "number": "7.7.9"
+ "number": "7.9.9"
},
"definedIn": "dt"
},
@@ -3583,7 +4266,7 @@
"id": "api-mlgraphbuilder-concat",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat",
"title": "concat",
- "number": "7.7.9"
+ "number": "7.9.9"
},
"definedIn": "dt"
},
@@ -3604,7 +4287,7 @@
"id": "api-mlgraphbuilder-concat",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat",
"title": "concat",
- "number": "7.7.9"
+ "number": "7.9.9"
},
"definedIn": "dt"
},
@@ -3626,7 +4309,7 @@
"id": "api-mlgraphbuilder-concat",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat",
"title": "concat",
- "number": "7.7.9"
+ "number": "7.9.9"
},
"definedIn": "prose"
},
@@ -3645,7 +4328,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "pre"
},
@@ -3666,7 +4349,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "pre"
},
@@ -3687,7 +4370,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "pre"
},
@@ -3708,7 +4391,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "pre"
},
@@ -3729,7 +4412,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "pre"
},
@@ -3748,7 +4431,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "pre"
},
@@ -3767,7 +4450,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "pre"
},
@@ -3788,7 +4471,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -3809,7 +4492,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -3830,7 +4513,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -3851,7 +4534,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -3872,7 +4555,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -3893,7 +4576,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -3914,7 +4597,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -3935,7 +4618,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "prose"
},
@@ -3956,7 +4639,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "prose"
},
@@ -3977,7 +4660,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "prose"
},
@@ -3998,7 +4681,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -4019,7 +4702,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -4040,7 +4723,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -4061,7 +4744,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -4082,7 +4765,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "dt"
},
@@ -4103,7 +4786,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "prose"
},
@@ -4124,7 +4807,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "prose"
},
@@ -4146,7 +4829,7 @@
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
"definedIn": "prose"
},
@@ -4165,7 +4848,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "pre"
},
@@ -4186,7 +4869,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "pre"
},
@@ -4207,7 +4890,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "pre"
},
@@ -4228,7 +4911,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "pre"
},
@@ -4247,7 +4930,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "pre"
},
@@ -4268,7 +4951,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "dt"
},
@@ -4289,7 +4972,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "dt"
},
@@ -4310,7 +4993,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "dt"
},
@@ -4331,7 +5014,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "dt"
},
@@ -4352,7 +5035,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "dt"
},
@@ -4373,7 +5056,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "dt"
},
@@ -4394,7 +5077,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "dt"
},
@@ -4415,7 +5098,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "dt"
},
@@ -4436,7 +5119,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "dt"
},
@@ -4457,7 +5140,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "prose"
},
@@ -4478,7 +5161,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "prose"
},
@@ -4499,7 +5182,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "prose"
},
@@ -4520,7 +5203,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "dt"
},
@@ -4541,7 +5224,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "prose"
},
@@ -4562,7 +5245,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "prose"
},
@@ -4584,7 +5267,7 @@
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
"definedIn": "prose"
},
@@ -4611,7 +5294,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -4638,7 +5321,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -4665,7 +5348,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -4686,7 +5369,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "dt"
},
@@ -4707,7 +5390,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "dt"
},
@@ -4728,7 +5411,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "dt"
},
@@ -4749,7 +5432,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "dt"
},
@@ -4770,7 +5453,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "dt"
},
@@ -4791,7 +5474,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "dt"
},
@@ -4812,7 +5495,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "dt"
},
@@ -4833,7 +5516,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -4855,7 +5538,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -4877,7 +5560,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -4899,7 +5582,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -4921,7 +5604,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -4943,7 +5626,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -4965,7 +5648,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -4987,7 +5670,7 @@
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
"definedIn": "prose"
},
@@ -5006,7 +5689,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "pre"
},
@@ -5032,7 +5715,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "prose"
},
@@ -5058,7 +5741,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "prose"
},
@@ -5084,7 +5767,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "prose"
},
@@ -5105,7 +5788,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "dt"
},
@@ -5126,7 +5809,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "dt"
},
@@ -5147,7 +5830,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "dt"
},
@@ -5168,7 +5851,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "dt"
},
@@ -5189,7 +5872,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "dt"
},
@@ -5210,7 +5893,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "dt"
},
@@ -5231,7 +5914,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "dt"
},
@@ -5252,7 +5935,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "dt"
},
@@ -5273,7 +5956,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "prose"
},
@@ -5295,7 +5978,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "prose"
},
@@ -5317,7 +6000,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "prose"
},
@@ -5339,7 +6022,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "prose"
},
@@ -5361,7 +6044,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "prose"
},
@@ -5383,7 +6066,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "prose"
},
@@ -5405,7 +6088,7 @@
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
"definedIn": "prose"
},
@@ -5438,7 +6121,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5471,7 +6154,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5492,7 +6175,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5513,7 +6196,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5534,7 +6217,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5555,7 +6238,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5576,7 +6259,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5597,7 +6280,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5618,7 +6301,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5639,7 +6322,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5660,7 +6343,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5681,7 +6364,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5702,7 +6385,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5723,7 +6406,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5744,7 +6427,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "dt"
},
@@ -5765,7 +6448,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5787,7 +6470,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5809,7 +6492,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5831,7 +6514,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5853,7 +6536,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5875,7 +6558,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5897,7 +6580,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5919,7 +6602,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5941,7 +6624,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5963,7 +6646,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -5985,7 +6668,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -6007,7 +6690,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -6029,7 +6712,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -6051,7 +6734,7 @@
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
"definedIn": "prose"
},
@@ -6070,7 +6753,7 @@
"id": "api-mlgraphbuilder-elu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu",
"title": "elu",
- "number": "7.7.15"
+ "number": "7.9.15"
},
"definedIn": "pre"
},
@@ -6091,7 +6774,7 @@
"id": "api-mlgraphbuilder-elu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu",
"title": "elu",
- "number": "7.7.15"
+ "number": "7.9.15"
},
"definedIn": "dt"
},
@@ -6112,7 +6795,7 @@
"id": "api-mlgraphbuilder-elu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu",
"title": "elu",
- "number": "7.7.15"
+ "number": "7.9.15"
},
"definedIn": "prose"
},
@@ -6133,7 +6816,7 @@
"id": "api-mlgraphbuilder-elu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu",
"title": "elu",
- "number": "7.7.15"
+ "number": "7.9.15"
},
"definedIn": "prose"
},
@@ -6154,7 +6837,7 @@
"id": "api-mlgraphbuilder-elu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu",
"title": "elu",
- "number": "7.7.15"
+ "number": "7.9.15"
},
"definedIn": "dt"
},
@@ -6176,7 +6859,7 @@
"id": "api-mlgraphbuilder-elu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu",
"title": "elu",
- "number": "7.7.15"
+ "number": "7.9.15"
},
"definedIn": "prose"
},
@@ -6197,7 +6880,7 @@
"id": "api-mlgraphbuilder-expand",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-expand",
"title": "expand",
- "number": "7.7.16"
+ "number": "7.9.16"
},
"definedIn": "prose"
},
@@ -6218,7 +6901,7 @@
"id": "api-mlgraphbuilder-expand",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-expand",
"title": "expand",
- "number": "7.7.16"
+ "number": "7.9.16"
},
"definedIn": "prose"
},
@@ -6239,7 +6922,7 @@
"id": "api-mlgraphbuilder-expand",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-expand",
"title": "expand",
- "number": "7.7.16"
+ "number": "7.9.16"
},
"definedIn": "prose"
},
@@ -6260,7 +6943,7 @@
"id": "api-mlgraphbuilder-expand",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-expand",
"title": "expand",
- "number": "7.7.16"
+ "number": "7.9.16"
},
"definedIn": "dt"
},
@@ -6282,7 +6965,7 @@
"id": "api-mlgraphbuilder-expand",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-expand",
"title": "expand",
- "number": "7.7.16"
+ "number": "7.9.16"
},
"definedIn": "prose"
},
@@ -6301,7 +6984,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "pre"
},
@@ -6320,7 +7003,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "pre"
},
@@ -6341,7 +7024,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "dt"
},
@@ -6362,7 +7045,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "prose"
},
@@ -6383,7 +7066,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "prose"
},
@@ -6404,7 +7087,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "prose"
},
@@ -6425,7 +7108,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "dt"
},
@@ -6446,7 +7129,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "dt"
},
@@ -6467,7 +7150,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "dt"
},
@@ -6488,7 +7171,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "dt"
},
@@ -6510,7 +7193,7 @@
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
"definedIn": "prose"
},
@@ -6531,7 +7214,7 @@
"id": "api-mlgraphbuilder-gelu-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gelu-method",
"title": "gelu",
- "number": "7.7.18"
+ "number": "7.9.18"
},
"definedIn": "prose"
},
@@ -6552,7 +7235,7 @@
"id": "api-mlgraphbuilder-gelu-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gelu-method",
"title": "gelu",
- "number": "7.7.18"
+ "number": "7.9.18"
},
"definedIn": "prose"
},
@@ -6573,7 +7256,7 @@
"id": "api-mlgraphbuilder-gelu-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gelu-method",
"title": "gelu",
- "number": "7.7.18"
+ "number": "7.9.18"
},
"definedIn": "dt"
},
@@ -6595,7 +7278,7 @@
"id": "api-mlgraphbuilder-gelu-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gelu-method",
"title": "gelu",
- "number": "7.7.18"
+ "number": "7.9.18"
},
"definedIn": "prose"
},
@@ -6614,7 +7297,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "pre"
},
@@ -6633,7 +7316,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "pre"
},
@@ -6654,7 +7337,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "dt"
},
@@ -6675,7 +7358,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "dt"
},
@@ -6696,7 +7379,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "dt"
},
@@ -6717,7 +7400,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "dt"
},
@@ -6738,7 +7421,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "dt"
},
@@ -6759,7 +7442,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "prose"
},
@@ -6780,7 +7463,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "prose"
},
@@ -6801,7 +7484,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "prose"
},
@@ -6822,7 +7505,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "dt"
},
@@ -6843,7 +7526,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "dt"
},
@@ -6864,7 +7547,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "dt"
},
@@ -6885,7 +7568,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "dt"
},
@@ -6906,7 +7589,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "dt"
},
@@ -6928,7 +7611,7 @@
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
"definedIn": "prose"
},
@@ -6947,7 +7630,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -6968,7 +7651,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -6989,7 +7672,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7008,7 +7691,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7029,7 +7712,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7050,7 +7733,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7071,7 +7754,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7090,7 +7773,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7111,7 +7794,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7132,7 +7815,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7153,7 +7836,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7172,7 +7855,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7191,7 +7874,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "pre"
},
@@ -7212,7 +7895,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7233,7 +7916,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7254,7 +7937,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7275,7 +7958,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7296,7 +7979,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7317,7 +8000,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7338,7 +8021,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7359,7 +8042,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7380,7 +8063,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "prose"
},
@@ -7401,7 +8084,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "prose"
},
@@ -7422,7 +8105,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "prose"
},
@@ -7443,7 +8126,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "prose"
},
@@ -7464,7 +8147,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "prose"
},
@@ -7485,7 +8168,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "prose"
},
@@ -7506,7 +8189,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7527,7 +8210,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7548,7 +8231,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7569,7 +8252,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7590,7 +8273,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7611,7 +8294,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7632,7 +8315,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7653,7 +8336,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "dt"
},
@@ -7675,7 +8358,7 @@
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
"definedIn": "prose"
},
@@ -7694,7 +8377,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "pre"
},
@@ -7713,7 +8396,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "pre"
},
@@ -7734,7 +8417,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -7755,7 +8438,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -7776,7 +8459,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -7797,7 +8480,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -7818,7 +8501,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -7839,7 +8522,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "prose"
},
@@ -7860,7 +8543,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "prose"
},
@@ -7881,7 +8564,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "prose"
},
@@ -7902,7 +8585,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "prose"
},
@@ -7923,7 +8606,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "prose"
},
@@ -7944,7 +8627,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "prose"
},
@@ -7965,7 +8648,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -7986,7 +8669,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -8007,7 +8690,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -8028,7 +8711,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -8049,7 +8732,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -8070,7 +8753,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -8091,7 +8774,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -8112,7 +8795,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "dt"
},
@@ -8134,7 +8817,7 @@
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
"definedIn": "prose"
},
@@ -8153,7 +8836,7 @@
"id": "api-mlgraphbuilder-hard-sigmoid",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-sigmoid",
"title": "hardSigmoid",
- "number": "7.7.22"
+ "number": "7.9.22"
},
"definedIn": "pre"
},
@@ -8174,7 +8857,7 @@
"id": "api-mlgraphbuilder-hard-sigmoid",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-sigmoid",
"title": "hardSigmoid",
- "number": "7.7.22"
+ "number": "7.9.22"
},
"definedIn": "dt"
},
@@ -8195,7 +8878,7 @@
"id": "api-mlgraphbuilder-hard-sigmoid",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-sigmoid",
"title": "hardSigmoid",
- "number": "7.7.22"
+ "number": "7.9.22"
},
"definedIn": "dt"
},
@@ -8216,7 +8899,7 @@
"id": "api-mlgraphbuilder-hard-sigmoid",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-sigmoid",
"title": "hardSigmoid",
- "number": "7.7.22"
+ "number": "7.9.22"
},
"definedIn": "prose"
},
@@ -8237,7 +8920,7 @@
"id": "api-mlgraphbuilder-hard-sigmoid",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-sigmoid",
"title": "hardSigmoid",
- "number": "7.7.22"
+ "number": "7.9.22"
},
"definedIn": "prose"
},
@@ -8258,7 +8941,7 @@
"id": "api-mlgraphbuilder-hard-sigmoid",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-sigmoid",
"title": "hardSigmoid",
- "number": "7.7.22"
+ "number": "7.9.22"
},
"definedIn": "dt"
},
@@ -8280,7 +8963,7 @@
"id": "api-mlgraphbuilder-hard-sigmoid",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-sigmoid",
"title": "hardSigmoid",
- "number": "7.7.22"
+ "number": "7.9.22"
},
"definedIn": "prose"
},
@@ -8301,7 +8984,7 @@
"id": "api-mlgraphbuilder-hard-swish",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-swish",
"title": "hardSwish",
- "number": "7.7.23"
+ "number": "7.9.23"
},
"definedIn": "prose"
},
@@ -8322,7 +9005,7 @@
"id": "api-mlgraphbuilder-hard-swish",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-swish",
"title": "hardSwish",
- "number": "7.7.23"
+ "number": "7.9.23"
},
"definedIn": "prose"
},
@@ -8343,7 +9026,7 @@
"id": "api-mlgraphbuilder-hard-swish",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-swish",
"title": "hardSwish",
- "number": "7.7.23"
+ "number": "7.9.23"
},
"definedIn": "dt"
},
@@ -8365,7 +9048,7 @@
"id": "api-mlgraphbuilder-hard-swish",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-swish",
"title": "hardSwish",
- "number": "7.7.23"
+ "number": "7.9.23"
},
"definedIn": "prose"
},
@@ -8384,7 +9067,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "pre"
},
@@ -8403,7 +9086,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "pre"
},
@@ -8424,7 +9107,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "dt"
},
@@ -8445,7 +9128,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "dt"
},
@@ -8466,7 +9149,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "dt"
},
@@ -8487,7 +9170,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "dt"
},
@@ -8508,7 +9191,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "prose"
},
@@ -8529,7 +9212,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "prose"
},
@@ -8550,7 +9233,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "dt"
},
@@ -8571,7 +9254,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "dt"
},
@@ -8592,7 +9275,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "dt"
},
@@ -8613,7 +9296,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "dt"
},
@@ -8634,7 +9317,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "dt"
},
@@ -8656,7 +9339,7 @@
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
"definedIn": "prose"
},
@@ -8675,7 +9358,7 @@
"id": "api-mlgraphbuilder-layernorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm",
"title": "layerNormalization",
- "number": "7.7.25"
+ "number": "7.9.25"
},
"definedIn": "pre"
},
@@ -8696,7 +9379,7 @@
"id": "api-mlgraphbuilder-layernorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm",
"title": "layerNormalization",
- "number": "7.7.25"
+ "number": "7.9.25"
},
"definedIn": "dt"
},
@@ -8717,7 +9400,7 @@
"id": "api-mlgraphbuilder-layernorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm",
"title": "layerNormalization",
- "number": "7.7.25"
+ "number": "7.9.25"
},
"definedIn": "dt"
},
@@ -8738,7 +9421,7 @@
"id": "api-mlgraphbuilder-layernorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm",
"title": "layerNormalization",
- "number": "7.7.25"
+ "number": "7.9.25"
},
"definedIn": "dt"
},
@@ -8759,7 +9442,7 @@
"id": "api-mlgraphbuilder-layernorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm",
"title": "layerNormalization",
- "number": "7.7.25"
+ "number": "7.9.25"
},
"definedIn": "dt"
},
@@ -8780,7 +9463,7 @@
"id": "api-mlgraphbuilder-layernorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm",
"title": "layerNormalization",
- "number": "7.7.25"
+ "number": "7.9.25"
},
"definedIn": "prose"
},
@@ -8801,7 +9484,7 @@
"id": "api-mlgraphbuilder-layernorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm",
"title": "layerNormalization",
- "number": "7.7.25"
+ "number": "7.9.25"
},
"definedIn": "prose"
},
@@ -8822,7 +9505,7 @@
"id": "api-mlgraphbuilder-layernorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm",
"title": "layerNormalization",
- "number": "7.7.25"
+ "number": "7.9.25"
},
"definedIn": "dt"
},
@@ -8844,7 +9527,7 @@
"id": "api-mlgraphbuilder-layernorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm",
"title": "layerNormalization",
- "number": "7.7.25"
+ "number": "7.9.25"
},
"definedIn": "prose"
},
@@ -8863,7 +9546,7 @@
"id": "api-mlgraphbuilder-leakyrelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leakyrelu",
"title": "leakyRelu",
- "number": "7.7.26"
+ "number": "7.9.26"
},
"definedIn": "pre"
},
@@ -8884,7 +9567,7 @@
"id": "api-mlgraphbuilder-leakyrelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leakyrelu",
"title": "leakyRelu",
- "number": "7.7.26"
+ "number": "7.9.26"
},
"definedIn": "dt"
},
@@ -8905,7 +9588,7 @@
"id": "api-mlgraphbuilder-leakyrelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leakyrelu",
"title": "leakyRelu",
- "number": "7.7.26"
+ "number": "7.9.26"
},
"definedIn": "prose"
},
@@ -8926,7 +9609,7 @@
"id": "api-mlgraphbuilder-leakyrelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leakyrelu",
"title": "leakyRelu",
- "number": "7.7.26"
+ "number": "7.9.26"
},
"definedIn": "prose"
},
@@ -8947,7 +9630,7 @@
"id": "api-mlgraphbuilder-leakyrelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leakyrelu",
"title": "leakyRelu",
- "number": "7.7.26"
+ "number": "7.9.26"
},
"definedIn": "dt"
},
@@ -8969,7 +9652,7 @@
"id": "api-mlgraphbuilder-leakyrelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leakyrelu",
"title": "leakyRelu",
- "number": "7.7.26"
+ "number": "7.9.26"
},
"definedIn": "prose"
},
@@ -8988,7 +9671,7 @@
"id": "api-mlgraphbuilder-linear",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear",
"title": "linear",
- "number": "7.7.27"
+ "number": "7.9.27"
},
"definedIn": "pre"
},
@@ -9009,7 +9692,7 @@
"id": "api-mlgraphbuilder-linear",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear",
"title": "linear",
- "number": "7.7.27"
+ "number": "7.9.27"
},
"definedIn": "dt"
},
@@ -9030,7 +9713,7 @@
"id": "api-mlgraphbuilder-linear",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear",
"title": "linear",
- "number": "7.7.27"
+ "number": "7.9.27"
},
"definedIn": "dt"
},
@@ -9051,7 +9734,7 @@
"id": "api-mlgraphbuilder-linear",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear",
"title": "linear",
- "number": "7.7.27"
+ "number": "7.9.27"
},
"definedIn": "prose"
},
@@ -9072,7 +9755,7 @@
"id": "api-mlgraphbuilder-linear",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear",
"title": "linear",
- "number": "7.7.27"
+ "number": "7.9.27"
},
"definedIn": "prose"
},
@@ -9093,7 +9776,7 @@
"id": "api-mlgraphbuilder-linear",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear",
"title": "linear",
- "number": "7.7.27"
+ "number": "7.9.27"
},
"definedIn": "dt"
},
@@ -9115,7 +9798,7 @@
"id": "api-mlgraphbuilder-linear",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear",
"title": "linear",
- "number": "7.7.27"
+ "number": "7.9.27"
},
"definedIn": "prose"
},
@@ -9134,7 +9817,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "pre"
},
@@ -9155,7 +9838,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "pre"
},
@@ -9176,7 +9859,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "pre"
},
@@ -9195,7 +9878,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "pre"
},
@@ -9214,7 +9897,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "pre"
},
@@ -9235,7 +9918,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9256,7 +9939,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9277,7 +9960,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9298,7 +9981,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9319,7 +10002,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9340,7 +10023,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9361,7 +10044,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9382,7 +10065,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9403,7 +10086,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9424,7 +10107,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "prose"
},
@@ -9445,7 +10128,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "prose"
},
@@ -9466,7 +10149,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "prose"
},
@@ -9487,7 +10170,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "prose"
},
@@ -9508,7 +10191,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "prose"
},
@@ -9529,7 +10212,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "prose"
},
@@ -9550,7 +10233,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9571,7 +10254,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9592,7 +10275,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9613,7 +10296,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9634,7 +10317,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9655,7 +10338,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9676,7 +10359,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9697,7 +10380,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9718,7 +10401,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9739,7 +10422,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "dt"
},
@@ -9761,7 +10444,7 @@
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
"definedIn": "prose"
},
@@ -9780,7 +10463,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "pre"
},
@@ -9799,7 +10482,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "pre"
},
@@ -9820,7 +10503,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -9841,7 +10524,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -9862,7 +10545,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -9883,7 +10566,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -9904,7 +10587,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -9925,7 +10608,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "prose"
},
@@ -9946,7 +10629,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "prose"
},
@@ -9967,7 +10650,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "prose"
},
@@ -9988,7 +10671,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "prose"
},
@@ -10009,7 +10692,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "prose"
},
@@ -10030,7 +10713,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "prose"
},
@@ -10051,7 +10734,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "prose"
},
@@ -10072,7 +10755,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -10093,7 +10776,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -10114,7 +10797,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -10135,7 +10818,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -10156,7 +10839,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -10177,7 +10860,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -10198,7 +10881,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -10219,7 +10902,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -10240,7 +10923,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -10261,7 +10944,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "dt"
},
@@ -10283,7 +10966,7 @@
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
"definedIn": "prose"
},
@@ -10304,7 +10987,7 @@
"id": "api-mlgraphbuilder-matmul",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-matmul",
"title": "matmul",
- "number": "7.7.30"
+ "number": "7.9.30"
},
"definedIn": "prose"
},
@@ -10325,7 +11008,7 @@
"id": "api-mlgraphbuilder-matmul",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-matmul",
"title": "matmul",
- "number": "7.7.30"
+ "number": "7.9.30"
},
"definedIn": "prose"
},
@@ -10346,7 +11029,7 @@
"id": "api-mlgraphbuilder-matmul",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-matmul",
"title": "matmul",
- "number": "7.7.30"
+ "number": "7.9.30"
},
"definedIn": "prose"
},
@@ -10367,7 +11050,7 @@
"id": "api-mlgraphbuilder-matmul",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-matmul",
"title": "matmul",
- "number": "7.7.30"
+ "number": "7.9.30"
},
"definedIn": "dt"
},
@@ -10388,7 +11071,7 @@
"id": "api-mlgraphbuilder-matmul",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-matmul",
"title": "matmul",
- "number": "7.7.30"
+ "number": "7.9.30"
},
"definedIn": "prose"
},
@@ -10410,7 +11093,7 @@
"id": "api-mlgraphbuilder-matmul",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-matmul",
"title": "matmul",
- "number": "7.7.30"
+ "number": "7.9.30"
},
"definedIn": "prose"
},
@@ -10429,7 +11112,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "pre"
},
@@ -10450,7 +11133,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "pre"
},
@@ -10471,7 +11154,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "pre"
},
@@ -10492,7 +11175,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "pre"
},
@@ -10513,7 +11196,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "pre"
},
@@ -10532,7 +11215,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "pre"
},
@@ -10553,7 +11236,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "dt"
},
@@ -10574,7 +11257,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "dt"
},
@@ -10595,7 +11278,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "prose"
},
@@ -10616,7 +11299,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "prose"
},
@@ -10637,7 +11320,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "prose"
},
@@ -10658,7 +11341,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "prose"
},
@@ -10679,7 +11362,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "dt"
},
@@ -10700,7 +11383,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "prose"
},
@@ -10722,7 +11405,7 @@
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
"definedIn": "prose"
},
@@ -10741,7 +11424,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "pre"
},
@@ -10762,7 +11445,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "pre"
},
@@ -10783,7 +11466,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "pre"
},
@@ -10802,7 +11485,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "pre"
},
@@ -10823,7 +11506,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "dt"
},
@@ -10844,7 +11527,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "dt"
},
@@ -10865,7 +11548,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "dt"
},
@@ -10886,7 +11569,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "dt"
},
@@ -10907,7 +11590,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "dt"
},
@@ -10928,7 +11611,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "dt"
},
@@ -10949,7 +11632,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "dt"
},
@@ -10972,7 +11655,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "prose"
},
@@ -10995,7 +11678,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "prose"
},
@@ -11016,7 +11699,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "dt"
},
@@ -11037,7 +11720,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "dt"
},
@@ -11058,7 +11741,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "dt"
},
@@ -11079,7 +11762,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "prose"
},
@@ -11100,7 +11783,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "prose"
},
@@ -11122,7 +11805,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "prose"
},
@@ -11144,7 +11827,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "prose"
},
@@ -11166,7 +11849,7 @@
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
"definedIn": "prose"
},
@@ -11185,7 +11868,7 @@
"id": "api-mlgraphbuilder-prelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu",
"title": "prelu",
- "number": "7.7.33"
+ "number": "7.9.33"
},
"definedIn": "pre"
},
@@ -11206,7 +11889,7 @@
"id": "api-mlgraphbuilder-prelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu",
"title": "prelu",
- "number": "7.7.33"
+ "number": "7.9.33"
},
"definedIn": "prose"
},
@@ -11227,7 +11910,7 @@
"id": "api-mlgraphbuilder-prelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu",
"title": "prelu",
- "number": "7.7.33"
+ "number": "7.9.33"
},
"definedIn": "prose"
},
@@ -11248,7 +11931,7 @@
"id": "api-mlgraphbuilder-prelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu",
"title": "prelu",
- "number": "7.7.33"
+ "number": "7.9.33"
},
"definedIn": "prose"
},
@@ -11269,7 +11952,7 @@
"id": "api-mlgraphbuilder-prelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu",
"title": "prelu",
- "number": "7.7.33"
+ "number": "7.9.33"
},
"definedIn": "dt"
},
@@ -11290,7 +11973,7 @@
"id": "api-mlgraphbuilder-prelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu",
"title": "prelu",
- "number": "7.7.33"
+ "number": "7.9.33"
},
"definedIn": "dt"
},
@@ -11311,7 +11994,7 @@
"id": "api-mlgraphbuilder-prelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu",
"title": "prelu",
- "number": "7.7.33"
+ "number": "7.9.33"
},
"definedIn": "dt"
},
@@ -11332,7 +12015,7 @@
"id": "api-mlgraphbuilder-prelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu",
"title": "prelu",
- "number": "7.7.33"
+ "number": "7.9.33"
},
"definedIn": "dt"
},
@@ -11354,7 +12037,7 @@
"id": "api-mlgraphbuilder-prelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu",
"title": "prelu",
- "number": "7.7.33"
+ "number": "7.9.33"
},
"definedIn": "prose"
},
@@ -11373,7 +12056,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "pre"
},
@@ -11394,7 +12077,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11415,7 +12098,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11445,7 +12128,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11475,7 +12158,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11496,7 +12179,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11517,7 +12200,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11538,7 +12221,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11559,7 +12242,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11580,7 +12263,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11601,7 +12284,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11622,7 +12305,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11643,7 +12326,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11664,7 +12347,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11685,7 +12368,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "dt"
},
@@ -11706,7 +12389,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11727,7 +12410,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11749,7 +12432,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11771,7 +12454,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11793,7 +12476,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11815,7 +12498,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11837,7 +12520,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11859,7 +12542,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11881,7 +12564,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11903,7 +12586,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11925,7 +12608,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11947,7 +12630,7 @@
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
"definedIn": "prose"
},
@@ -11968,7 +12651,7 @@
"id": "api-mlgraphbuilder-relu-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu-method",
"title": "relu",
- "number": "7.7.35"
+ "number": "7.9.35"
},
"definedIn": "prose"
},
@@ -11989,7 +12672,7 @@
"id": "api-mlgraphbuilder-relu-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu-method",
"title": "relu",
- "number": "7.7.35"
+ "number": "7.9.35"
},
"definedIn": "prose"
},
@@ -12010,7 +12693,7 @@
"id": "api-mlgraphbuilder-relu-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu-method",
"title": "relu",
- "number": "7.7.35"
+ "number": "7.9.35"
},
"definedIn": "dt"
},
@@ -12032,7 +12715,7 @@
"id": "api-mlgraphbuilder-relu-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu-method",
"title": "relu",
- "number": "7.7.35"
+ "number": "7.9.35"
},
"definedIn": "prose"
},
@@ -12051,7 +12734,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "pre"
},
@@ -12072,7 +12755,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "pre"
},
@@ -12093,7 +12776,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "pre"
},
@@ -12112,7 +12795,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "pre"
},
@@ -12133,7 +12816,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "prose"
},
@@ -12154,7 +12837,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "prose"
},
@@ -12175,7 +12858,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "dt"
},
@@ -12196,7 +12879,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "dt"
},
@@ -12217,7 +12900,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "dt"
},
@@ -12238,7 +12921,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "dt"
},
@@ -12259,7 +12942,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "dt"
},
@@ -12280,7 +12963,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "prose"
},
@@ -12301,7 +12984,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "prose"
},
@@ -12323,7 +13006,7 @@
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
"definedIn": "prose"
},
@@ -12344,7 +13027,7 @@
"id": "api-mlgraphbuilder-reshape-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reshape-method",
"title": "reshape",
- "number": "7.7.37"
+ "number": "7.9.37"
},
"definedIn": "prose"
},
@@ -12365,7 +13048,7 @@
"id": "api-mlgraphbuilder-reshape-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reshape-method",
"title": "reshape",
- "number": "7.7.37"
+ "number": "7.9.37"
},
"definedIn": "prose"
},
@@ -12386,7 +13069,7 @@
"id": "api-mlgraphbuilder-reshape-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reshape-method",
"title": "reshape",
- "number": "7.7.37"
+ "number": "7.9.37"
},
"definedIn": "prose"
},
@@ -12407,7 +13090,7 @@
"id": "api-mlgraphbuilder-reshape-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reshape-method",
"title": "reshape",
- "number": "7.7.37"
+ "number": "7.9.37"
},
"definedIn": "dt"
},
@@ -12429,7 +13112,7 @@
"id": "api-mlgraphbuilder-reshape-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reshape-method",
"title": "reshape",
- "number": "7.7.37"
+ "number": "7.9.37"
},
"definedIn": "prose"
},
@@ -12450,7 +13133,7 @@
"id": "api-mlgraphbuilder-sigmoid-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-sigmoid-method",
"title": "sigmoid",
- "number": "7.7.38"
+ "number": "7.9.38"
},
"definedIn": "prose"
},
@@ -12471,7 +13154,7 @@
"id": "api-mlgraphbuilder-sigmoid-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-sigmoid-method",
"title": "sigmoid",
- "number": "7.7.38"
+ "number": "7.9.38"
},
"definedIn": "prose"
},
@@ -12492,7 +13175,7 @@
"id": "api-mlgraphbuilder-sigmoid-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-sigmoid-method",
"title": "sigmoid",
- "number": "7.7.38"
+ "number": "7.9.38"
},
"definedIn": "dt"
},
@@ -12514,7 +13197,7 @@
"id": "api-mlgraphbuilder-sigmoid-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-sigmoid-method",
"title": "sigmoid",
- "number": "7.7.38"
+ "number": "7.9.38"
},
"definedIn": "prose"
},
@@ -12535,7 +13218,7 @@
"id": "api-mlgraphbuilder-slice",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-slice",
"title": "slice",
- "number": "7.7.39"
+ "number": "7.9.39"
},
"definedIn": "prose"
},
@@ -12556,7 +13239,7 @@
"id": "api-mlgraphbuilder-slice",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-slice",
"title": "slice",
- "number": "7.7.39"
+ "number": "7.9.39"
},
"definedIn": "prose"
},
@@ -12577,7 +13260,7 @@
"id": "api-mlgraphbuilder-slice",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-slice",
"title": "slice",
- "number": "7.7.39"
+ "number": "7.9.39"
},
"definedIn": "prose"
},
@@ -12598,7 +13281,7 @@
"id": "api-mlgraphbuilder-slice",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-slice",
"title": "slice",
- "number": "7.7.39"
+ "number": "7.9.39"
},
"definedIn": "prose"
},
@@ -12619,7 +13302,7 @@
"id": "api-mlgraphbuilder-slice",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-slice",
"title": "slice",
- "number": "7.7.39"
+ "number": "7.9.39"
},
"definedIn": "dt"
},
@@ -12641,7 +13324,7 @@
"id": "api-mlgraphbuilder-slice",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-slice",
"title": "slice",
- "number": "7.7.39"
+ "number": "7.9.39"
},
"definedIn": "prose"
},
@@ -12662,7 +13345,7 @@
"id": "api-mlgraphbuilder-softmax-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax-method",
"title": "softmax",
- "number": "7.7.40"
+ "number": "7.9.40"
},
"definedIn": "prose"
},
@@ -12683,7 +13366,7 @@
"id": "api-mlgraphbuilder-softmax-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax-method",
"title": "softmax",
- "number": "7.7.40"
+ "number": "7.9.40"
},
"definedIn": "prose"
},
@@ -12704,7 +13387,7 @@
"id": "api-mlgraphbuilder-softmax-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax-method",
"title": "softmax",
- "number": "7.7.40"
+ "number": "7.9.40"
},
"definedIn": "prose"
},
@@ -12725,7 +13408,7 @@
"id": "api-mlgraphbuilder-softmax-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax-method",
"title": "softmax",
- "number": "7.7.40"
+ "number": "7.9.40"
},
"definedIn": "dt"
},
@@ -12747,7 +13430,7 @@
"id": "api-mlgraphbuilder-softmax-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax-method",
"title": "softmax",
- "number": "7.7.40"
+ "number": "7.9.40"
},
"definedIn": "prose"
},
@@ -12768,7 +13451,7 @@
"id": "api-mlgraphbuilder-softplus-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softplus-method",
"title": "softplus",
- "number": "7.7.41"
+ "number": "7.9.41"
},
"definedIn": "prose"
},
@@ -12789,7 +13472,7 @@
"id": "api-mlgraphbuilder-softplus-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softplus-method",
"title": "softplus",
- "number": "7.7.41"
+ "number": "7.9.41"
},
"definedIn": "prose"
},
@@ -12810,7 +13493,7 @@
"id": "api-mlgraphbuilder-softplus-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softplus-method",
"title": "softplus",
- "number": "7.7.41"
+ "number": "7.9.41"
},
"definedIn": "dt"
},
@@ -12832,7 +13515,7 @@
"id": "api-mlgraphbuilder-softplus-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softplus-method",
"title": "softplus",
- "number": "7.7.41"
+ "number": "7.9.41"
},
"definedIn": "prose"
},
@@ -12853,7 +13536,7 @@
"id": "api-mlgraphbuilder-softsign-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softsign-method",
"title": "softsign",
- "number": "7.7.42"
+ "number": "7.9.42"
},
"definedIn": "prose"
},
@@ -12874,7 +13557,7 @@
"id": "api-mlgraphbuilder-softsign-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softsign-method",
"title": "softsign",
- "number": "7.7.42"
+ "number": "7.9.42"
},
"definedIn": "prose"
},
@@ -12895,7 +13578,7 @@
"id": "api-mlgraphbuilder-softsign-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softsign-method",
"title": "softsign",
- "number": "7.7.42"
+ "number": "7.9.42"
},
"definedIn": "dt"
},
@@ -12917,7 +13600,7 @@
"id": "api-mlgraphbuilder-softsign-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softsign-method",
"title": "softsign",
- "number": "7.7.42"
+ "number": "7.9.42"
},
"definedIn": "prose"
},
@@ -12936,7 +13619,7 @@
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
"definedIn": "pre"
},
@@ -12955,7 +13638,7 @@
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
"definedIn": "pre"
},
@@ -12976,7 +13659,7 @@
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
"definedIn": "prose"
},
@@ -12997,7 +13680,7 @@
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
"definedIn": "prose"
},
@@ -13018,7 +13701,7 @@
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
"definedIn": "prose"
},
@@ -13039,7 +13722,7 @@
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
"definedIn": "dt"
},
@@ -13060,7 +13743,7 @@
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
"definedIn": "dt"
},
@@ -13081,7 +13764,7 @@
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
"definedIn": "dt"
},
@@ -13102,7 +13785,7 @@
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
"definedIn": "dt"
},
@@ -13124,7 +13807,7 @@
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
"definedIn": "prose"
},
@@ -13145,7 +13828,7 @@
"id": "api-mlgraphbuilder-tanh-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-tanh-method",
"title": "tanh",
- "number": "7.7.44"
+ "number": "7.9.44"
},
"definedIn": "prose"
},
@@ -13166,7 +13849,7 @@
"id": "api-mlgraphbuilder-tanh-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-tanh-method",
"title": "tanh",
- "number": "7.7.44"
+ "number": "7.9.44"
},
"definedIn": "prose"
},
@@ -13187,7 +13870,7 @@
"id": "api-mlgraphbuilder-tanh-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-tanh-method",
"title": "tanh",
- "number": "7.7.44"
+ "number": "7.9.44"
},
"definedIn": "dt"
},
@@ -13209,7 +13892,7 @@
"id": "api-mlgraphbuilder-tanh-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-tanh-method",
"title": "tanh",
- "number": "7.7.44"
+ "number": "7.9.44"
},
"definedIn": "prose"
},
@@ -13228,7 +13911,7 @@
"id": "api-mlgraphbuilder-transpose",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-transpose",
"title": "transpose",
- "number": "7.7.45"
+ "number": "7.9.45"
},
"definedIn": "pre"
},
@@ -13249,7 +13932,7 @@
"id": "api-mlgraphbuilder-transpose",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-transpose",
"title": "transpose",
- "number": "7.7.45"
+ "number": "7.9.45"
},
"definedIn": "dt"
},
@@ -13270,7 +13953,7 @@
"id": "api-mlgraphbuilder-transpose",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-transpose",
"title": "transpose",
- "number": "7.7.45"
+ "number": "7.9.45"
},
"definedIn": "prose"
},
@@ -13291,7 +13974,7 @@
"id": "api-mlgraphbuilder-transpose",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-transpose",
"title": "transpose",
- "number": "7.7.45"
+ "number": "7.9.45"
},
"definedIn": "prose"
},
@@ -13312,7 +13995,7 @@
"id": "api-mlgraphbuilder-transpose",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-transpose",
"title": "transpose",
- "number": "7.7.45"
+ "number": "7.9.45"
},
"definedIn": "dt"
},
@@ -13334,7 +14017,7 @@
"id": "api-mlgraphbuilder-transpose",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-transpose",
"title": "transpose",
- "number": "7.7.45"
+ "number": "7.9.45"
},
"definedIn": "prose"
},
@@ -13353,7 +14036,7 @@
"id": "api-mlgraphbuilder-triangular",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular",
"title": "triangular",
- "number": "7.7.46"
+ "number": "7.9.46"
},
"definedIn": "pre"
},
@@ -13374,7 +14057,7 @@
"id": "api-mlgraphbuilder-triangular",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular",
"title": "triangular",
- "number": "7.7.46"
+ "number": "7.9.46"
},
"definedIn": "dt"
},
@@ -13395,7 +14078,7 @@
"id": "api-mlgraphbuilder-triangular",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular",
"title": "triangular",
- "number": "7.7.46"
+ "number": "7.9.46"
},
"definedIn": "dt"
},
@@ -13416,7 +14099,7 @@
"id": "api-mlgraphbuilder-triangular",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular",
"title": "triangular",
- "number": "7.7.46"
+ "number": "7.9.46"
},
"definedIn": "prose"
},
@@ -13437,7 +14120,7 @@
"id": "api-mlgraphbuilder-triangular",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular",
"title": "triangular",
- "number": "7.7.46"
+ "number": "7.9.46"
},
"definedIn": "prose"
},
@@ -13458,7 +14141,7 @@
"id": "api-mlgraphbuilder-triangular",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular",
"title": "triangular",
- "number": "7.7.46"
+ "number": "7.9.46"
},
"definedIn": "dt"
},
@@ -13480,7 +14163,7 @@
"id": "api-mlgraphbuilder-triangular",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular",
"title": "triangular",
- "number": "7.7.46"
+ "number": "7.9.46"
},
"definedIn": "prose"
},
@@ -13499,7 +14182,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "pre"
},
@@ -13520,7 +14203,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "prose"
},
@@ -13541,7 +14224,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "prose"
},
@@ -13562,7 +14245,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "prose"
},
@@ -13583,7 +14266,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "prose"
},
@@ -13604,7 +14287,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "dt"
},
@@ -13625,7 +14308,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "dt"
},
@@ -13646,7 +14329,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "dt"
},
@@ -13667,7 +14350,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "dt"
},
@@ -13688,7 +14371,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "dt"
},
@@ -13710,7 +14393,7 @@
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
"definedIn": "prose"
},
diff --git a/tr/headings/webnn.json b/tr/headings/webnn.json
index a172896a47c7..d653ab10ee1f 100644
--- a/tr/headings/webnn.json
+++ b/tr/headings/webnn.json
@@ -329,40 +329,82 @@
"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"
+ },
+ {
+ "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"
+ },
+ {
+ "id": "api-mlcontext-createtensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-createtensor",
+ "level": 4,
+ "title": "createTensor()",
+ "number": "7.3.4"
+ },
+ {
+ "id": "api-mlcontext-readtensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-readtensor",
+ "level": 4,
+ "title": "readTensor(tensor)",
+ "number": "7.3.5"
+ },
+ {
+ "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"
+ },
+ {
+ "id": "api-mlcontext-writetensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mlcontext-writetensor",
+ "level": 4,
+ "title": "writeTensor()",
+ "number": "7.3.7"
+ },
{
"id": "api-mlcontext-opsupportlimits",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits",
"level": 4,
"title": "opSupportLimits()",
- "number": "7.3.3"
+ "number": "7.3.8"
},
{
"id": "api-mlcontext-opsupportlimits-dictionary",
"href": "https://www.w3.org/TR/webnn/#api-mlcontext-opsupportlimits-dictionary",
"level": 5,
"title": "MLOpSupportLimits dictionary",
- "number": "7.3.3.1"
+ "number": "7.3.8.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.3.2"
+ "number": "7.3.8.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.3.3"
+ "number": "7.3.8.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.3.4"
+ "number": "7.3.8.4"
},
{
"id": "api-mlgraph",
@@ -399,376 +441,404 @@
"title": "MLNumber",
"number": "7.6.1.1"
},
+ {
+ "id": "api-mltensordescriptor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensordescriptor",
+ "level": 3,
+ "title": "MLTensorDescriptor dictionary",
+ "number": "7.7"
+ },
+ {
+ "id": "api-mltensor",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor",
+ "level": 3,
+ "title": "MLTensor interface",
+ "number": "7.8"
+ },
+ {
+ "id": "api-mltensor-create",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor-create",
+ "level": 4,
+ "title": "Creating an MLTensor",
+ "number": "7.8.1"
+ },
+ {
+ "id": "api-mltensor-destroy",
+ "href": "https://www.w3.org/TR/webnn/#api-mltensor-destroy",
+ "level": 4,
+ "title": "destroy()",
+ "number": "7.8.2"
+ },
{
"id": "api-mlgraphbuilder",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder",
"level": 3,
"title": "MLGraphBuilder interface",
- "number": "7.7"
+ "number": "7.9"
},
{
"id": "api-mlgraphbuilder-constructor",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constructor",
"level": 4,
"title": "MLGraphBuilder constructor",
- "number": "7.7.1"
+ "number": "7.9.1"
},
{
"id": "api-mlgraphbuilder-input",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-input",
"level": 4,
"title": "input operands",
- "number": "7.7.2"
+ "number": "7.9.2"
},
{
"id": "api-mlgraphbuilder-constant",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant",
"level": 4,
"title": "constant operands",
- "number": "7.7.3"
+ "number": "7.9.3"
},
{
- "id": "api-mlgraphbuilder-constant-bufferview",
- "href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-bufferview",
+ "id": "api-mlgraphbuilder-constant-buffer",
+ "href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-buffer",
"level": 5,
- "title": "constant(descriptor, bufferView)",
- "number": "7.7.3.1"
+ "title": "constant(descriptor, buffer)",
+ "number": "7.9.3.1"
},
{
"id": "api-mlgraphbuilder-constant-type-value",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-type-value",
"level": 5,
"title": "constant(type, value)",
- "number": "7.7.3.2"
+ "number": "7.9.3.2"
},
{
"id": "api-mlgraphbuilder-build",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-build",
"level": 4,
"title": "build method",
- "number": "7.7.4"
+ "number": "7.9.4"
},
{
"id": "api-mlgraphbuilder-argminmax",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"level": 4,
"title": "argMin/argMax operations",
- "number": "7.7.5"
+ "number": "7.9.5"
},
{
"id": "api-mlgraphbuilder-batchnorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm",
"level": 4,
"title": "batchNormalization",
- "number": "7.7.6"
+ "number": "7.9.6"
},
{
"id": "api-mlgraphbuilder-cast",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-cast",
"level": 4,
"title": "cast",
- "number": "7.7.7"
+ "number": "7.9.7"
},
{
"id": "api-mlgraphbuilder-clamp",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp",
"level": 4,
"title": "clamp",
- "number": "7.7.8"
+ "number": "7.9.8"
},
{
"id": "api-mlgraphbuilder-concat",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat",
"level": 4,
"title": "concat",
- "number": "7.7.9"
+ "number": "7.9.9"
},
{
"id": "api-mlgraphbuilder-conv2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d",
"level": 4,
"title": "conv2d",
- "number": "7.7.10"
+ "number": "7.9.10"
},
{
"id": "api-mlgraphbuilder-convtranspose2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d",
"level": 4,
"title": "convTranspose2d",
- "number": "7.7.11"
+ "number": "7.9.11"
},
{
"id": "api-mlgraphbuilder-binary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary",
"level": 4,
"title": "Element-wise binary operations",
- "number": "7.7.12"
+ "number": "7.9.12"
},
{
"id": "api-mlgraphbuilder-logical",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical",
"level": 4,
"title": "Element-wise logical operations",
- "number": "7.7.13"
+ "number": "7.9.13"
},
{
"id": "api-mlgraphbuilder-unary",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
"level": 4,
"title": "Element-wise unary operations",
- "number": "7.7.14"
+ "number": "7.9.14"
},
{
"id": "api-mlgraphbuilder-elu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu",
"level": 4,
"title": "elu",
- "number": "7.7.15"
+ "number": "7.9.15"
},
{
"id": "api-mlgraphbuilder-expand",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-expand",
"level": 4,
"title": "expand",
- "number": "7.7.16"
+ "number": "7.9.16"
},
{
"id": "api-mlgraphbuilder-gather",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather",
"level": 4,
"title": "gather",
- "number": "7.7.17"
+ "number": "7.9.17"
},
{
"id": "api-mlgraphbuilder-gelu-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gelu-method",
"level": 4,
"title": "gelu",
- "number": "7.7.18"
+ "number": "7.9.18"
},
{
"id": "api-mlgraphbuilder-gemm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm",
"level": 4,
"title": "gemm",
- "number": "7.7.19"
+ "number": "7.9.19"
},
{
"id": "api-mlgraphbuilder-gru",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru",
"level": 4,
"title": "gru",
- "number": "7.7.20"
+ "number": "7.9.20"
},
{
"id": "api-mlgraphbuilder-grucell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell",
"level": 4,
"title": "gruCell",
- "number": "7.7.21"
+ "number": "7.9.21"
},
{
"id": "api-mlgraphbuilder-hard-sigmoid",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-sigmoid",
"level": 4,
"title": "hardSigmoid",
- "number": "7.7.22"
+ "number": "7.9.22"
},
{
"id": "api-mlgraphbuilder-hard-swish",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-swish",
"level": 4,
"title": "hardSwish",
- "number": "7.7.23"
+ "number": "7.9.23"
},
{
"id": "api-mlgraphbuilder-instancenorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm",
"level": 4,
"title": "instanceNormalization",
- "number": "7.7.24"
+ "number": "7.9.24"
},
{
"id": "api-mlgraphbuilder-layernorm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm",
"level": 4,
"title": "layerNormalization",
- "number": "7.7.25"
+ "number": "7.9.25"
},
{
"id": "api-mlgraphbuilder-leakyrelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leakyrelu",
"level": 4,
"title": "leakyRelu",
- "number": "7.7.26"
+ "number": "7.9.26"
},
{
"id": "api-mlgraphbuilder-linear",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear",
"level": 4,
"title": "linear",
- "number": "7.7.27"
+ "number": "7.9.27"
},
{
"id": "api-mlgraphbuilder-lstm",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm",
"level": 4,
"title": "lstm",
- "number": "7.7.28"
+ "number": "7.9.28"
},
{
"id": "api-mlgraphbuilder-lstmcell",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell",
"level": 4,
"title": "lstmCell",
- "number": "7.7.29"
+ "number": "7.9.29"
},
{
"id": "api-mlgraphbuilder-matmul",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-matmul",
"level": 4,
"title": "matmul",
- "number": "7.7.30"
+ "number": "7.9.30"
},
{
"id": "api-mlgraphbuilder-pad",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad",
"level": 4,
"title": "pad",
- "number": "7.7.31"
+ "number": "7.9.31"
},
{
"id": "api-mlgraphbuilder-pool2d",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d",
"level": 4,
"title": "Pooling operations",
- "number": "7.7.32"
+ "number": "7.9.32"
},
{
"id": "api-mlgraphbuilder-pool2d-average",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-average",
"level": 5,
"title": "averagePool2d",
- "number": "7.7.32.1"
+ "number": "7.9.32.1"
},
{
"id": "api-mlgraphbuilder-pool2d-l2",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-l2",
"level": 5,
"title": "l2Pool2d",
- "number": "7.7.32.2"
+ "number": "7.9.32.2"
},
{
"id": "api-mlgraphbuilder-pool2d-max",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-max",
"level": 5,
"title": "maxPool2d",
- "number": "7.7.32.3"
+ "number": "7.9.32.3"
},
{
"id": "api-mlgraphbuilder-prelu",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu",
"level": 4,
"title": "prelu",
- "number": "7.7.33"
+ "number": "7.9.33"
},
{
"id": "api-mlgraphbuilder-reduce",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce",
"level": 4,
"title": "Reduction operations",
- "number": "7.7.34"
+ "number": "7.9.34"
},
{
"id": "api-mlgraphbuilder-relu-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu-method",
"level": 4,
"title": "relu",
- "number": "7.7.35"
+ "number": "7.9.35"
},
{
"id": "api-mlgraphbuilder-resample2d-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method",
"level": 4,
"title": "resample2d",
- "number": "7.7.36"
+ "number": "7.9.36"
},
{
"id": "api-mlgraphbuilder-reshape-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reshape-method",
"level": 4,
"title": "reshape",
- "number": "7.7.37"
+ "number": "7.9.37"
},
{
"id": "api-mlgraphbuilder-sigmoid-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-sigmoid-method",
"level": 4,
"title": "sigmoid",
- "number": "7.7.38"
+ "number": "7.9.38"
},
{
"id": "api-mlgraphbuilder-slice",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-slice",
"level": 4,
"title": "slice",
- "number": "7.7.39"
+ "number": "7.9.39"
},
{
"id": "api-mlgraphbuilder-softmax-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax-method",
"level": 4,
"title": "softmax",
- "number": "7.7.40"
+ "number": "7.9.40"
},
{
"id": "api-mlgraphbuilder-softplus-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softplus-method",
"level": 4,
"title": "softplus",
- "number": "7.7.41"
+ "number": "7.9.41"
},
{
"id": "api-mlgraphbuilder-softsign-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softsign-method",
"level": 4,
"title": "softsign",
- "number": "7.7.42"
+ "number": "7.9.42"
},
{
"id": "api-mlgraphbuilder-split",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split",
"level": 4,
"title": "split",
- "number": "7.7.43"
+ "number": "7.9.43"
},
{
"id": "api-mlgraphbuilder-tanh-method",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-tanh-method",
"level": 4,
"title": "tanh",
- "number": "7.7.44"
+ "number": "7.9.44"
},
{
"id": "api-mlgraphbuilder-transpose",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-transpose",
"level": 4,
"title": "transpose",
- "number": "7.7.45"
+ "number": "7.9.45"
},
{
"id": "api-mlgraphbuilder-triangular",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular",
"level": 4,
"title": "triangular",
- "number": "7.7.46"
+ "number": "7.9.46"
},
{
"id": "api-mlgraphbuilder-where",
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where",
"level": 4,
"title": "where",
- "number": "7.7.47"
+ "number": "7.9.47"
},
{
"id": "algorithms",
diff --git a/tr/idl/webnn.idl b/tr/idl/webnn.idl
index 41293cffb44a..77045f8fad7f 100644
--- a/tr/idl/webnn.idl
+++ b/tr/idl/webnn.idl
@@ -33,6 +33,7 @@ interface ML {
};
typedef record MLNamedArrayBufferViews;
+typedef record MLNamedTensors;
dictionary MLComputeResult {
MLNamedArrayBufferViews inputs;
@@ -41,8 +42,17 @@ dictionary MLComputeResult {
[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);
+
+ Promise readTensor(MLTensor tensor);
+ Promise readTensor(MLTensor tensor, AllowSharedBufferSource outputData);
+
+ undefined writeTensor(MLTensor tensor, AllowSharedBufferSource inputData);
MLOpSupportLimits opSupportLimits();
};
@@ -105,6 +115,21 @@ dictionary MLOperatorOptions {
typedef (bigint or unrestricted double) MLNumber;
+dictionary MLTensorDescriptor : MLOperandDescriptor {
+ boolean readable = false;
+ boolean writable = false;
+};
+
+[SecureContext, Exposed=(Window, DedicatedWorker)]
+interface MLTensor {
+ readonly attribute MLOperandDataType dataType;
+ readonly attribute FrozenArray shape;
+ readonly attribute boolean readable;
+ readonly attribute boolean writable;
+
+ undefined destroy();
+};
+
typedef record MLNamedOperands;
[SecureContext, Exposed=(Window, DedicatedWorker)]
@@ -116,7 +141,8 @@ interface MLGraphBuilder {
MLOperand input(USVString name, MLOperandDescriptor descriptor);
// Create an operand for a graph constant.
- MLOperand constant(MLOperandDescriptor descriptor, ArrayBufferView bufferView);
+ MLOperand constant(MLOperandDescriptor descriptor,
+ AllowSharedBufferSource buffer);
// Create a scalar operand from the specified number of the specified type.
MLOperand constant(MLOperandDataType type, MLNumber value);
diff --git a/tr/ids/WGSL.json b/tr/ids/WGSL.json
index 906ac22480fe..9ed7cc8f10cf 100644
--- a/tr/ids/WGSL.json
+++ b/tr/ids/WGSL.json
@@ -2953,11 +2953,11 @@
"https://www.w3.org/TR/WGSL/#ref-for-compound-statement%E2%91%A6",
"https://www.w3.org/TR/WGSL/#ref-for-variable-declaration%E2%91%A6",
"https://www.w3.org/TR/WGSL/#ref-for-value-declaration%E2%91%A4",
- "https://www.w3.org/TR/WGSL/#example-3440ef35",
- "https://www.w3.org/TR/WGSL/#example-f24668cd",
- "https://www.w3.org/TR/WGSL/#example-759330e0",
- "https://www.w3.org/TR/WGSL/#example-00c6c948",
- "https://www.w3.org/TR/WGSL/#example-4452362c",
+ "https://www.w3.org/TR/WGSL/#example-8c799ce1",
+ "https://www.w3.org/TR/WGSL/#example-a40b4a54",
+ "https://www.w3.org/TR/WGSL/#example-41a789ae",
+ "https://www.w3.org/TR/WGSL/#example-0fee2fe2",
+ "https://www.w3.org/TR/WGSL/#example-dc981772",
"https://www.w3.org/TR/WGSL/#for-statement",
"https://www.w3.org/TR/WGSL/#syntax-for_statement",
"https://www.w3.org/TR/WGSL/#ref-for-syntax-attribute%E2%91%A0%E2%93%AA",
diff --git a/tr/ids/webmidi.json b/tr/ids/webmidi.json
index b110b61cc613..70503be1cdc0 100644
--- a/tr/ids/webmidi.json
+++ b/tr/ids/webmidi.json
@@ -112,7 +112,7 @@
"https://www.w3.org/TR/webmidi/#ref-for-dom-midiinput-1",
"https://www.w3.org/TR/webmidi/#ref-for-dom-midiinputmap-2",
"https://www.w3.org/TR/webmidi/#ref-for-dom-midiinput-2",
- "https://www.w3.org/TR/webmidi/#example-1",
+ "https://www.w3.org/TR/webmidi/#ref-for-dfn-midi-input-port-1",
"https://www.w3.org/TR/webmidi/#midioutputmap-interface",
"https://www.w3.org/TR/webmidi/#MIDIOutputMap",
"https://www.w3.org/TR/webmidi/#dom-midioutputmap",
@@ -124,7 +124,6 @@
"https://www.w3.org/TR/webmidi/#ref-for-dom-midioutputmap-2",
"https://www.w3.org/TR/webmidi/#ref-for-dom-midioutput-2",
"https://www.w3.org/TR/webmidi/#ref-for-dfn-midi-output-port-1",
- "https://www.w3.org/TR/webmidi/#example-2",
"https://www.w3.org/TR/webmidi/#midiaccess-interface",
"https://www.w3.org/TR/webmidi/#MIDIAccess",
"https://www.w3.org/TR/webmidi/#dom-midiaccess",
@@ -142,7 +141,7 @@
"https://www.w3.org/TR/webmidi/#idl-def-midiaccess-sysexenabled",
"https://www.w3.org/TR/webmidi/#ref-for-dom-midiaccess-sysexenabled-1",
"https://www.w3.org/TR/webmidi/#dom-midiaccess-inputs",
- "https://www.w3.org/TR/webmidi/#ref-for-dfn-midi-input-port-1",
+ "https://www.w3.org/TR/webmidi/#ref-for-dfn-midi-input-port-2",
"https://www.w3.org/TR/webmidi/#dom-midiaccess-outputs",
"https://www.w3.org/TR/webmidi/#ref-for-dfn-midi-output-port-2",
"https://www.w3.org/TR/webmidi/#dom-midiaccess-onstatechange",
diff --git a/tr/ids/webnn.json b/tr/ids/webnn.json
index 138546540a9f..a30424ad15a8 100644
--- a/tr/ids/webnn.json
+++ b/tr/ids/webnn.json
@@ -298,6 +298,10 @@
"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",
@@ -315,6 +319,37 @@
"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-graph-inputs-outputs-graph",
+ "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedtensors",
+ "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-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-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-ArrayBuffer",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor",
+ "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-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",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor-tensor-outputdata-tensor",
+ "https://www.w3.org/TR/webnn/#ref-for-AllowSharedBufferSource",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-readtensor-tensor-outputdata-outputdata",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-writetensor",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-writetensor-tensor-inputdata-tensor",
+ "https://www.w3.org/TR/webnn/#ref-for-AllowSharedBufferSource%E2%91%A0",
+ "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",
@@ -330,6 +365,12 @@
"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-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-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",
+ "https://www.w3.org/TR/webnn/#issue-2fb8b6b6",
"https://www.w3.org/TR/webnn/#context-type",
"https://www.w3.org/TR/webnn/#context-type-default",
"https://www.w3.org/TR/webnn/#context-type-webgpu",
@@ -346,23 +387,37 @@
"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-ArrayBufferView%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-AllowSharedBufferSource%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor",
+ "https://www.w3.org/TR/webnn/#ref-for-buffersource-byte-length",
+ "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-table-the-typedarray-constructors",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype",
- "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-byte-length",
+ "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-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%A7",
+ "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",
+ "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",
+ "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%A0",
+ "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",
@@ -372,31 +427,31 @@
"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%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%A1",
+ "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%A2",
+ "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",
+ "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%A8",
- "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A8",
+ "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",
@@ -405,14 +460,14 @@
"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%93%AA",
+ "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%A3",
+ "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",
@@ -436,9 +491,9 @@
"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%A3",
+ "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%A1",
+ "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",
@@ -446,9 +501,9 @@
"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%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%A2",
+ "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",
@@ -477,6 +532,204 @@
"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-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/#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/#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/#dom-mlcontext-dispatch",
+ "https://www.w3.org/TR/webnn/#ref-for-list",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-map-getting-the-values",
+ "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-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-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-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-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-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/#issue-d3f82f0f",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-undefined%E2%91%A5",
+ "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-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",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A7",
+ "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-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-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-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-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/#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-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-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-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-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-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-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-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/#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-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/#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-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-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-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-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-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-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-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/#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",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#dom-mlcontext-writetensor-tensor-inputdata-tensor",
+ "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/#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-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-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-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-get-buffer-source-copy",
+ "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A0",
+ "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-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/#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",
@@ -500,15 +753,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%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A4",
"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%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A5",
"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%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A6",
"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",
@@ -549,39 +802,39 @@
"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%A3",
- "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%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A8",
"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%A0%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webnn/#dom-mlgraph-context-slot",
- "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-mlcontext%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/#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/#dom-mlgraph-inputdescriptors-slot",
- "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-mloperand%E2%91%A0%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%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%A0%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlgraph-outputdescriptors-slot",
- "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%A2",
- "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5",
+ "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-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%A0%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A2",
"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%A4",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A5",
- "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%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A3",
+ "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",
"https://www.w3.org/TR/webnn/#dom-mlinputoperandlayout-nchw",
"https://www.w3.org/TR/webnn/#dom-mlinputoperandlayout-nhwc",
@@ -605,16 +858,16 @@
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A3",
"https://www.w3.org/TR/webnn/#dom-mloperanddescriptor-shape",
"https://www.w3.org/TR/webnn/#create-an-mloperanddescriptor",
- "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-list",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A4",
+ "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-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%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate",
+ "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",
@@ -623,13 +876,13 @@
"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%A0",
+ "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-valid-dimension",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A4",
"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%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-byte-length%E2%91%A2",
"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",
@@ -643,7 +896,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%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A4",
"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",
@@ -653,7 +906,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webnn/#dom-mloperand-descriptor-slot",
- "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3",
"https://www.w3.org/TR/webnn/#dom-mloperand-name-slot",
"https://www.w3.org/TR/webnn/#ref-for-string",
@@ -676,17 +929,17 @@
"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%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A6",
"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%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A7",
"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",
- "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%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-mlcontext%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A6",
"https://www.w3.org/TR/webnn/#allowed-data-types",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A7",
@@ -704,7 +957,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%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A5",
"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",
@@ -716,7 +969,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A7",
"https://www.w3.org/TR/webnn/#create-an-mloperand",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-builder-slot%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A1",
@@ -728,7 +981,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%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4",
"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",
@@ -756,141 +1009,253 @@
"https://www.w3.org/TR/webnn/#issue-63bb2306",
"https://www.w3.org/TR/webnn/#ref-for-idl-bigint%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dfn-numeric-type",
+ "https://www.w3.org/TR/webnn/#api-mltensordescriptor",
+ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltensordescriptor%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltensordescriptor%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#dictdef-mltensordescriptor",
+ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensordescriptor-readable%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0",
+ "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-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",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-writetensor%E2%91%A1",
+ "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-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",
+ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltensordescriptor%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-data-slot%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-SecureContext%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-Exposed%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#mltensor",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-datatype",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-frozen-array%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-shape",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A3",
+ "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-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",
+ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#dom-mltensor-descriptor-slot",
+ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltensordescriptor%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#dom-mltensor-isdestroyed-slot",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-destroy%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#dom-mltensor-data-slot",
+ "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-context-slot%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-timeline-slot%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#mltensor-datatype",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A4",
+ "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/#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-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-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-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-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",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#create-an-mltensor",
+ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltensordescriptor%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-mltensor%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-context-slot%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-descriptor-slot%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mltensor-isdestroyed-slot%E2%91%A3",
+ "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/#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-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-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-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/#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%A2",
- "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A4",
+ "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-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%A4",
- "https://www.w3.org/TR/webnn/#ref-for-Exposed%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-SecureContext%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-Exposed%E2%91%A4",
"https://www.w3.org/TR/webnn/#mlgraphbuilder",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-mlgraphbuilder%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2%E2%91%A3",
"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%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-USVString%E2%91%A7",
"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%A3",
+ "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",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant",
- "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant-descriptor-bufferview-descriptor",
- "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant-descriptor-bufferview-bufferview",
+ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant-descriptor-buffer-descriptor",
+ "https://www.w3.org/TR/webnn/#ref-for-AllowSharedBufferSource%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant-descriptor-buffer-buffer",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant-type-value",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A2",
"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%A4",
- "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A0",
+ "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-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%A1%E2%91%A4",
+ "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-mlcontext%E2%91%A1%E2%91%A5",
+ "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%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A6",
"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",
- "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hasbuilt-slot",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A5",
"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%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A7",
"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",
- "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2%E2%91%A8",
"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%A8",
- "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%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-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",
+ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-securityerror%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA",
+ "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-dom-mlgraphbuilder-context-slot",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%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-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",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-input-name-descriptor-name",
"https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A0",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-input-name-descriptor-descriptor",
- "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A5",
+ "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%A0%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-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-invalidstateerror",
- "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%A2",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7",
+ "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-mloperand%E2%91%A3%E2%91%A5",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%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-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%A3",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8",
+ "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-mloperanddescriptor-check-dimensions",
- "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%93%AA",
+ "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-create-an-mloperand",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%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-dom-mloperand-name-slot%E2%91%A3",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%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%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%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%91%A8",
"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",
- "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-bufferview",
+ "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-buffer",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A7",
- "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-descriptor-bufferview-descriptor",
- "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A6",
- "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-descriptor-bufferview-bufferview",
- "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-descriptor-buffer-descriptor",
+ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-descriptor-buffer-buffer",
+ "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%A0%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%A1",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4",
"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%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A2",
"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%A6",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor%E2%91%A1",
- "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%A1",
+ "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-create-an-mloperand%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-get-buffer-source-copy",
- "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%A2%E2%91%A3",
+ "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-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",
@@ -898,118 +1263,112 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-type-value-type",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-type-value-value",
"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%A0%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%A2",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%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%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-idl-DOMException%E2%91%A0%E2%91%A3",
"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%A1%E2%93%AA",
- "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%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-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%A1%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A2%E2%93%AA",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-build",
- "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%A2%E2%91%A8",
"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%A0%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A2",
+ "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-invalidstateerror%E2%91%A2",
- "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%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-map-iterate%E2%91%A5",
- "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-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-mlgraphbuilder-validate-operand",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A2",
- "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-this%E2%91%A1%E2%91%A3",
+ "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-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%A0%E2%91%A6",
- "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%A0%E2%91%A5",
+ "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-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",
"https://www.w3.org/TR/webnn/#ref-for-queue",
- "https://www.w3.org/TR/webnn/#ref-for-map-getting-the-values",
+ "https://www.w3.org/TR/webnn/#ref-for-map-getting-the-values%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-list-is-empty",
"https://www.w3.org/TR/webnn/#ref-for-queue-dequeue",
"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%A1%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A1",
"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",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A1",
"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%A1%E2%91%A5",
- "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%A1%E2%91%A6",
- "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%A5",
- "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A1",
- "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%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-dom-mlgraphbuilder-context-slot%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-inputdescriptors-slot%E2%91%A1",
+ "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-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/#issue-6f962d4f",
- "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-idl-ArrayBuffer",
- "https://www.w3.org/TR/webnn/#ref-for-arraybuffer-transfer%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A5",
- "https://www.w3.org/TR/webnn/#ref-for-computational-graph-constants%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-outputdescriptors-slot%E2%91%A2",
+ "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-dom-mloperand-descriptor-slot%E2%91%A5",
- "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-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%A1%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-map-getting-the-values%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%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%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A5",
+ "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%A2",
- "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-implementation-slot%E2%91%A2",
- "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-this%E2%91%A2%E2%93%AA",
+ "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-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%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-computational-graph-constants%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build-outputs-outputs%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-identity",
"https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax",
"https://www.w3.org/TR/webnn/#dictdef-mlargminmaxoptions",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-keepdimensions",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A2",
@@ -1017,7 +1376,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-input",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-axis",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-options",
@@ -1026,7 +1385,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-input%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-axis%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-options%E2%91%A0",
@@ -1037,11 +1396,11 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlopsupportlimits-argmax",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlargminmaxoptions-keepdimensions",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlargminmaxoptions-outputdatatype",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-input",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A6",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-axis",
@@ -1075,43 +1434,43 @@
"https://www.w3.org/TR/webnn/#mlgraphbuilder-argminmax-op",
"https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A1",
"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%A4",
+ "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%A0",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A0",
+ "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-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A5",
- "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%A0%E2%91%A8",
"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%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-mlgraphbuilder-validate-operand%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A1",
- "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-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-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%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-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-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%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-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-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%A2%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-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%A0%E2%91%A3",
- "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%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%A0%E2%91%A5",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6",
+ "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",
@@ -1120,7 +1479,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-bias",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis",
"https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-epsilon",
@@ -1161,7 +1520,7 @@
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationoptions-axis",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw",
"https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationoptions-epsilon",
@@ -1228,83 +1587,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%A2%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%A6",
- "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%A1%E2%91%A6",
"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%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-mlgraphbuilder-validate-operand%E2%91%A1",
- "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%A4%E2%91%A1",
"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%A4",
- "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%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%93%AA",
+ "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-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%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0",
+ "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-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%A1%E2%91%A0",
- "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%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-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%A1%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%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-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%A1%E2%91%A2",
- "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%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-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%A1%E2%91%A3",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4",
+ "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-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%A1%E2%91%A4",
- "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%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-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%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7",
"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%A1%E2%91%A5",
- "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%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-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%A1%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%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-dom-mlbatchnormalizationoptions-bias%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%A8",
"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%A1%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A8",
+ "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-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%A1%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%93%AA",
+ "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-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%A2%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-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%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%93%AA",
"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%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A0",
"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",
@@ -1314,7 +1673,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-input",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-type",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-options",
@@ -1324,7 +1683,7 @@
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast-input-type-options-input",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A3",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast-input-type-options-type",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast-input-type-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A4",
@@ -1343,8 +1702,8 @@
"https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-cast",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-input%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA",
@@ -1359,7 +1718,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A1",
@@ -1370,17 +1729,17 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3",
"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%A3",
+ "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%A2%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A3",
"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%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A8",
"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%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-mlgraphbuilder-validate-operand%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A7",
- "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%A0",
+ "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-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",
@@ -1430,15 +1789,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%A2%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-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A6",
- "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%A1%E2%93%AA",
"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%A3%E2%93%AA",
- "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%A1",
+ "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-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",
@@ -1449,8 +1808,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%A2%E2%91%A3",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%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-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",
@@ -1464,7 +1823,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-options-inputs",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A3",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-options-axis",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-options-options",
@@ -1480,7 +1839,7 @@
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-options-axis",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A6",
@@ -1490,15 +1849,15 @@
"https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-options-inputs%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-list-item",
+ "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-options-inputs%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-options-inputs%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlconcatsupportlimits%E2%91%A0",
"https://www.w3.org/TR/webnn/#dom-mlconcatsupportlimits-inputs",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A3%E2%91%A1",
@@ -1512,53 +1871,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%A3%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%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A7",
- "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%A1%E2%91%A0",
"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%A3%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A2",
- "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%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A8",
+ "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-list-is-empty%E2%91%A0",
- "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%A4",
+ "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-mloperand-rank%E2%91%A6",
- "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%A2%E2%91%A5",
+ "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-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%A6",
+ "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%A2",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%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%A2%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A6",
+ "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-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%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A3",
+ "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-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%A3%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-shape%E2%91%A7",
+ "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-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%A3%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%93%AA",
- "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%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-create-an-mloperand%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%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%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",
@@ -1573,18 +1932,18 @@
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-padding",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A5",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-dilations",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-groups",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-inputlayout",
@@ -1618,7 +1977,7 @@
"https://www.w3.org/TR/webnn/#dom-mlconv2doptions-strides",
"https://www.w3.org/TR/webnn/#dom-mlconv2doptions-dilations",
"https://www.w3.org/TR/webnn/#dom-mlconv2doptions-groups",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webnn/#dom-mlconv2doptions-inputlayout",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A1",
@@ -1682,70 +2041,70 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2dfilteroperandlayout-ihwo%E2%91%A0",
"https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-conv-output-size",
"https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-conv2d-output-sizes",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A4",
"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%A3%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%A0",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A8",
- "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%A1%E2%91%A1",
"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%A3%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-mlconv2doptions-bias%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%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%A0",
+ "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-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%A3%E2%91%A4",
- "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%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-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%A3%E2%91%A5",
- "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%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-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%A3%E2%91%A6",
- "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%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-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%A3%E2%91%A7",
- "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%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-dom-mlconv2doptions-padding%E2%91%A0",
- "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%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%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%A3%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A5",
+ "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-dom-mlconv2doptions-strides%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-list%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-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%93%AA",
- "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%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-dom-mlconv2doptions-strides%E2%91%A2",
- "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%A3%E2%91%A7",
+ "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-dom-mlconv2doptions-dilations%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-list%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-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%A4%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-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-dom-mlconv2doptions-dilations%E2%91%A2",
- "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%93%AA",
+ "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-dom-mlconv2doptions-groups%E2%91%A1",
- "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%A0",
+ "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-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",
@@ -1757,20 +2116,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%A4%E2%91%A4",
- "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%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-dom-mlconv2doptions-groups%E2%91%A3",
- "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%A2",
+ "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-dom-mlconv2doptions-bias%E2%91%A2",
- "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%A5",
"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%A4%E2%91%A6",
- "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%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-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%A4%E2%91%A7",
- "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%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-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",
@@ -1778,19 +2137,19 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-inputlayout%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A4",
"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%A3",
+ "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%A4%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A5",
+ "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-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%A3%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%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%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A6",
"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",
@@ -1802,26 +2161,26 @@
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-padding",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-dilations",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputsizes",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A3",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-groups",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-inputlayout",
@@ -1850,7 +2209,7 @@
"https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-outputsizes",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding%E2%91%A0",
"https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-groups",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-inputlayout",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A5",
@@ -1897,89 +2256,89 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-convtranspose2d%E2%91%A2",
"https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-convtranspose-output-size",
"https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-convtranspose2d-output-sizes",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A2",
"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%A3%E2%91%A6",
+ "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%A1",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A8",
"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%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-mlgraphbuilder-validate-operand%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A4",
"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%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%A6",
+ "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-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%A5%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A7",
+ "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-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%A5%E2%91%A2",
- "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%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-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%A5%E2%91%A3",
- "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%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-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%A5%E2%91%A4",
- "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%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-dom-mlconvtranspose2doptions-padding%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-list%E2%91%A0%E2%91%A2",
+ "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%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%A5%E2%91%A5",
- "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%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-dom-mlconvtranspose2doptions-strides%E2%91%A1",
- "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%A3",
+ "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%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%A5%E2%91%A6",
- "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%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-dom-mlconv2doptions-strides%E2%91%A4",
- "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%A5%E2%91%A3",
+ "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-dom-mlconvtranspose2doptions-dilations%E2%91%A0",
- "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%A4",
+ "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%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%A5%E2%91%A8",
- "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%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-dom-mlconvtranspose2doptions-dilations%E2%91%A2",
- "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%A5",
+ "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-dom-mlconvtranspose2doptions-outputpadding%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%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A1",
+ "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%A6%E2%91%A0",
- "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%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-dom-mlconvtranspose2doptions-outputsizes%E2%91%A1",
- "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%91%A2",
"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%A6%E2%91%A1",
- "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%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-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%A6%E2%91%A2",
- "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%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-dom-mlconvtranspose2doptions-groups%E2%91%A1",
- "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%93%AA",
+ "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-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",
@@ -1989,20 +2348,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%A6%E2%91%A4",
- "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%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-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%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A3",
"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%A6%E2%91%A5",
- "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%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-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%A6%E2%91%A6",
- "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%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-dom-mlconvtranspose2doptions-outputsizes%E2%91%A2",
- "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%A4",
"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",
@@ -2012,19 +2371,19 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-inputlayout%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A7",
"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%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%A6%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A3",
+ "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-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%A3%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%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%A4",
+ "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%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",
@@ -2154,29 +2513,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%A1",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%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%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-dfn-throw%E2%91%A7%E2%91%A7",
"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%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-mlgraphbuilder-validate-operand%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A0",
- "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%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%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-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%A7%E2%91%A0",
- "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%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-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%A7%E2%91%A1",
- "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%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-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%A4%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A8",
"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",
@@ -2184,32 +2543,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%A7%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A3",
+ "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%A7%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A5",
+ "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%A7%E2%91%A6",
- "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%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%A7%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%93%AA",
+ "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%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%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%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%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%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%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",
@@ -2339,39 +2698,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%A2",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A2",
+ "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-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%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%A0%E2%93%AA%E2%91%A5",
"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%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-mlgraphbuilder-validate-operand%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%A8%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A7",
+ "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-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%A8%E2%91%A8",
- "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%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-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%A4%E2%91%A4",
- "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-exceptiondef-typeerror%E2%91%A7%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-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%93%AA%E2%91%A0",
- "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%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-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%93%AA%E2%91%A1",
- "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%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-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%A4%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-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",
@@ -2379,28 +2738,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%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%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%93%AA%E2%91%A4",
- "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%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%93%AA%E2%91%A6",
- "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-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%93%AA%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-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%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%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%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%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",
@@ -2565,21 +2924,21 @@
"https://www.w3.org/TR/webnn/#mlgraphbuilder-element-wise-unary-op",
"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%A6",
- "https://www.w3.org/TR/webnn/#ref-for-assert%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-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-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%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-invalidstateerror%E2%91%A0%E2%91%A2",
- "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%91%A5",
"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%A4%E2%91%A7",
- "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-exceptiondef-typeerror%E2%91%A7%E2%91%A2",
+ "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-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%A0%E2%91%A6",
- "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%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-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",
@@ -2592,80 +2951,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%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/#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%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/#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%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/#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%A1%E2%91%A3",
- "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-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%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%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%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%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%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%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%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%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%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%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%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%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%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%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%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%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%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%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",
@@ -2707,19 +3066,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%A4%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A5",
"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%A3%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-invalidstateerror%E2%91%A0%E2%91%A3",
- "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%A6",
"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%A5%E2%93%AA",
- "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-exceptiondef-typeerror%E2%91%A7%E2%91%A4",
+ "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-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%A3%E2%91%A5",
- "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%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-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",
@@ -2738,7 +3097,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand-input-newshape-options-input",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand-input-newshape-options-newshape",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand-input-newshape-options-options",
@@ -2749,7 +3108,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A2",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand-input-newshape-options-newshape",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A3",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand-input-newshape-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A3%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A3",
@@ -2770,23 +3129,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%A5%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%A6",
- "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%A4%E2%91%A5",
"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%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-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A1",
- "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-exceptiondef-typeerror%E2%91%A7%E2%91%A6",
+ "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-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%A3%E2%91%A8",
- "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%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-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%A5%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-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",
@@ -2795,7 +3154,7 @@
"https://www.w3.org/TR/webnn/#dictdef-mlgatheroptions",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A3%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgatheroptions-axis",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A4",
@@ -2818,7 +3177,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlopsupportlimits-gather",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgatheroptions%E2%91%A0",
"https://www.w3.org/TR/webnn/#dom-mlgatheroptions-axis",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-input",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A7",
@@ -2870,29 +3229,29 @@
"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%A5%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A0",
"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%93%AA",
+ "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-invalidstateerror%E2%91%A0%E2%91%A5",
- "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%A8",
"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%A5%E2%91%A4",
- "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-exceptiondef-typeerror%E2%91%A7%E2%91%A8",
+ "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-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%A4%E2%91%A1",
- "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%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-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%A4%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-iteration-break",
+ "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-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",
+ "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-iteration-continue",
"https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A4",
@@ -2901,7 +3260,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webnn/#example-f859eef7",
+ "https://www.w3.org/TR/webnn/#example-4cef02ec",
"https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gelu-method",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A0",
@@ -2936,19 +3295,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%A5%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A2",
"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%A4%E2%91%A3",
+ "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-invalidstateerror%E2%91%A0%E2%91%A6",
- "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%A2%E2%93%AA",
"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%A5%E2%91%A6",
- "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%A8%E2%91%A1",
+ "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-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%A4%E2%91%A5",
- "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%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-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",
@@ -2964,9 +3323,9 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-alpha",
"https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-beta",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-atranspose",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-btranspose",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A5",
@@ -2999,9 +3358,9 @@
"https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-c%E2%91%A0",
"https://www.w3.org/TR/webnn/#dom-mlgemmoptions-atranspose",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlgemmoptions-btranspose",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-a",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%93%AA",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-b",
@@ -3043,23 +3402,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%A5%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%93%AA",
- "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-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A5",
"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%A1%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-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A5",
- "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%91%A4%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A3",
+ "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-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%A4%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A4",
+ "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-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%93%AA",
- "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%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-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",
@@ -3074,26 +3433,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%A5%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A6",
+ "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-dom-mlgemmoptions-c%E2%91%A2",
- "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%A6",
"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%A5%E2%91%A1",
- "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%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-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%A5%E2%91%A2",
- "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%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-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%A6%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-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%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A7",
"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",
@@ -3116,9 +3475,9 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-initialhiddenstate",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-resetafter",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-returnsequence",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlrecurrentnetworkdirection",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-direction",
@@ -3138,10 +3497,10 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-recurrentweight",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-steps",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-hiddensize",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgruoptions",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-options",
@@ -3173,9 +3532,9 @@
"https://www.w3.org/TR/webnn/#dom-mlgruoptions-initialhiddenstate",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlgruoptions-resetafter",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webnn/#dom-mlgruoptions-returnsequence",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webnn/#dom-mlgruoptions-direction",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlrecurrentnetworkdirection%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkdirection-both",
@@ -3195,9 +3554,9 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout%E2%91%A3",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-steps",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A7",
- "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-hiddensize",
"https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-hiddensize",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%93%AA",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgruoptions%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A5",
@@ -3258,80 +3617,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%A6%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-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%A5%E2%91%A3",
+ "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-invalidstateerror%E2%91%A0%E2%91%A8",
- "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%A2%E2%91%A1",
"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%A6%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-mlgruoptions-bias%E2%91%A1",
- "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-recurrentbias%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-dom-mlgruoptions-initialhiddenstate%E2%91%A1",
+ "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-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%93%AA%E2%93%AA",
+ "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-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%A5%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%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-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%A5%E2%91%A6",
- "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-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-mloperand-shape%E2%91%A2%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%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-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%A5%E2%91%A8",
- "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-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-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%93%AA",
- "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%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-valid-dimension%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%93%AA%E2%91%A5",
+ "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-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%A0",
+ "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%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%A6%E2%91%A1",
- "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%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-mloperand-shape%E2%91%A2%E2%91%A7",
- "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%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-dom-mlgruoptions-recurrentbias%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%91%A2",
"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%A6%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-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-mloperand-shape%E2%91%A2%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%93%AA",
+ "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-dom-mlgruoptions-initialhiddenstate%E2%91%A2",
- "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%A3",
"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%A6%E2%91%A5",
- "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-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-mloperand-shape%E2%91%A3%E2%93%AA",
- "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%A1",
+ "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-dom-mlgruoptions-activations%E2%91%A0",
- "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%A4",
"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%A6%E2%91%A7",
- "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%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-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",
@@ -3343,24 +3702,24 @@
"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%A6%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-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%A6%E2%91%A3",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A0",
+ "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",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%93%AA",
"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%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-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%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A6",
"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%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A7",
"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",
@@ -3372,7 +3731,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-bias",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-recurrentbias",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-resetafter",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlgruweightlayout%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-layout",
@@ -3391,7 +3750,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-hiddenstate",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-hiddensize",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgrucelloptions",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-options",
@@ -3421,7 +3780,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout%E2%91%A5",
"https://www.w3.org/TR/webnn/#dom-mlgrucelloptions-resetafter",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webnn/#dom-mlgrucelloptions-layout",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlgruweightlayout%E2%91%A2",
"https://www.w3.org/TR/webnn/#dom-mlgrucelloptions-activations",
@@ -3438,7 +3797,7 @@
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-hiddenstate",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-hiddensize",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgrucelloptions%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%93%AA",
@@ -3491,67 +3850,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%A6%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%A1",
- "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-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A7",
"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%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-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A7",
- "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%A8%E2%91%A2",
"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%A7",
- "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%A2%E2%91%A8",
- "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%A3",
+ "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-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%A7%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%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-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%A7%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%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-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%A7%E2%91%A2",
- "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-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-mloperand-shape%E2%91%A3%E2%91%A3",
- "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%A0%E2%91%A7",
+ "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-mloperand-shape%E2%91%A3%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%A0%E2%91%A8",
+ "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-valid-dimension%E2%91%A5",
- "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%93%AA",
+ "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-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%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A0",
"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%A7%E2%91%A6",
- "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%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-mloperand-shape%E2%91%A3%E2%91%A5",
- "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%A1",
+ "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-dom-mlgrucelloptions-recurrentbias%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%A3%E2%91%A1",
"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%A7%E2%91%A8",
- "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%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-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%93%AA",
- "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%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-dom-mlgrucelloptions-activations%E2%91%A0",
- "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%91%A2",
"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%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%A4",
+ "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-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",
@@ -3559,15 +3918,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%A6%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-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%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A3",
"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%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A4",
"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",
@@ -3621,19 +3980,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%A6%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A4",
"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%A0%E2%91%A8%E2%91%A1",
+ "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-invalidstateerror%E2%91%A1%E2%91%A0",
- "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%A2%E2%91%A3",
"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%A6%E2%91%A8",
- "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%A5",
+ "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-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%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%A6",
+ "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-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",
@@ -3681,19 +4040,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%A7%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-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A3",
- "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-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A3",
"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%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-mlgraphbuilder-validate-operand%E2%91%A1%E2%93%AA",
- "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%A8%E2%91%A5",
- "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-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-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%A0%E2%91%A8%E2%91%A6",
- "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%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-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",
@@ -3786,27 +4145,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%A7%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-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A4",
- "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-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A6",
"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%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-mlgraphbuilder-validate-operand%E2%91%A1%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-this%E2%91%A0%E2%93%AA%E2%93%AA",
"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%A4",
- "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%A5",
- "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%93%AA",
+ "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-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%93%AA",
- "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-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-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%93%AA%E2%91%A0",
- "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%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-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",
@@ -3814,34 +4173,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%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A7",
"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%93%AA%E2%91%A1",
- "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%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-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%93%AA%E2%91%A2",
- "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%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-dom-mlinstancenormalizationoptions-bias%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%A8",
"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%93%AA%E2%91%A3",
- "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%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-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%93%AA%E2%91%A4",
- "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%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-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%A3%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%93%AA",
"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%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A0",
"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",
@@ -3856,7 +4215,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes",
"https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-epsilon",
@@ -3911,31 +4270,31 @@
"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%A7%E2%91%A3",
+ "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-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A5",
- "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-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A4",
"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%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-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A1",
- "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%A0%E2%93%AA%E2%91%A1",
"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%A0",
- "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%A1",
- "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%A6",
+ "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-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%93%AA%E2%91%A7",
- "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%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-dom-mllayernormalizationoptions-axes%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A3",
"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%93%AA",
+ "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",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A7",
@@ -3944,55 +4303,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%A3",
+ "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-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%93%AA%E2%91%A8",
- "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%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-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%93%AA",
- "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%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-dom-mllayernormalizationoptions-bias%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%A5",
"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%A0%E2%91%A0",
- "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%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-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%A0%E2%91%A1",
- "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-list-iterate%E2%91%A7",
+ "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-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%A0%E2%91%A2",
- "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-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-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%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A6",
"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%A0%E2%91%A3",
- "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%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-dom-mllayernormalizationoptions-bias%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%A7",
"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%A0%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-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-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%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A8",
"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%A4%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%93%AA",
"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",
@@ -4036,19 +4395,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%A7%E2%91%A5",
+ "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-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%A0%E2%91%A5",
+ "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-invalidstateerror%E2%91%A1%E2%91%A4",
- "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%A7",
"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%A7%E2%91%A6",
- "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%A5",
+ "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-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%A0%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-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-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",
@@ -4103,19 +4462,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%A7%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-mlgraphbuilder-hasbuilt-slot%E2%91%A1%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-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A7",
"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%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-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A3",
- "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%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%A3%E2%91%A7",
+ "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-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%A1%E2%91%A0",
- "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%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-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",
@@ -4145,7 +4504,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlrecurrentnetworkdirection%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-direction",
@@ -4165,10 +4524,10 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-recurrentweight",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-steps",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-hiddensize",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmoptions",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-options",
@@ -4208,7 +4567,7 @@
"https://www.w3.org/TR/webnn/#dom-mllstmoptions-initialcellstate",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A5",
"https://www.w3.org/TR/webnn/#dom-mllstmoptions-returnsequence",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webnn/#dom-mllstmoptions-direction",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlrecurrentnetworkdirection%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkdirection-both%E2%91%A1",
@@ -4229,9 +4588,9 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-layout%E2%91%A3",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-steps",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A4",
- "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-hiddensize",
"https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-hiddensize",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A6",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmoptions%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A0",
@@ -4306,102 +4665,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%A8%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-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A8",
- "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-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A0",
"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%A2%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-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A4",
- "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%A0%E2%93%AA%E2%91%A7",
"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%93%AA",
- "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%A0",
- "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight%E2%91%A1",
+ "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-dom-mllstmoptions-initialhiddenstate%E2%91%A1",
+ "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-dom-mllstmoptions-initialcellstate%E2%91%A1",
+ "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-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%93%AA",
+ "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-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%A1%E2%91%A3",
- "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%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-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%A1%E2%91%A4",
- "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%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-mloperand-shape%E2%91%A4%E2%91%A6",
- "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%A2",
+ "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-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%A1%E2%91%A6",
- "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-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-mloperand-shape%E2%91%A5%E2%91%A0",
- "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%A4",
+ "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-valid-dimension%E2%91%A7",
- "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%A5",
+ "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-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%A4",
+ "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%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%93%AA",
- "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%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-mloperand-shape%E2%91%A5%E2%91%A1",
- "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%A7",
+ "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-dom-mllstmoptions-recurrentbias%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%A6",
"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%A2%E2%91%A1",
- "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%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-mloperand-shape%E2%91%A5%E2%91%A2",
- "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%93%AA",
+ "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-dom-mllstmoptions-peepholeweight%E2%91%A2",
- "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%A7",
"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%A2%E2%91%A3",
- "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%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-mloperand-shape%E2%91%A5%E2%91%A3",
- "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%A1",
+ "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-dom-mllstmoptions-initialhiddenstate%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%A8",
"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%A2%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-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-mloperand-shape%E2%91%A5%E2%91%A4",
- "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%A3",
+ "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-dom-mllstmoptions-initialcellstate%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%A6%E2%93%AA",
"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%A2%E2%91%A7",
- "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-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-mloperand-shape%E2%91%A5%E2%91%A5",
- "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%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-dom-mllstmoptions-activations%E2%91%A0",
- "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%A6%E2%91%A0",
"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%93%AA",
- "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-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-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",
@@ -4414,34 +4773,34 @@
"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%A8%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-create-an-mloperand%E2%91%A0%E2%91%A6",
- "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%A0%E2%91%A0%E2%93%AA",
"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%A8%E2%91%A3",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A1",
+ "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-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",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%93%AA",
"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%A0",
+ "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%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%A1",
+ "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%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%A2",
+ "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%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%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-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%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A5",
"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",
@@ -4475,7 +4834,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-cellstate",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-hiddensize",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmcelloptions",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-options",
@@ -4529,7 +4888,7 @@
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-cellstate",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A6",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-hiddensize",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A8",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmcelloptions%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A3",
@@ -4600,108 +4959,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%A8%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-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%A3%E2%91%A0",
+ "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-invalidstateerror%E2%91%A1%E2%91%A7",
- "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%A3%E2%91%A0",
"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%A8%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-mllstmcelloptions-bias%E2%91%A1",
- "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-recurrentbias%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-dom-mllstmcelloptions-peepholeweight%E2%91%A1",
+ "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-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%A5%E2%91%A7",
+ "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-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%A3%E2%91%A2",
- "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%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-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%A3%E2%91%A3",
- "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%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-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%A3%E2%91%A4",
- "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%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-mloperand-shape%E2%91%A6%E2%93%AA",
- "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%A1",
+ "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-mloperand-shape%E2%91%A6%E2%91%A0",
- "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%A2",
+ "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-mloperand-shape%E2%91%A6%E2%91%A1",
- "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%A3",
+ "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-valid-dimension%E2%91%A0%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-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%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-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%A6%E2%91%A8",
+ "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%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%93%AA",
- "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%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-mloperand-shape%E2%91%A6%E2%91%A2",
- "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%A6",
+ "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-dom-mllstmcelloptions-recurrentbias%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%A7%E2%91%A0",
"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%A4%E2%91%A1",
- "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%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-mloperand-shape%E2%91%A6%E2%91%A3",
- "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%A6%E2%91%A8",
+ "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-dom-mllstmcelloptions-peepholeweight%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-map-exists%E2%91%A7%E2%91%A1",
"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%A4%E2%91%A3",
- "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%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-mloperand-shape%E2%91%A6%E2%91%A4",
- "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%A0",
+ "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-dom-mllstmcelloptions-activations%E2%91%A0",
- "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%91%A2",
"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%A4%E2%91%A5",
- "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%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-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%A0%E2%91%A7",
- "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%A3",
- "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A4",
+ "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-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%A8%E2%91%A6",
+ "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-create-an-mloperand%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-list%E2%91%A1%E2%91%A4",
+ "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-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%A2",
+ "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%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%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A4",
"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%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A5",
"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",
@@ -4763,38 +5122,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%A4%E2%91%A6",
- "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%A4%E2%91%A7",
- "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%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-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%A4%E2%91%A8",
- "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-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-list-append",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul",
- "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%A0%E2%91%A0%E2%91%A5",
"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%93%AA",
+ "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-invalidstateerror%E2%91%A1%E2%91%A8",
- "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%A3%E2%91%A1",
"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%93%AA%E2%93%AA",
- "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%A5",
+ "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-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%A5%E2%91%A1",
- "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%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-mlgraphbuilder-calculate-matmul-output-sizes",
- "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-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A1",
"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%93%AA%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%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",
@@ -4818,11 +5177,11 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-input",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A3",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-beginningpadding",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-endingpadding",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpadoptions",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-options",
@@ -4840,11 +5199,11 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A8",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-beginningpadding",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A8",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-endingpadding",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%93%AA",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpadoptions%E2%91%A1",
@@ -4867,40 +5226,40 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad%E2%91%A2",
"https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-padding-output-sizes",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%93%AA",
"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%93%AA%E2%91%A1",
+ "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%A1",
- "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-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A2",
"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%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-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A7",
- "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%A5%E2%91%A4",
- "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-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-mloperand-rank%E2%91%A4%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%A0%E2%91%A7%E2%91%A8",
+ "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-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%A5%E2%91%A6",
- "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%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-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%A5",
+ "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%A5%E2%91%A7",
- "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%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-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%A0",
+ "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%A1",
- "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-this%E2%91%A0%E2%91%A1%E2%91%A0",
"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",
@@ -4914,19 +5273,19 @@
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A5%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A5",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-windowdimensions",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-padding",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-layout",
@@ -4934,7 +5293,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-roundingtype",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A0",
@@ -5000,14 +5359,14 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-maxpool2d%E2%91%A0",
"https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-pool2d-output-sizes",
"https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A5",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlroundingtype%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlroundingtype%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-conv2d-output-sizes%E2%91%A0",
@@ -5019,70 +5378,70 @@
"https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A5",
"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%A2",
- "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%93%AA%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-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%A5%E2%91%A8",
+ "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-invalidstateerror%E2%91%A2%E2%91%A0",
- "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%A3%E2%91%A3",
"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%93%AA%E2%91%A5",
- "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%A1",
+ "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-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%A6%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-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-mloperand-rank%E2%91%A4%E2%91%A3",
- "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-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%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-dom-mlpool2doptions-windowdimensions%E2%91%A0",
- "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%A6",
"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%A6%E2%91%A2",
- "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%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-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%A6",
- "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%A7",
+ "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-dom-mlpool2doptions-padding%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A3",
+ "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%A6%E2%91%A3",
- "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%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-dom-mlpool2doptions-strides%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%A8%E2%93%AA",
"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%A4",
+ "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%A6%E2%91%A4",
- "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%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-dom-mlpool2doptions-strides%E2%91%A3",
- "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%A0%E2%91%A8%E2%91%A7",
+ "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-dom-mlpool2doptions-outputsizes%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-map-exists%E2%91%A8%E2%91%A0",
"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%A6%E2%91%A6",
- "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%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-dom-mlpool2doptions-strides%E2%91%A4",
- "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%93%AA",
+ "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-dom-mlpool2doptions-dilations%E2%91%A0",
- "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%A8%E2%91%A1",
"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%A5",
+ "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%A6%E2%91%A8",
- "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-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-dom-mlpool2doptions-dilations%E2%91%A3",
- "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%A1",
+ "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-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",
@@ -5093,14 +5452,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%A1",
- "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A6",
+ "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-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%A7%E2%91%A0",
- "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-mloperanddescriptor-shape%E2%91%A0%E2%91%A1",
+ "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-create-an-mloperand%E2%91%A1%E2%91%A2",
- "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%91%A1%E2%91%A3",
"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",
@@ -5109,18 +5468,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%A7%E2%91%A1",
- "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-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%A7%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-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%A7%E2%91%A5",
- "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-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",
@@ -5192,28 +5551,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%93%AA%E2%91%A7",
+ "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%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-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A6",
"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%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-mlgraphbuilder-validate-operand%E2%91%A2%E2%93%AA",
- "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-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%93%AA%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%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-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%93%AA",
- "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-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-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%A1%E2%91%A8%E2%91%A0",
- "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%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-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%A0%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%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",
@@ -5225,9 +5584,9 @@
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A5%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-axes%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A5",
@@ -5315,7 +5674,7 @@
"https://www.w3.org/TR/webnn/#dom-mlreduceoptions-axes",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A8",
"https://www.w3.org/TR/webnn/#dom-mlreduceoptions-keepdimensions",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel1-input-options-input",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A5",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel1-input-options-options",
@@ -5364,17 +5723,17 @@
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A6%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducesumsquare%E2%91%A0",
"https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-reduction-output-sizes",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-boolean",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-boolean",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-list-contain%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-list-append%E2%91%A0",
@@ -5382,32 +5741,32 @@
"https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A6",
"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%A0",
- "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%A0%E2%91%A0",
+ "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-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A4",
- "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%A2%E2%93%AA%E2%91%A0",
"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%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-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A0",
- "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-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A2",
- "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-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-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%A1%E2%91%A8%E2%91%A3",
- "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%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-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%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-dom-mlreduceoptions-keepdimensions%E2%91%A2",
- "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-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A8",
+ "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-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%A0%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-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",
@@ -5418,64 +5777,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%A1%E2%91%A8%E2%91%A5",
- "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%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%A1%E2%91%A8%E2%91%A7",
- "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-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%93%AA",
- "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%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%93%AA%E2%91%A1",
- "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-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%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%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%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%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%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%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%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%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%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%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%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%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",
@@ -5515,19 +5874,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%A0%E2%91%A3",
+ "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-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%A0%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-invalidstateerror%E2%91%A2%E2%91%A3",
- "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%A6",
"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%A0%E2%91%A4",
- "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-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%93%AA",
+ "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-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%A0%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-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-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",
@@ -5546,11 +5905,11 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-scales",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A2",
@@ -5593,14 +5952,14 @@
"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%A3",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%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-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%A4",
- "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%A5",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A2",
+ "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-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",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A0",
@@ -5609,13 +5968,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%A2",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A1",
+ "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-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%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A7",
"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",
@@ -5623,33 +5982,33 @@
"https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A6",
"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%A5",
+ "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%A0%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%A6",
- "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%91%A7",
"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%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-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A2",
- "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%A2%E2%91%A1%E2%93%AA",
- "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-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-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%A1%E2%91%A0",
- "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%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-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%A1%E2%91%A1",
- "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%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-mlgraphbuilder-check-resample-options",
- "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-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A4",
+ "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-mlgraphbuilder-calculate-resample-output-sizes",
- "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-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A5",
+ "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-create-an-mloperand%E2%91%A1%E2%91%A5",
- "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%A2%E2%91%A4",
"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",
@@ -5662,7 +6021,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape-input-newshape-options-input",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A3",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape-input-newshape-options-newshape",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A5%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape-input-newshape-options-options",
@@ -5673,7 +6032,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%93%AA",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape-input-newshape-options-newshape",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A2",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape-input-newshape-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A6%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A0",
@@ -5694,29 +6053,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%A0%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%A7",
- "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%A2%E2%91%A3",
"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%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-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A3",
- "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%A2%E2%91%A1%E2%91%A5",
- "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-idl-unsigned-long%E2%91%A4%E2%91%A2",
+ "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-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%A3",
- "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A7",
+ "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%A1%E2%91%A6",
- "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%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-mloperand-shape%E2%91%A7%E2%91%A3",
- "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%A0%E2%91%A8",
+ "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-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%A3",
+ "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-create-an-mloperand%E2%91%A1%E2%91%A6",
- "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%A2%E2%91%A7",
"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",
@@ -5755,19 +6114,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%A1%E2%91%A1",
+ "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-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%A1%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-invalidstateerror%E2%91%A2%E2%91%A6",
- "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%A4%E2%93%AA",
"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%A1%E2%91%A2",
- "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%93%AA",
+ "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-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%A2%E2%91%A0",
- "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-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-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",
@@ -5781,11 +6140,11 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice-input-starts-sizes-options-input",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A4",
- "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-idl-unsigned-long%E2%91%A4%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice-input-starts-sizes-options-starts",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A5",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice-input-starts-sizes-options-sizes",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A6%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice-input-starts-sizes-options-options",
@@ -5796,11 +6155,11 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A7",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-starts",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A2",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-sizes",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A3",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A6%E2%91%A3",
@@ -5822,35 +6181,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%A1%E2%91%A3",
+ "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-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%A2%E2%91%A1",
+ "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-invalidstateerror%E2%91%A2%E2%91%A7",
- "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%A4%E2%91%A0",
"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%A1%E2%91%A4",
- "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%A1%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A8",
- "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%A2",
+ "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-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-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%A2%E2%91%A4",
- "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-list-iterate%E2%91%A0%E2%91%A2",
+ "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-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%A2%E2%91%A5",
- "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%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/#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%A2%E2%91%A6",
- "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%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-mloperand-shape%E2%91%A7%E2%91%A5",
- "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%A6",
+ "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-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",
@@ -5863,7 +6222,7 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax-input-axis-options-input",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A6",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax-input-axis-options-axis",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A6%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax-input-axis-options-options",
@@ -5873,7 +6232,7 @@
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax-input-axis-options-input",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax-input-axis-options-axis",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%93%AA",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax-input-axis-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A6%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A2",
@@ -5895,22 +6254,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%A1%E2%91%A5",
+ "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-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%A2%E2%91%A8",
+ "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-invalidstateerror%E2%91%A2%E2%91%A8",
- "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%A4%E2%91%A1",
"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%A1%E2%91%A6",
- "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%A1%E2%91%A7",
+ "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-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%A3%E2%91%A0",
- "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-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-mloperand-rank%E2%91%A5%E2%91%A6",
- "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%93%AA",
+ "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-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",
@@ -5950,19 +6309,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%A1%E2%91%A7",
+ "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-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%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-invalidstateerror%E2%91%A3%E2%93%AA",
- "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%A4%E2%91%A2",
"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%A1%E2%91%A8",
- "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%A0",
+ "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-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%A3%E2%91%A4",
- "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%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-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",
@@ -6002,19 +6361,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%A2%E2%93%AA",
+ "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-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%A3%E2%91%A5",
+ "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-invalidstateerror%E2%91%A3%E2%91%A0",
- "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%A4%E2%91%A3",
"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%A2%E2%91%A0",
- "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%A2%E2%91%A2",
+ "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-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%A3%E2%91%A7",
- "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-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-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",
@@ -6024,7 +6383,7 @@
"https://www.w3.org/TR/webnn/#dictdef-mlsplitoptions",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A7%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlsplitoptions-axis",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A5%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A3",
@@ -6033,10 +6392,10 @@
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split-input-splits-options-input",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A3%E2%93%AA",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split-input-splits-options-splits",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitoptions",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split-input-splits-options-options",
@@ -6051,25 +6410,25 @@
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-input",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A3",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-splits",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A6",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-options",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitoptions%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A8",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitoptions%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlsplitoptions-axis",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A7",
"https://www.w3.org/TR/webnn/#constraints-split",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split%E2%91%A0",
@@ -6095,38 +6454,38 @@
"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%A2%E2%91%A1",
+ "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-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%A3%E2%91%A8",
+ "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-invalidstateerror%E2%91%A3%E2%91%A1",
- "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%A4%E2%91%A4",
"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%A2%E2%91%A2",
- "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%A4",
+ "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-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%A4%E2%91%A0",
- "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-idl-unsigned-long%E2%91%A6%E2%93%AA",
+ "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-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%A4%E2%91%A1",
- "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-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-idl-sequence%E2%91%A4%E2%93%AA",
- "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-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%A2%E2%91%A7",
+ "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/#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%A4%E2%91%A3",
- "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-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-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%A4",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A6",
- "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-idl-unsigned-long%E2%91%A6%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A6",
@@ -6167,19 +6526,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%A2%E2%91%A3",
+ "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-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%A4%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-invalidstateerror%E2%91%A3%E2%91%A2",
- "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%91%A5",
"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%A2%E2%91%A4",
- "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%93%AA",
+ "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-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%A4%E2%91%A6",
- "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%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-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",
@@ -6190,7 +6549,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A7%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A3%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A2",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation",
"https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A5%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A8%E2%93%AA",
@@ -6228,31 +6587,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%A2%E2%91%A5",
+ "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-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%A4%E2%91%A7",
+ "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-invalidstateerror%E2%91%A3%E2%91%A3",
- "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%A6",
"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%A2%E2%91%A6",
- "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%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-dom-mltransposeoptions-permutation%E2%91%A0",
- "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%A8",
"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%A8%E2%91%A8",
+ "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-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%93%AA",
- "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%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-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%A0",
- "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%A5%E2%91%A1",
- "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-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-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",
@@ -6261,7 +6620,7 @@
"https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular",
"https://www.w3.org/TR/webnn/#dictdef-mltriangularoptions",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A7%E2%91%A4",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A1%E2%91%A3",
"https://www.w3.org/TR/webnn/#ref-for-dom-mltriangularoptions-upper",
"https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-idl-long%E2%91%A0",
@@ -6278,7 +6637,7 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlopsupportlimits-triangular",
"https://www.w3.org/TR/webnn/#ref-for-dictdef-mltriangularoptions%E2%91%A0",
"https://www.w3.org/TR/webnn/#dom-mltriangularoptions-upper",
- "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A1%E2%91%A4",
"https://www.w3.org/TR/webnn/#dom-mltriangularoptions-diagonal",
"https://www.w3.org/TR/webnn/#ref-for-idl-long%E2%91%A1",
"https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular-input-options-input",
@@ -6302,19 +6661,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%A2%E2%91%A7",
+ "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-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%A5%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-invalidstateerror%E2%91%A3%E2%91%A4",
- "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%A7",
"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%A2%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%A5",
+ "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-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%A5%E2%91%A4",
- "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%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-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",
@@ -6399,32 +6758,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%A3%E2%93%AA",
+ "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-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%A5%E2%91%A5",
+ "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-invalidstateerror%E2%91%A3%E2%91%A5",
- "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%A8",
"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%A3%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%A3%E2%91%A7",
+ "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-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%A5%E2%91%A7",
- "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%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-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%A5%E2%91%A8",
- "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-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-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%93%AA",
- "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%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-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%A3%E2%91%A1",
+ "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-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",
@@ -6439,22 +6798,22 @@
"https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcastable%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-matmul%E2%91%A3",
"https://www.w3.org/TR/webnn/#unidirectionally-broadcasting",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A6",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-list-prepend",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A7",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A8",
+ "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webnn/#ref-for-list-append%E2%91%A2",
"https://www.w3.org/TR/webnn/#unidirectionally-broadcastable",
"https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcasting%E2%91%A0",
"https://www.w3.org/TR/webnn/#bidirectionally-broadcasting",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A8",
"https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A4%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A8",
@@ -6463,8 +6822,8 @@
"https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A2",
"https://www.w3.org/TR/webnn/#ref-for-list-prepend%E2%91%A1",
- "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A4%E2%91%A0",
- "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A4%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webnn/#ref-for-list-append%E2%91%A3",
"https://www.w3.org/TR/webnn/#bidirectionally-broadcastable",
@@ -6472,10 +6831,10 @@
"https://www.w3.org/TR/webnn/#algorithms-casting",
"https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnumber%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A1%E2%91%A2",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%93%AA%E2%91%A5",
"https://www.w3.org/TR/webnn/#cast",
- "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webnn/#ref-for-converttofloat",
"https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A8",
@@ -6510,10 +6869,10 @@
"https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape%E2%91%A5",
"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%A1",
- "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A0%E2%91%A0",
"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%A0%E2%91%A1",
+ "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A8",
+ "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-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",
@@ -6564,30 +6923,35 @@
"https://www.w3.org/TR/webnn/#77b4c09a",
"https://www.w3.org/TR/webnn/#36858240",
"https://www.w3.org/TR/webnn/#7b0d918d",
+ "https://www.w3.org/TR/webnn/#3de9e659",
"https://www.w3.org/TR/webnn/#027e3e49",
"https://www.w3.org/TR/webnn/#ae8def21",
"https://www.w3.org/TR/webnn/#f937b7b6",
"https://www.w3.org/TR/webnn/#9a9b558b",
"https://www.w3.org/TR/webnn/#06a6db54",
"https://www.w3.org/TR/webnn/#1243a891",
+ "https://www.w3.org/TR/webnn/#d8f8bd6e",
"https://www.w3.org/TR/webnn/#16d07e10",
"https://www.w3.org/TR/webnn/#45209803",
"https://www.w3.org/TR/webnn/#860300d4",
"https://www.w3.org/TR/webnn/#6b815fdd",
"https://www.w3.org/TR/webnn/#dd460c8e",
"https://www.w3.org/TR/webnn/#5afbefcd",
+ "https://www.w3.org/TR/webnn/#36333997",
"https://www.w3.org/TR/webnn/#649608b9",
"https://www.w3.org/TR/webnn/#e2fc6023",
"https://www.w3.org/TR/webnn/#47dfca75",
"https://www.w3.org/TR/webnn/#99c988d6",
"https://www.w3.org/TR/webnn/#15e48c39",
"https://www.w3.org/TR/webnn/#0204d188",
+ "https://www.w3.org/TR/webnn/#653d0848",
"https://www.w3.org/TR/webnn/#0698d556",
"https://www.w3.org/TR/webnn/#febebe0e",
"https://www.w3.org/TR/webnn/#12d6b9a8",
"https://www.w3.org/TR/webnn/#c88e6590",
"https://www.w3.org/TR/webnn/#4ed2f1ff",
"https://www.w3.org/TR/webnn/#d78f2e9c",
+ "https://www.w3.org/TR/webnn/#5e4b6157",
"https://www.w3.org/TR/webnn/#2f8afbfe",
"https://www.w3.org/TR/webnn/#6c9ab516",
"https://www.w3.org/TR/webnn/#de06d129",
@@ -6607,15 +6971,19 @@
"https://www.w3.org/TR/webnn/#a5c91173",
"https://www.w3.org/TR/webnn/#b75bb3bd",
"https://www.w3.org/TR/webnn/#c3e881ef",
+ "https://www.w3.org/TR/webnn/#7d783f61",
"https://www.w3.org/TR/webnn/#82ca3efc",
"https://www.w3.org/TR/webnn/#b0d7f3c3",
"https://www.w3.org/TR/webnn/#49f6acb5",
"https://www.w3.org/TR/webnn/#13d0450b",
"https://www.w3.org/TR/webnn/#95d7775a",
+ "https://www.w3.org/TR/webnn/#81dd847b",
"https://www.w3.org/TR/webnn/#dacde8b5",
"https://www.w3.org/TR/webnn/#bdcd112d",
"https://www.w3.org/TR/webnn/#5372cca8",
"https://www.w3.org/TR/webnn/#495737df",
+ "https://www.w3.org/TR/webnn/#35f3967f",
+ "https://www.w3.org/TR/webnn/#e97b1447",
"https://www.w3.org/TR/webnn/#8c800cdf",
"https://www.w3.org/TR/webnn/#cd787c3f",
"https://www.w3.org/TR/webnn/#eec1be2d",
@@ -6637,6 +7005,7 @@
"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",
diff --git a/tr/index.json b/tr/index.json
index 390388ea4abe..61cd19ee9fcb 100644
--- a/tr/index.json
+++ b/tr/index.json
@@ -1,7 +1,7 @@
{
"type": "crawl",
"title": "Reffy crawl",
- "date": "2024-11-27T01:34:49.506Z",
+ "date": "2024-11-28T01:35:32.378Z",
"options": {
"fallback": "tr/index.json",
"output": "report",
@@ -715,7 +715,7 @@
"https://aomediacodec.github.io/av1-spec/"
],
"crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf",
- "date": "27 November 2024",
+ "date": "28 November 2024",
"links": "links/av1-spec.json"
},
{
@@ -18743,11 +18743,11 @@
],
"crawled": "https://www.w3.org/TR/wasm-core-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 12 Nov 2024 08:59:34 GMT"
+ "lastModified": "Thu, 28 Nov 2024 00:19:53 GMT"
},
"generator": "bikeshed",
- "date": "12 November 2024",
- "revision": "bd2aa85d5f6c6129760a3705f4de8acdb45b8e67",
+ "date": "28 November 2024",
+ "revision": "202f29dd3ac353144cda34ba2c892b989d856ea2",
"algorithms": "algorithms/wasm-core-2.json",
"links": "links/wasm-core-2.json",
"refs": "refs/wasm-core-2.json",
@@ -18815,11 +18815,11 @@
],
"crawled": "https://www.w3.org/TR/wasm-js-api-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 12 Nov 2024 08:53:02 GMT"
+ "lastModified": "Thu, 28 Nov 2024 00:13:41 GMT"
},
"generator": "bikeshed",
- "date": "12 November 2024",
- "revision": "bd2aa85d5f6c6129760a3705f4de8acdb45b8e67",
+ "date": "28 November 2024",
+ "revision": "202f29dd3ac353144cda34ba2c892b989d856ea2",
"algorithms": "algorithms/wasm-js-api-2.json",
"links": "links/wasm-js-api-2.json",
"refs": "refs/wasm-js-api-2.json",
@@ -18880,11 +18880,11 @@
],
"crawled": "https://www.w3.org/TR/wasm-web-api-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 12 Nov 2024 08:52:56 GMT"
+ "lastModified": "Thu, 28 Nov 2024 00:13:36 GMT"
},
"generator": "bikeshed",
- "date": "12 November 2024",
- "revision": "bd2aa85d5f6c6129760a3705f4de8acdb45b8e67",
+ "date": "28 November 2024",
+ "revision": "202f29dd3ac353144cda34ba2c892b989d856ea2",
"algorithms": "algorithms/wasm-web-api-2.json",
"links": "links/wasm-web-api-2.json",
"refs": "refs/wasm-web-api-2.json",
@@ -20509,11 +20509,11 @@
],
"crawled": "https://www.w3.org/TR/webmidi/",
"crawlCacheInfo": {
- "lastModified": "Sat, 16 Nov 2024 02:12:02 GMT"
+ "lastModified": "Wed, 27 Nov 2024 23:49:11 GMT"
},
"generator": "respec",
- "date": "16 November 2024",
- "revision": "400deb4ca53e1a54710d9d12b3bc3646e440e8aa",
+ "date": "27 November 2024",
+ "revision": "c07b3a19d53c41db48f3287bb46561b01242a5fb",
"algorithms": "algorithms/webmidi.json",
"links": "links/webmidi.json",
"refs": "refs/webmidi.json",
@@ -20568,11 +20568,11 @@
],
"crawled": "https://www.w3.org/TR/webnn/",
"crawlCacheInfo": {
- "lastModified": "Tue, 19 Nov 2024 23:06:48 GMT"
+ "lastModified": "Thu, 28 Nov 2024 00:06:48 GMT"
},
"generator": "bikeshed",
- "date": "19 November 2024",
- "revision": "d4b4e9df82a4420a3ad2a06aa91487615b3a4961",
+ "date": "28 November 2024",
+ "revision": "bcc5dc2daac0127f332ef082155784176cf734ea",
"algorithms": "algorithms/webnn.json",
"links": "links/webnn.json",
"refs": "refs/webnn.json",
@@ -21722,11 +21722,11 @@
],
"crawled": "https://www.w3.org/TR/WGSL/",
"crawlCacheInfo": {
- "lastModified": "Fri, 22 Nov 2024 19:13:03 GMT"
+ "lastModified": "Wed, 27 Nov 2024 03:14:24 GMT"
},
"generator": "bikeshed",
- "date": "22 November 2024",
- "revision": "21ad1ef61f77cd90480221e683d1a9836de2a2a3",
+ "date": "27 November 2024",
+ "revision": "42bd9a154658d142707cab9e3df4b6e90bc33d61",
"algorithms": "algorithms/WGSL.json",
"links": "links/WGSL.json",
"refs": "refs/WGSL.json",
diff --git a/tr/links/webmidi.json b/tr/links/webmidi.json
index fa8483470684..a8506c1588f0 100644
--- a/tr/links/webmidi.json
+++ b/tr/links/webmidi.json
@@ -24,6 +24,7 @@
"https://github.com/WebAudio/web-midi-api/commit/192b269": {},
"https://github.com/WebAudio/web-midi-api/commit/1b79aed": {},
"https://github.com/WebAudio/web-midi-api/commit/1dbbfc8": {},
+ "https://github.com/WebAudio/web-midi-api/commit/1ec82dc": {},
"https://github.com/WebAudio/web-midi-api/commit/1ecc0db": {},
"https://github.com/WebAudio/web-midi-api/commit/21b4bc8": {},
"https://github.com/WebAudio/web-midi-api/commit/21f1bf8": {},
@@ -33,6 +34,7 @@
"https://github.com/WebAudio/web-midi-api/commit/29e654c": {},
"https://github.com/WebAudio/web-midi-api/commit/2a86fd5": {},
"https://github.com/WebAudio/web-midi-api/commit/2c6c05f": {},
+ "https://github.com/WebAudio/web-midi-api/commit/2db6f3b": {},
"https://github.com/WebAudio/web-midi-api/commit/2fa719a": {},
"https://github.com/WebAudio/web-midi-api/commit/308f2cb": {},
"https://github.com/WebAudio/web-midi-api/commit/30cf0c3": {},
@@ -47,6 +49,7 @@
"https://github.com/WebAudio/web-midi-api/commit/3c36dcb": {},
"https://github.com/WebAudio/web-midi-api/commit/3c77a2c": {},
"https://github.com/WebAudio/web-midi-api/commit/3d8587f": {},
+ "https://github.com/WebAudio/web-midi-api/commit/400deb4": {},
"https://github.com/WebAudio/web-midi-api/commit/423a5ee": {},
"https://github.com/WebAudio/web-midi-api/commit/4314762": {},
"https://github.com/WebAudio/web-midi-api/commit/439c238": {},
@@ -105,6 +108,7 @@
"https://github.com/WebAudio/web-midi-api/commit/a60f67c": {},
"https://github.com/WebAudio/web-midi-api/commit/ab65963": {},
"https://github.com/WebAudio/web-midi-api/commit/ae904d6": {},
+ "https://github.com/WebAudio/web-midi-api/commit/b1ca3d8": {},
"https://github.com/WebAudio/web-midi-api/commit/b360b7d": {},
"https://github.com/WebAudio/web-midi-api/commit/b45b011": {},
"https://github.com/WebAudio/web-midi-api/commit/b4ab121": {},
@@ -146,6 +150,7 @@
"https://github.com/WebAudio/web-midi-api/commit/f3373f4": {},
"https://github.com/WebAudio/web-midi-api/commit/f4cb70a": {},
"https://github.com/WebAudio/web-midi-api/commit/f5e7352": {},
+ "https://github.com/WebAudio/web-midi-api/commit/f6b931b": {},
"https://github.com/WebAudio/web-midi-api/commit/f6f0c80": {},
"https://github.com/WebAudio/web-midi-api/commit/f72328d": {},
"https://github.com/WebAudio/web-midi-api/commit/f97f937": {},
@@ -155,29 +160,16 @@
"https://github.com/WebAudio/web-midi-api/commit/fac6808": {},
"https://github.com/WebAudio/web-midi-api/commit/fc3d013": {},
"https://html.spec.whatwg.org/multipage/": {},
- "https://html.spec.whatwg.org/multipage/structured-data.html": {
- "anchors": [
- "transferable"
- ]
- },
"https://infra.spec.whatwg.org/": {},
"https://midi.org/midi-1-0-core-specifications": {},
- "https://webidl.spec.whatwg.org/": {
- "anchors": [
- "SecureContext",
- "idl-promise",
- "Exposed",
- "dfn-maplike",
- "idl-sequence"
- ]
- },
+ "https://webidl.spec.whatwg.org/": {},
"https://www.rfc-editor.org/rfc/rfc2119": {},
"https://www.rfc-editor.org/rfc/rfc8174": {},
"https://www.w3.org/TR/": {},
"https://www.w3.org/TR/hr-time-3/": {},
"https://www.w3.org/TR/permissions-policy-1/": {},
"https://www.w3.org/TR/permissions/": {},
- "https://www.w3.org/TR/webaudio/": {},
+ "https://www.w3.org/TR/webaudio-1.0/": {},
"https://www.w3.org/groups/wg/audio": {},
"https://www.w3.org/groups/wg/audio/ipr": {},
"https://www.w3.org/policies/patent-policy/": {
@@ -213,6 +205,11 @@
"audio"
]
},
+ "https://html.spec.whatwg.org/multipage/structured-data.html": {
+ "anchors": [
+ "transferable"
+ ]
+ },
"https://html.spec.whatwg.org/multipage/webappapis.html": {
"anchors": [
"eventhandler",
@@ -227,14 +224,19 @@
"https://webidl.spec.whatwg.org/": {
"anchors": [
"idl-boolean",
+ "SecureContext",
+ "idl-promise",
"idl-DOMException",
"notallowederror",
"aborterror",
"invalidstateerror",
"notsupportederror",
+ "Exposed",
+ "dfn-maplike",
"idl-DOMString",
"idl-Uint8Array",
"idl-undefined",
+ "idl-sequence",
"idl-octet"
]
},
diff --git a/tr/links/webnn.json b/tr/links/webnn.json
index a85b549162b6..f714fdf0f8f6 100644
--- a/tr/links/webnn.json
+++ b/tr/links/webnn.json
@@ -68,8 +68,10 @@
"https://github.com/webmachinelearning/webnn/issues/391": {},
"https://github.com/webmachinelearning/webnn/issues/456": {},
"https://github.com/webmachinelearning/webnn/issues/482": {},
- "https://github.com/webmachinelearning/webnn/issues/566": {},
+ "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": {},
@@ -175,22 +177,26 @@
"anchors": [
"implementation-defined",
"map-exists",
+ "map-size",
"map-iterate",
"assert",
"list",
- "list-clone",
+ "map-getting-the-values",
+ "list-extend",
+ "list-item",
"list-iterate",
+ "byte-sequence",
+ "byte-sequence-length",
+ "list-clone",
"list-size",
"string",
"ordered-set",
"queue",
- "map-getting-the-values",
"list-is-empty",
"queue-dequeue",
"set-append",
"queue-enqueue",
"the-range",
- "list-item",
"list-contain",
"iteration-break",
"iteration-continue",
@@ -235,13 +241,21 @@
"idl-record",
"idl-USVString",
"idl-undefined",
+ "idl-ArrayBuffer",
+ "AllowSharedBufferSource",
+ "buffersource-byte-length",
+ "idl-SharedArrayBuffer",
"exceptiondef-typeerror",
"buffersource-transferable",
"arraybuffer-transfer",
"buffersource-underlying-buffer",
- "buffersource-byte-length",
"dfn-throw",
"arraybufferview-write",
+ "unknownerror",
+ "arraybuffer-create",
+ "buffersource-detached",
+ "arraybuffer-write",
+ "dfn-get-buffer-source-copy",
"idl-sequence",
"EnforceRange",
"idl-unsigned-long",
@@ -256,8 +270,6 @@
"idl-boolean",
"new",
"invalidstateerror",
- "dfn-get-buffer-source-copy",
- "idl-ArrayBuffer",
"idl-float",
"idl-Float32Array",
"idl-Float16Array",
diff --git a/tr/refs/webmidi.json b/tr/refs/webmidi.json
index 863cc90200f4..b1429e2bf378 100644
--- a/tr/refs/webmidi.json
+++ b/tr/refs/webmidi.json
@@ -43,7 +43,7 @@
},
{
"name": "webaudio",
- "url": "https://www.w3.org/TR/webaudio/"
+ "url": "https://www.w3.org/TR/webaudio-1.0/"
},
{
"name": "WEBIDL",