summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webnn/validation_tests/gather.https.any.js
blob: 67ac7d7be39a0b42d7f6e19afe1a825703292110 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// META: title=validation tests for WebNN API gather operation
// META: global=window,dedicatedworker
// META: script=../resources/utils_validation.js
// META: timeout=long

'use strict';

const tests = [
  {
    name: '[gather] Test gather with default options and 0-D indices',
    input: {dataType: 'int32', dimensions: [3]},
    indices: {dataType: 'uint64', dimensions: []},
    output: {dataType: 'int32', dimensions: []}
  },
  {
    name: '[gather] Test gather with axis = 2',
    input: {dataType: 'float32', dimensions: [1, 2, 3, 4]},
    indices: {dataType: 'int64', dimensions: [5, 6]},
    axis: 2,
    output: {dataType: 'float32', dimensions: [1, 2, 5, 6, 4]}
  },
  {
    name: '[gather] TypeError is expected if the input is a scalar',
    input: {dataType: 'float16', dimensions: []},
    indices: {dataType: 'int64', dimensions: [1]}
  },
  {
    name: '[gather] TypeError is expected if the axis is greater than the rank of input',
    input: {dataType: 'float16', dimensions: [1, 2, 3]},
    indices: {dataType: 'int32', dimensions: [5, 6]},
    axis: 4
  },
  {
    name: '[gather] TypeError is expected if the data type of indices is invalid',
    input: {dataType: 'float16', dimensions: [1, 2, 3, 4]},
    indices: {dataType: 'float32', dimensions: [5, 6]}
  }
];

tests.forEach(
    test => promise_test(async t => {
      const input = builder.input(
          'input',
          {dataType: test.input.dataType, dimensions: test.input.dimensions});
      const indices = builder.input(
          'indices',
          {dataType: test.indices.dataType, dimensions: test.indices.dimensions});

      const options = {};
      if (test.axis) {
        options.axis = test.axis;
      }

      if (test.output) {
        const output = builder.gather(input, indices, options);
        assert_equals(output.dataType(), test.output.dataType);
        assert_array_equals(output.shape(), test.output.dimensions);
      } else {
        assert_throws_js(
            TypeError, () => builder.gather(input, indices, options));
      }
    }, test.name));