summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webnn/reshape.https.any.js
blob: 40829bd1c3cbef77a2714329cdbefd4983506fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// META: title=test WebNN API reshape operation
// META: global=window,dedicatedworker
// META: script=./resources/utils.js
// META: timeout=long

'use strict';

// https://webmachinelearning.github.io/webnn/#api-mlgraphbuilder-reshape

const buildReshape = (operationName, builder, resources) => {
  // MLOperand reshape(MLOperand input, sequence<long> newShape);
  const namedOutputOperand = {};
  const inputOperand = createSingleInputOperand(builder, resources);
  // invoke builder.reshape()
  namedOutputOperand[resources.expected.name] = builder[operationName](inputOperand, resources.newShape);
  return namedOutputOperand;
};

testWebNNOperation('reshape', '/webnn/resources/test_data/reshape.json', buildReshape);