From 0d220397ed3e657ab260015eb2a700a0860c55d0 Mon Sep 17 00:00:00 2001 From: Marco Castelluccio Date: Sat, 16 Nov 2024 02:53:33 +0000 Subject: [PATCH] Bug 1930873 [wpt PR 49134] - Revert "webnn: implement reverse operator", a=testonly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Automatic update from web-platform-tests Revert "webnn: implement reverse operator" This reverts commit 0459ac1a9b94c1dd3e11410f7fb74f0a8e2ddeaf. Reason for revert: https://ci.chromium.org/ui/p/chromium/builders/ci/mac14-arm64-rel-tests/12103/test-results?sortby=&groupby= Original change's description: > webnn: implement reverse operator > > This CL adds IDL and mojo definition of reverse operator according to > the spec issue [1] and implements it on DirectML backend. > > [1] https://github.com/webmachinelearning/webnn/issues/773 > > Bug: 376707210 > Change-Id: I0d42b49b87ce243db9d44512e6000c7ee901077b > Cq-Include-Trybots: luci.chromium.try​:win11-blink-rel, mac14.arm64-blink-rel, mac15.arm64-blink-rel, linux-blink-rel > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5979825 > Commit-Queue: ningxin hu > Auto-Submit: Shiyi Zou > Reviewed-by: Austin Sullivan > Reviewed-by: ningxin hu > Cr-Commit-Position: refs/heads/main{#1382078} Bug: 376707210 Change-Id: Ie7ddada84b0e196d70da5cc42fab2c4ba2b0a13a Cq-Include-Trybots: luci.chromium.try​:win11-blink-rel, mac14.arm64-blink-rel, mac15.arm64-blink-rel, linux-blink-rel No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6013929 Commit-Queue: Rubber Stamper Bot-Commit: Rubber Stamper Reviewed-by: Yoichi Osato Owners-Override: Yoichi Osato Auto-Submit: Yoichi Osato Cr-Commit-Position: refs/heads/main{#1382142} -- wpt-commits: 29bbccab8983b550c40cc394a398123a638d4223 wpt-pr: 49134 UltraBlame original commit: 107faff7e65875aa46d6e2b721ac78a2b60c498a --- .../conformance_tests/reverse.https.any.js | 158 ------------------ .../validation_tests/reverse.https.any.js | 59 ------- 2 files changed, 217 deletions(-) delete mode 100644 testing/web-platform/tests/webnn/conformance_tests/reverse.https.any.js delete mode 100644 testing/web-platform/tests/webnn/validation_tests/reverse.https.any.js diff --git a/testing/web-platform/tests/webnn/conformance_tests/reverse.https.any.js b/testing/web-platform/tests/webnn/conformance_tests/reverse.https.any.js deleted file mode 100644 index f6d81c947d37..000000000000 --- a/testing/web-platform/tests/webnn/conformance_tests/reverse.https.any.js +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - -'use strict'; - - - - - - - - - - - -const reverseTests = [ - { - 'name': 'reverse float32 2D input with default options', - 'graph': { - 'inputs': { - 'reverseInput': { - 'data': [ - -30.0561466217041, 99.56941986083984, 88.04620361328125, - -91.87507629394531, -23.7972354888916, -91.28665161132812, - -63.15204620361328, 12.0669527053833, -96.1172866821289, - -44.77365493774414, -80.08650970458984, -64.43756866455078 - ], - 'descriptor': {shape: [3, 4], dataType: 'float32'} - } - }, - 'operators': [{ - 'name': 'reverse', - 'arguments': [{'input': 'reverseInput'}], - 'outputs': 'reverseOutput' - }], - 'expectedOutputs': { - 'reverseOutput': { - 'data': [ - -64.43756866455078, -80.08650970458984, -44.77365493774414, - -96.1172866821289, 12.0669527053833, -63.15204620361328, - -91.28665161132812, -23.7972354888916, -91.87507629394531, - 88.04620361328125, 99.56941986083984, -30.0561466217041 - ], - 'descriptor': {shape: [3, 4], dataType: 'float32'} - } - } - } - }, - { - 'name': 'reverse float32 3D input options.axes=[1, 2]', - 'graph': { - 'inputs': { - 'reverseInput': { - 'data': [ - -30.0561466217041, 99.56941986083984, 88.04620361328125, - -91.87507629394531, -23.7972354888916, -91.28665161132812, - -63.15204620361328, 12.0669527053833, -96.1172866821289, - -44.77365493774414, -80.08650970458984, -64.43756866455078 - ], - 'descriptor': {shape: [3, 2, 2], dataType: 'float32'} - } - }, - 'operators': [{ - 'name': 'reverse', - 'arguments': [{'input': 'reverseInput'}, {'options': {'axes': [1, 2]}}], - 'outputs': 'reverseOutput' - }], - 'expectedOutputs': { - 'reverseOutput': { - 'data': [ - -91.87507629394531, 88.04620361328125, 99.56941986083984, - -30.0561466217041, 12.0669527053833, -63.15204620361328, - -91.28665161132812, -23.7972354888916, -64.43756866455078, - -80.08650970458984, -44.77365493774414, -96.1172866821289 - ], - 'descriptor': {shape: [3, 2, 2], dataType: 'float32'} - } - } - } - }, - { - 'name': 'reverse float32 4D input options.axes=[3, 1]', - 'graph': { - 'inputs': { - 'reverseInput': { - 'data': [ - -30.0561466217041, 99.56941986083984, 88.04620361328125, - -91.87507629394531, -23.7972354888916, -91.28665161132812, - -63.15204620361328, 12.0669527053833, -96.1172866821289, - -44.77365493774414, -80.08650970458984, -64.43756866455078 - ], - 'descriptor': {shape: [3, 2, 1, 2], dataType: 'float32'} - } - }, - 'operators': [{ - 'name': 'reverse', - 'arguments': [{'input': 'reverseInput'}, {'options': {'axes': [3, 1]}}], - 'outputs': 'reverseOutput' - }], - 'expectedOutputs': { - 'reverseOutput': { - 'data': [ - -91.87507629394531, 88.04620361328125, 99.56941986083984, - -30.0561466217041, 12.0669527053833, -63.15204620361328, - -91.28665161132812, -23.7972354888916, -64.43756866455078, - -80.08650970458984, -44.77365493774414, -96.1172866821289 - ], - 'descriptor': {shape: [3, 2, 1, 2], dataType: 'float32'} - } - } - } - }, - { - 'name': 'reverse float32 4D input options.axes=[]', - 'graph': { - 'inputs': { - 'reverseInput': { - 'data': [ - -30.0561466217041, 99.56941986083984, 88.04620361328125, - -91.87507629394531, -23.7972354888916, -91.28665161132812, - -63.15204620361328, 12.0669527053833, -96.1172866821289, - -44.77365493774414, -80.08650970458984, -64.43756866455078 - ], - 'descriptor': {shape: [2, 1, 2, 3], dataType: 'float32'} - } - }, - 'operators': [{ - 'name': 'reverse', - 'arguments': [{'input': 'reverseInput'}, {'options': {'axes': []}}], - 'outputs': 'reverseOutput' - }], - 'expectedOutputs': { - 'reverseOutput': { - 'data': [ - -30.0561466217041, 99.56941986083984, 88.04620361328125, - -91.87507629394531, -23.7972354888916, -91.28665161132812, - -63.15204620361328, 12.0669527053833, -96.1172866821289, - -44.77365493774414, -80.08650970458984, -64.43756866455078 - ], - 'descriptor': {shape: [2, 1, 2, 3], dataType: 'float32'} - } - } - } - } -]; - -if (navigator.ml) { - reverseTests.forEach((test) => { - webnn_conformance_test(buildGraphAndCompute, getPrecisionTolerance, test); - }); -} else { - test(() => assert_implements(navigator.ml, 'missing navigator.ml')); -} diff --git a/testing/web-platform/tests/webnn/validation_tests/reverse.https.any.js b/testing/web-platform/tests/webnn/validation_tests/reverse.https.any.js deleted file mode 100644 index 38f9686c158b..000000000000 --- a/testing/web-platform/tests/webnn/validation_tests/reverse.https.any.js +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - -'use strict'; - -const tests = [ - { - name: '[reverse] Test reverse with default options', - input: {dataType: 'float32', shape: [3, 3]}, - output: {dataType: 'float32', shape: [3, 3]} - }, - { - name: '[reverse] Test reverse with axes = [0, 1]', - input: {dataType: 'int32', shape: [1, 2, 3]}, - axes: [0, 1], - output: {dataType: 'int32', shape: [1, 2, 3]} - }, - { - name: '[reverse] Throw if axes is greater than input rank', - input: {dataType: 'float32', shape: [3, 3]}, - axes: [3] - }, - { - name: '[reverse] Throw if axes is duplicated', - input: {dataType: 'float32', shape: [1, 2, 3, 4]}, - axes: [2, 2, 3] - } -]; - -tests.forEach(test => promise_test(async t => { - const builder = new MLGraphBuilder(context); - const input = builder.input('input', test.input); - const options = {}; - if (test.axes) { - options.axes = test.axes; - } - - if (test.output) { - const output = builder.reverse(input, options); - assert_equals(output.dataType, test.output.dataType); - assert_array_equals(output.shape, test.output.shape); - } else { - const label = 'reverse_1' - options.label = label; - const regexp = new RegExp('\\[' + label + '\\]'); - assert_throws_with_label( - () => builder.reverse(input, options), regexp); - } - }, test.name)); - -multi_builder_test(async (t, builder, otherBuilder) => { - const input = - otherBuilder.input('input', {dataType: 'float32', shape: [3, 3]}); - assert_throws_js(TypeError, () => builder.reverse(input)); -}, '[reverse] Throw if input is from another builder');