Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /webnn/validation_tests/elementwise-logical.https.any.html?cpu - WPT Dashboard Interop Dashboard
- /webnn/validation_tests/elementwise-logical.https.any.html?gpu - WPT Dashboard Interop Dashboard
- /webnn/validation_tests/elementwise-logical.https.any.html?npu - WPT Dashboard Interop Dashboard
- /webnn/validation_tests/elementwise-logical.https.any.worker.html?cpu - WPT Dashboard Interop Dashboard
- /webnn/validation_tests/elementwise-logical.https.any.worker.html?gpu - WPT Dashboard Interop Dashboard
- /webnn/validation_tests/elementwise-logical.https.any.worker.html?npu - WPT Dashboard Interop Dashboard
// META: title=validation tests for WebNN API element-wise logical operations
// META: global=window,dedicatedworker
// META: variant=?cpu
// META: variant=?gpu
// META: variant=?npu
// META: script=../resources/utils_validation.js
'use strict';
const kElementwiseLogicalBinaryOperators = [
'equal',
'greater',
'greaterOrEqual',
'lesser',
'lesserOrEqual',
'logicalAnd',
'logicalOr',
'logicalXor',
];
const label = 'elementwise_logic_op';
kElementwiseLogicalBinaryOperators.forEach((operatorName) => {
validateTwoInputsOfSameDataType(operatorName, label);
validateTwoInputsFromMultipleBuilders(operatorName);
validateTwoInputsBroadcastable(operatorName, label);
});
// The `logicalNot()` operator is unary.
validateInputFromAnotherBuilder('logicalNot');