summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webnn/validation_tests/reduction.https.any.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/webnn/validation_tests/reduction.https.any.js')
-rw-r--r--testing/web-platform/tests/webnn/validation_tests/reduction.https.any.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/testing/web-platform/tests/webnn/validation_tests/reduction.https.any.js b/testing/web-platform/tests/webnn/validation_tests/reduction.https.any.js
index 65b71239b9..60f0978678 100644
--- a/testing/web-platform/tests/webnn/validation_tests/reduction.https.any.js
+++ b/testing/web-platform/tests/webnn/validation_tests/reduction.https.any.js
@@ -1,11 +1,10 @@
-// META: title=validation tests for WebNN API reduction operation
+// META: title=validation tests for WebNN API reduction operation
// META: global=window,dedicatedworker
// META: script=../resources/utils_validation.js
-// META: timeout=long
'use strict';
-[
+const kReductionOperators = [
'reduceL1',
'reduceL2',
'reduceLogSum',
@@ -16,6 +15,9 @@
'reduceProduct',
'reduceSum',
'reduceSumSquare',
-].forEach((operationName) => {
- validateOptionsAxes(operationName);
+];
+
+kReductionOperators.forEach((operatorName) => {
+ validateOptionsAxes(operatorName);
+ validateInputFromAnotherBuilder(operatorName);
});