Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 2 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /webnn/validation_tests/cast.https.any.html?cpu - WPT Dashboard Interop Dashboard
- /webnn/validation_tests/cast.https.any.html?gpu - WPT Dashboard Interop Dashboard
- /webnn/validation_tests/cast.https.any.html?npu - WPT Dashboard Interop Dashboard
- /webnn/validation_tests/cast.https.any.worker.html?cpu - WPT Dashboard Interop Dashboard
- /webnn/validation_tests/cast.https.any.worker.html?gpu - WPT Dashboard Interop Dashboard
- /webnn/validation_tests/cast.https.any.worker.html?npu - WPT Dashboard Interop Dashboard
// META: title=validation tests for WebNN API cast operation
// META: global=window,dedicatedworker
// META: variant=?cpu
// META: variant=?gpu
// META: variant=?npu
// META: script=../resources/utils_validation.js
'use strict';
multi_builder_test(async (t, builder, otherBuilder) => {
const inputFromOtherBuilder =
otherBuilder.input('input', {dataType: 'int32', shape: [2, 2]});
assert_throws_js(
TypeError, () => builder.cast(inputFromOtherBuilder, 'int64'));
}, '[cast] throw if input is from another builder');