Skip to content

Commit 6b14d25

Browse files
author
reffy-bot
committed
Update of TR report from new reffy run
Using reffy commit 19.1.2.
1 parent 7ba5100 commit 6b14d25

File tree

11 files changed

+1296
-1213
lines changed

11 files changed

+1296
-1213
lines changed

tr/algorithms/webnn.json

Lines changed: 315 additions & 295 deletions
Large diffs are not rendered by default.

tr/dfns/webnn.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7051,6 +7051,7 @@
70517051
"MLGraphBuilder/log(input, options)",
70527052
"MLGraphBuilder/neg(input, options)",
70537053
"MLGraphBuilder/reciprocal(input, options)",
7054+
"MLGraphBuilder/roundEven(input, options)",
70547055
"MLGraphBuilder/sin(input, options)",
70557056
"MLGraphBuilder/sign(input, options)",
70567057
"MLGraphBuilder/sqrt(input, options)",
@@ -7086,6 +7087,7 @@
70867087
"MLGraphBuilder/log(input, options)",
70877088
"MLGraphBuilder/neg(input, options)",
70887089
"MLGraphBuilder/reciprocal(input, options)",
7090+
"MLGraphBuilder/roundEven(input, options)",
70897091
"MLGraphBuilder/sin(input, options)",
70907092
"MLGraphBuilder/sign(input, options)",
70917093
"MLGraphBuilder/sqrt(input, options)",
@@ -7322,6 +7324,28 @@
73227324
"definedIn": "dt",
73237325
"links": []
73247326
},
7327+
{
7328+
"id": "dom-mlopsupportlimits-roundeven",
7329+
"href": "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-roundeven",
7330+
"linkingText": [
7331+
"roundEven"
7332+
],
7333+
"localLinkingText": [],
7334+
"type": "dict-member",
7335+
"for": [
7336+
"MLOpSupportLimits"
7337+
],
7338+
"access": "public",
7339+
"informative": false,
7340+
"heading": {
7341+
"id": "api-mlgraphbuilder-unary",
7342+
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
7343+
"title": "Element-wise unary operations",
7344+
"number": "7.9.15"
7345+
},
7346+
"definedIn": "dt",
7347+
"links": []
7348+
},
73257349
{
73267350
"id": "dom-mlopsupportlimits-sin",
73277351
"href": "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-sin",
@@ -7662,6 +7686,29 @@
76627686
"definedIn": "prose",
76637687
"links": []
76647688
},
7689+
{
7690+
"id": "dom-mlgraphbuilder-roundeven",
7691+
"href": "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-roundeven",
7692+
"linkingText": [
7693+
"roundEven(input, options)",
7694+
"roundEven(input)"
7695+
],
7696+
"localLinkingText": [],
7697+
"type": "method",
7698+
"for": [
7699+
"MLGraphBuilder"
7700+
],
7701+
"access": "public",
7702+
"informative": false,
7703+
"heading": {
7704+
"id": "api-mlgraphbuilder-unary",
7705+
"href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary",
7706+
"title": "Element-wise unary operations",
7707+
"number": "7.9.15"
7708+
},
7709+
"definedIn": "prose",
7710+
"links": []
7711+
},
76657712
{
76667713
"id": "dom-mlgraphbuilder-sin",
76677714
"href": "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sin",

tr/headings/shacl12-sparql.json

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@
113113
"id": "sparql-constraints-prebound",
114114
"href": "https://www.w3.org/TR/shacl12-sparql/#sparql-constraints-prebound",
115115
"level": 4,
116-
"title": "Pre-bound Variables in SPARQL Constraints ($this, $shapesGraph, $currentShape)",
116+
"title": "Pre-bound variable $this in SPARQL Constraints",
117117
"alternateIds": [
118-
"x2-3-1-pre-bound-variables-in-sparql-constraints-this-shapesgraph-currentshape"
118+
"x2-3-1-pre-bound-variable-this-in-sparql-constraints"
119119
],
120120
"number": "2.3.1"
121121
},
@@ -415,16 +415,6 @@
415415
],
416416
"number": "C.12"
417417
},
418-
{
419-
"id": "sparql-definition-in",
420-
"href": "https://www.w3.org/TR/shacl12-sparql/#sparql-definition-in",
421-
"level": 3,
422-
"title": "sh:in",
423-
"alternateIds": [
424-
"c-13-sh-in"
425-
],
426-
"number": "C.13"
427-
},
428418
{
429419
"id": "security",
430420
"href": "https://www.w3.org/TR/shacl12-sparql/#security",

tr/idl/webnn.idl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,7 @@ partial interface MLGraphBuilder {
400400
MLOperand log(MLOperand input, optional MLOperatorOptions options = {});
401401
MLOperand neg(MLOperand input, optional MLOperatorOptions options = {});
402402
MLOperand reciprocal(MLOperand input, optional MLOperatorOptions options = {});
403+
MLOperand roundEven(MLOperand input, optional MLOperatorOptions options = {});
403404
MLOperand sin(MLOperand input, optional MLOperatorOptions options = {});
404405
MLOperand sign(MLOperand input, optional MLOperatorOptions options = {});
405406
MLOperand sqrt(MLOperand input, optional MLOperatorOptions options = {});
@@ -417,6 +418,7 @@ partial dictionary MLOpSupportLimits {
417418
MLSingleInputSupportLimits log;
418419
MLSingleInputSupportLimits neg;
419420
MLSingleInputSupportLimits reciprocal;
421+
MLSingleInputSupportLimits roundEven;
420422
MLSingleInputSupportLimits sin;
421423
MLSingleInputSupportLimits sign;
422424
MLSingleInputSupportLimits sqrt;

tr/ids/html-aria.json

Lines changed: 97 additions & 91 deletions
Large diffs are not rendered by default.

tr/ids/shacl12-sparql.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
"https://www.w3.org/TR/shacl12-sparql/#ref-for-dfn-solutions-4",
132132
"https://www.w3.org/TR/shacl12-sparql/#ref-for-dfn-bindings-4",
133133
"https://www.w3.org/TR/shacl12-sparql/#sparql-constraints-prebound",
134-
"https://www.w3.org/TR/shacl12-sparql/#x2-3-1-pre-bound-variables-in-sparql-constraints-this-shapesgraph-currentshape",
134+
"https://www.w3.org/TR/shacl12-sparql/#x2-3-1-pre-bound-variable-this-in-sparql-constraints",
135135
"https://www.w3.org/TR/shacl12-sparql/#ref-for-dfn-sparql-based-constraint-11",
136136
"https://www.w3.org/TR/shacl12-sparql/#ref-for-dfn-sparql-based-constraint-components-1",
137137
"https://www.w3.org/TR/shacl12-sparql/#ref-for-dfn-pre-binding-3",
@@ -365,8 +365,6 @@
365365
"https://www.w3.org/TR/shacl12-sparql/#c-11-sh-lessthan",
366366
"https://www.w3.org/TR/shacl12-sparql/#sparql-definition-lessThanOrEquals",
367367
"https://www.w3.org/TR/shacl12-sparql/#c-12-sh-lessthanorequals",
368-
"https://www.w3.org/TR/shacl12-sparql/#sparql-definition-in",
369-
"https://www.w3.org/TR/shacl12-sparql/#c-13-sh-in",
370368
"https://www.w3.org/TR/shacl12-sparql/#security",
371369
"https://www.w3.org/TR/shacl12-sparql/#d-security-and-privacy-considerations",
372370
"https://www.w3.org/TR/shacl12-sparql/#ack",

0 commit comments

Comments
 (0)