summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webnn/validation_tests/elementwise-unary.https.any.js
blob: f87c61b4e45689d4506bbef4a31aeb888c483b0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// META: title=validation tests for WebNN API element-wise unary operations
// META: global=window,dedicatedworker
// META: script=../resources/utils_validation.js

'use strict';

const kElementwiseUnaryOperators = [
  'abs', 'ceil', 'cos', 'erf', 'exp', 'floor', 'identity', 'log', 'neg',
  'reciprocal', 'sin', 'sqrt', 'tan'
];

kElementwiseUnaryOperators.forEach((operatorName) => {
  validateInputFromAnotherBuilder(operatorName);
});

const kElementwiseUnaryOperations = [
  {
    name: 'abs',
    supportedDataTypes: [...floatingPointTypes, ...signedIntegerTypes]
  },
  {name: 'ceil', supportedDataTypes: floatingPointTypes},
  {name: 'exp', supportedDataTypes: floatingPointTypes},
  {name: 'floor', supportedDataTypes: floatingPointTypes},
  {name: 'log', supportedDataTypes: floatingPointTypes}, {
    name: 'neg',
    supportedDataTypes: [...floatingPointTypes, ...signedIntegerTypes]
  },
  {name: 'sin', supportedDataTypes: floatingPointTypes},
  {name: 'tan', supportedDataTypes: floatingPointTypes},
  {name: 'erf', supportedDataTypes: floatingPointTypes},
  {name: 'identity', supportedDataTypes: allWebNNOperandDataTypes},
  {name: 'logicalNot', supportedDataTypes: ['uint8']},
  {name: 'reciprocal', supportedDataTypes: floatingPointTypes},
  {name: 'sqrt', supportedDataTypes: floatingPointTypes}
];

kElementwiseUnaryOperations.forEach((operation) => {
  validateUnaryOperation(operation.name, operation.supportedDataTypes);
});