summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webnn/validation_tests/slice.https.any.js
blob: de426216101fb29f2afa5535d7732284922e67d4 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// META: title=validation tests for WebNN API slice operation
// META: global=window,dedicatedworker
// META: script=../resources/utils_validation.js

'use strict';

multi_builder_test(async (t, builder, otherBuilder) => {
  const inputFromOtherBuilder =
      otherBuilder.input('input', {dataType: 'float32', dimensions: [2, 2]});

  const starts = [1, 1];
  const sizes = [1, 1];
  assert_throws_js(
      TypeError, () => builder.slice(inputFromOtherBuilder, starts, sizes));
}, '[slice] throw if input is from another builder');

const tests = [
  {
    name: '[slice] Test with starts=[0, 1, 2] and sizes=[1, 2, 3].',
    input: {dataType: 'float32', dimensions: [3, 4, 5]},
    starts: [0, 1, 2],
    sizes: [1, 2, 3],
    output: {dataType: 'float32', dimensions: [1, 2, 3]}
  },
  {
    name: '[slice] Throw if input is a scalar.',
    input: {dataType: 'float32', dimensions: []},
    starts: [0],
    sizes: [1]
  },
  {
    name:
        '[slice] Throw if the length of sizes is not equal to the rank of the input tensor.',
    input: {dataType: 'float32', dimensions: [3, 4, 5]},
    starts: [1, 2, 3],
    sizes: [1, 1]
  },
  {
    name:
        '[slice] Throw if the length of starts is not equal to the rank of the input tensor.',
    input: {dataType: 'float32', dimensions: [3, 4, 5]},
    starts: [1, 2, 1, 3],
    sizes: [1, 1, 1]
  },
  {
    name:
        '[slice] Throw if the starting index is equal to or greater than input size in the same dimension.',
    input: {dataType: 'float32', dimensions: [3, 4, 5]},
    starts: [0, 4, 4],
    sizes: [1, 1, 1]
  },
  {
    name: '[slice] Throw if the number of elements to slice is equal to 0.',
    input: {dataType: 'float32', dimensions: [3, 4, 5]},
    starts: [1, 2, 3],
    sizes: [1, 0, 1]
  },
  {
    name:
        '[slice] Throw if the ending index to slice is greater than input size in the same dimension.',
    input: {dataType: 'float32', dimensions: [3, 4, 5]},
    starts: [0, 1, 2],
    sizes: [3, 4, 1]
  },
];

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

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