summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webnn/validation_tests/transpose.https.any.js
blob: 3475a427d7347ba3ab3429b1470591d39400395d (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
// META: title=validation tests for WebNN API transpose operation
// META: global=window,dedicatedworker
// META: script=../resources/utils_validation.js

'use strict';

validateInputFromAnotherBuilder('transpose');

const tests = [
  {
    name: '[transpose] Test building transpose with default options.',
    input: {dataType: 'float32', dimensions: [1, 2, 3, 4]},
    output: {dataType: 'float32', dimensions: [4, 3, 2, 1]}
  },
  {
    name: '[transpose] Test building transpose with permutation=[0, 2, 3, 1].',
    input: {dataType: 'float32', dimensions: [1, 2, 3, 4]},
    options: {permutation: [0, 2, 3, 1]},
    output: {dataType: 'float32', dimensions: [1, 3, 4, 2]}
  },
  {
    name:
        '[transpose] Throw if permutation\'s size is not the same as input\'s rank.',
    input: {dataType: 'int32', dimensions: [1, 2, 4]},
    options: {permutation: [0, 2, 3, 1]},
  },
  {
    name: '[transpose] Throw if two values in permutation are same.',
    input: {dataType: 'int32', dimensions: [1, 2, 3, 4]},
    options: {permutation: [0, 2, 3, 2]},
  },
  {
    name:
        '[transpose] Throw if any value in permutation is not in the range [0,input\'s rank).',
    input: {dataType: 'int32', dimensions: [1, 2, 3, 4]},
    options: {permutation: [0, 1, 2, 4]},
  },
  {
    name: '[transpose] Throw if any value in permutation is negative.',
    input: {dataType: 'int32', dimensions: [1, 2, 3, 4]},
    options: {permutation: [0, -1, 2, 3]},
  }
];

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.transpose(input, test.options);
        assert_equals(output.dataType(), test.output.dataType);
        assert_array_equals(output.shape(), test.output.dimensions);
      } else {
        assert_throws_js(
            TypeError, () => builder.transpose(input, test.options));
      }
    }, test.name));