Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

// META: title=test WebNN API element-wise logical operations
// META: global=window,dedicatedworker
// META: variant=?cpu
// META: variant=?gpu
// META: script=../resources/utils.js
// META: timeout=long
'use strict';
if (navigator.ml) {
testWebNNOperation(
[
'equal',
'greater',
'greaterOrEqual',
'lesser',
'lesserOrEqual',
],
buildOperationWithTwoInputs);
testWebNNOperation('logicalNot', buildOperationWithSingleInput);
} else {
test(() => assert_implements(navigator.ml, 'missing navigator.ml'));
}