webnn: unify unsupported op error message
Use consistent error message across backends for unsupported ops. "Unsupported operator {operator_name}" Follow up CLs will be make to clean up other unsupported error types. Bug: 339277562 Change-Id: I5d245b735a19daee4762d679005a89fb35c96325 Cq-Include-Trybots: luci.chromium.try:mac14-blink-rel,mac14.arm64-blink-rel Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5523396 Commit-Queue: Phillis Tang <phillis@chromium.org> Reviewed-by: Austin Sullivan <asully@chromium.org> Cr-Commit-Position: refs/heads/main@{#1299598}
This commit is contained in:

committed by
Chromium LUCI CQ

parent
81942a4edd
commit
53e67efa7b
services/webnn
third_party/blink/web_tests/platform
linux
virtual
webnn-service-without-gpu
external
wpt
webnn
conformance_tests
batch_normalization.https.any.worker_gpu-expected.txtbatch_normalization.https.any_gpu-expected.txtexpand.https.any.worker_gpu-expected.txtexpand.https.any_gpu-expected.txtinstance_normalization.https.any.worker_gpu-expected.txtinstance_normalization.https.any_gpu-expected.txtlayer_normalization.https.any.worker_gpu-expected.txtlayer_normalization.https.any_gpu-expected.txtsoftsign.https.any.worker_gpu-expected.txtsoftsign.https.any_gpu-expected.txttriangular.https.any.worker_gpu-expected.txttriangular.https.any_gpu-expected.txt
mac-mac14-arm64
virtual
webnn-service-with-gpu
mac
virtual
webnn-service-with-gpu
external
wpt
webnn
conformance_tests
expand.https.any.worker_gpu-expected.txtexpand.https.any_gpu-expected.txtlayer_normalization.https.any.worker_gpu-expected.txtlayer_normalization.https.any_gpu-expected.txtpad.https.any.worker_gpu-expected.txtpad.https.any_gpu-expected.txtprelu.https.any.worker_gpu-expected.txtprelu.https.any_gpu-expected.txtsoftmax.https.any.worker_gpu-expected.txtsoftmax.https.any_gpu-expected.txtsplit.https.any.worker_gpu-expected.txtsplit.https.any_gpu-expected.txttriangular.https.any.worker_gpu-expected.txttriangular.https.any_gpu-expected.txt
@ -22,6 +22,7 @@ if (is_posix) {
|
|||||||
"coreml/graph_builder.h",
|
"coreml/graph_builder.h",
|
||||||
]
|
]
|
||||||
deps = [
|
deps = [
|
||||||
|
":webnn_utils",
|
||||||
"//base",
|
"//base",
|
||||||
"//services/webnn/public/mojom",
|
"//services/webnn/public/mojom",
|
||||||
"//third_party/coremltools:modelformat_proto",
|
"//third_party/coremltools:modelformat_proto",
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
#include "base/values.h"
|
#include "base/values.h"
|
||||||
#include "mojo/public/cpp/base/big_buffer.h"
|
#include "mojo/public/cpp/base/big_buffer.h"
|
||||||
#include "services/webnn/public/mojom/webnn_graph.mojom.h"
|
#include "services/webnn/public/mojom/webnn_graph.mojom.h"
|
||||||
|
#include "services/webnn/webnn_utils.h"
|
||||||
#include "third_party/coremltools/mlmodel/format/FeatureTypes.pb.h"
|
#include "third_party/coremltools/mlmodel/format/FeatureTypes.pb.h"
|
||||||
#include "third_party/coremltools/mlmodel/format/MIL.pb.h"
|
#include "third_party/coremltools/mlmodel/format/MIL.pb.h"
|
||||||
|
|
||||||
@ -751,7 +752,7 @@ GraphBuilder::BuildCoreMLModel() {
|
|||||||
case mojom::Operation::Tag::kSplit:
|
case mojom::Operation::Tag::kSplit:
|
||||||
case mojom::Operation::Tag::kTriangular:
|
case mojom::Operation::Tag::kTriangular:
|
||||||
case mojom::Operation::Tag::kWhere:
|
case mojom::Operation::Tag::kWhere:
|
||||||
return NewNotSupportedError("This operator is not implemented.");
|
return NewNotSupportedError(NotSupportedOperatorError(*operation));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1531,12 +1532,11 @@ GraphBuilder::AddOperationForElementwiseUnary(
|
|||||||
input_data_type ==
|
input_data_type ==
|
||||||
CoreML::Specification::MILSpec::DataType::INT32 ||
|
CoreML::Specification::MILSpec::DataType::INT32 ||
|
||||||
input_data_type == CoreML::Specification::MILSpec::DataType::INT8);
|
input_data_type == CoreML::Specification::MILSpec::DataType::INT8);
|
||||||
return NewNotSupportedError("This operator (neg) is not implemented.");
|
return NewNotSupportedError(NotSupportedOperatorError(operation));
|
||||||
case mojom::ElementWiseUnary::Kind::kLogicalNot:
|
case mojom::ElementWiseUnary::Kind::kLogicalNot:
|
||||||
CHECK_EQ(input_data_type,
|
CHECK_EQ(input_data_type,
|
||||||
CoreML::Specification::MILSpec::DataType::UINT8);
|
CoreML::Specification::MILSpec::DataType::UINT8);
|
||||||
return NewNotSupportedError(
|
return NewNotSupportedError(NotSupportedOperatorError(operation));
|
||||||
"This operator (logicalNot) is not implemented.");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5468,9 +5468,7 @@ void GraphImpl::CreateAndBuild(
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
std::string error_message = "This operator (" +
|
std::string error_message = NotSupportedOperatorError(*operation);
|
||||||
OpTagToString(operation->which()) +
|
|
||||||
") is not supported.";
|
|
||||||
DLOG(ERROR) << error_message;
|
DLOG(ERROR) << error_message;
|
||||||
create_operator_result = base::unexpected(CreateError(
|
create_operator_result = base::unexpected(CreateError(
|
||||||
mojom::Error::Code::kNotSupportedError, std::move(error_message)));
|
mojom::Error::Code::kNotSupportedError, std::move(error_message)));
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#include "base/numerics/safe_conversions.h"
|
#include "base/numerics/safe_conversions.h"
|
||||||
#include "base/ranges/algorithm.h"
|
#include "base/ranges/algorithm.h"
|
||||||
#include "base/strings/stringprintf.h"
|
#include "base/strings/stringprintf.h"
|
||||||
|
#include "base/types/expected.h"
|
||||||
#include "base/types/expected_macros.h"
|
#include "base/types/expected_macros.h"
|
||||||
#include "components/ml/webnn/graph_validation_utils.h"
|
#include "components/ml/webnn/graph_validation_utils.h"
|
||||||
#include "services/webnn/public/mojom/webnn_graph.mojom.h"
|
#include "services/webnn/public/mojom/webnn_graph.mojom.h"
|
||||||
@ -417,27 +418,17 @@ base::expected<void, std::string> GraphBuilder::SerializeOperation(
|
|||||||
operator_offset = SerializeWhere(*op.get_where());
|
operator_offset = SerializeWhere(*op.get_where());
|
||||||
break;
|
break;
|
||||||
case mojom::Operation::Tag::kBatchNormalization:
|
case mojom::Operation::Tag::kBatchNormalization:
|
||||||
return base::unexpected("batchNormalization is not implemented");
|
|
||||||
case mojom::Operation::Tag::kExpand:
|
case mojom::Operation::Tag::kExpand:
|
||||||
return base::unexpected("expand is not implemented");
|
|
||||||
case mojom::Operation::Tag::kGelu:
|
case mojom::Operation::Tag::kGelu:
|
||||||
return base::unexpected("gelu is not implemented");
|
|
||||||
case mojom::Operation::Tag::kGru:
|
case mojom::Operation::Tag::kGru:
|
||||||
return base::unexpected("gru is not implemented");
|
|
||||||
case mojom::Operation::Tag::kGruCell:
|
case mojom::Operation::Tag::kGruCell:
|
||||||
return base::unexpected("gruCell is not implemented");
|
|
||||||
case mojom::Operation::Tag::kLayerNormalization:
|
case mojom::Operation::Tag::kLayerNormalization:
|
||||||
return base::unexpected("layerNormalization is not implemented");
|
|
||||||
case mojom::Operation::Tag::kInstanceNormalization:
|
case mojom::Operation::Tag::kInstanceNormalization:
|
||||||
return base::unexpected("instanceNormalization is not implemented");
|
|
||||||
case mojom::Operation::Tag::kLstm:
|
case mojom::Operation::Tag::kLstm:
|
||||||
return base::unexpected("lstm is not implemented");
|
|
||||||
case mojom::Operation::Tag::kLstmCell:
|
case mojom::Operation::Tag::kLstmCell:
|
||||||
return base::unexpected("lstmCell is not implemented");
|
|
||||||
case mojom::Operation::Tag::kSoftsign:
|
case mojom::Operation::Tag::kSoftsign:
|
||||||
return base::unexpected("softsign is not implemented");
|
|
||||||
case mojom::Operation::Tag::kTriangular:
|
case mojom::Operation::Tag::kTriangular:
|
||||||
return base::unexpected("triangular is not implemented");
|
return base::unexpected(NotSupportedOperatorError(op));
|
||||||
}
|
}
|
||||||
operators_.emplace_back(operator_offset);
|
operators_.emplace_back(operator_offset);
|
||||||
|
|
||||||
|
@ -4,8 +4,56 @@
|
|||||||
|
|
||||||
#include "services/webnn/webnn_utils.h"
|
#include "services/webnn/webnn_utils.h"
|
||||||
|
|
||||||
|
#include "base/strings/strcat.h"
|
||||||
|
#include "services/webnn/public/mojom/webnn_graph.mojom.h"
|
||||||
|
|
||||||
namespace webnn {
|
namespace webnn {
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
std::string OpKindToString(mojom::Conv2d::Kind kind) {
|
||||||
|
switch (kind) {
|
||||||
|
case mojom::Conv2d::Kind::kDirect:
|
||||||
|
return "conv2d";
|
||||||
|
case mojom::Conv2d::Kind::kTransposed:
|
||||||
|
return "convTranspose2d";
|
||||||
|
}
|
||||||
|
NOTREACHED_NORETURN();
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string OpKindToString(mojom::Pool2d::Kind kind) {
|
||||||
|
switch (kind) {
|
||||||
|
case mojom::Pool2d::Kind::kAveragePool2d:
|
||||||
|
return "averagePool2d";
|
||||||
|
case mojom::Pool2d::Kind::kL2Pool2d:
|
||||||
|
return "l2Pool2d";
|
||||||
|
case mojom::Pool2d::Kind::kMaxPool2d:
|
||||||
|
return "maxPool2d";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string GetOpName(const mojom::Operation& op) {
|
||||||
|
const mojom::Operation::Tag& tag = op.which();
|
||||||
|
switch (tag) {
|
||||||
|
case mojom::Operation::Tag::kArgMinMax:
|
||||||
|
return webnn::OpKindToString(op.get_arg_min_max()->kind);
|
||||||
|
case mojom::Operation::Tag::kConv2d:
|
||||||
|
return OpKindToString(op.get_conv2d()->kind);
|
||||||
|
case mojom::Operation::Tag::kElementWiseBinary:
|
||||||
|
return webnn::OpKindToString(op.get_element_wise_binary()->kind);
|
||||||
|
case mojom::Operation::Tag::kElementWiseUnary:
|
||||||
|
return webnn::OpKindToString(op.get_element_wise_unary()->kind);
|
||||||
|
case mojom::Operation::Tag::kReduce:
|
||||||
|
return webnn::OpKindToString(op.get_reduce()->kind);
|
||||||
|
case mojom::Operation::Tag::kPool2d:
|
||||||
|
return OpKindToString(op.get_pool2d()->kind);
|
||||||
|
default:
|
||||||
|
return OpTagToString(tag);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace
|
||||||
|
|
||||||
std::string OpTagToString(mojom::Operation::Tag tag) {
|
std::string OpTagToString(mojom::Operation::Tag tag) {
|
||||||
switch (tag) {
|
switch (tag) {
|
||||||
case mojom::Operation::Tag::kArgMinMax:
|
case mojom::Operation::Tag::kArgMinMax:
|
||||||
@ -129,7 +177,6 @@ std::string OpKindToString(mojom::ElementWiseBinary::Kind kind) {
|
|||||||
case mojom::ElementWiseBinary::Kind::kLesserOrEqual:
|
case mojom::ElementWiseBinary::Kind::kLesserOrEqual:
|
||||||
return "lesserOrEqual";
|
return "lesserOrEqual";
|
||||||
}
|
}
|
||||||
NOTREACHED_NORETURN();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string OpKindToString(mojom::ElementWiseUnary::Kind kind) {
|
std::string OpKindToString(mojom::ElementWiseUnary::Kind kind) {
|
||||||
@ -165,7 +212,6 @@ std::string OpKindToString(mojom::ElementWiseUnary::Kind kind) {
|
|||||||
case mojom::ElementWiseUnary::Kind::kCast:
|
case mojom::ElementWiseUnary::Kind::kCast:
|
||||||
return "cast";
|
return "cast";
|
||||||
}
|
}
|
||||||
NOTREACHED_NORETURN();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string OpKindToString(mojom::Reduce::Kind kind) {
|
std::string OpKindToString(mojom::Reduce::Kind kind) {
|
||||||
@ -191,7 +237,6 @@ std::string OpKindToString(mojom::Reduce::Kind kind) {
|
|||||||
case mojom::Reduce::Kind::kSumSquare:
|
case mojom::Reduce::Kind::kSumSquare:
|
||||||
return "ReduceSumSquare";
|
return "ReduceSumSquare";
|
||||||
}
|
}
|
||||||
NOTREACHED_NORETURN();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string DataTypeToString(mojom::Operand::DataType type) {
|
std::string DataTypeToString(mojom::Operand::DataType type) {
|
||||||
@ -213,7 +258,14 @@ std::string DataTypeToString(mojom::Operand::DataType type) {
|
|||||||
case mojom::Operand::DataType::kUint64:
|
case mojom::Operand::DataType::kUint64:
|
||||||
return "uint64";
|
return "uint64";
|
||||||
}
|
}
|
||||||
NOTREACHED_NORETURN();
|
}
|
||||||
|
|
||||||
|
std::string NotSupportedOperatorError(const mojom::Operation& op) {
|
||||||
|
return base::StrCat({"Unsupported operator ", GetOpName(op)});
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string NotSupportedOperatorError(const mojom::ElementWiseUnary& op) {
|
||||||
|
return base::StrCat({"Unsupported operator ", OpKindToString(op.kind)});
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace webnn
|
} // namespace webnn
|
||||||
|
@ -24,6 +24,10 @@ std::string COMPONENT_EXPORT(WEBNN_UTILS)
|
|||||||
OpKindToString(mojom::Reduce::Kind kind);
|
OpKindToString(mojom::Reduce::Kind kind);
|
||||||
std::string COMPONENT_EXPORT(WEBNN_UTILS)
|
std::string COMPONENT_EXPORT(WEBNN_UTILS)
|
||||||
DataTypeToString(mojom::Operand::DataType type);
|
DataTypeToString(mojom::Operand::DataType type);
|
||||||
|
std::string COMPONENT_EXPORT(WEBNN_UTILS)
|
||||||
|
NotSupportedOperatorError(const mojom::Operation& op);
|
||||||
|
std::string COMPONENT_EXPORT(WEBNN_UTILS)
|
||||||
|
NotSupportedOperatorError(const mojom::ElementWiseUnary& op);
|
||||||
|
|
||||||
} // namespace webnn
|
} // namespace webnn
|
||||||
|
|
||||||
|
@ -1,29 +1,29 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] batchNormalization float32 2D tensor (mean and variance are non-constant) default options
|
[FAIL] batchNormalization float32 2D tensor (mean and variance are non-constant) default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 2D constant tensor default options
|
[FAIL] batchNormalization float32 2D constant tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 2D tensor default options
|
[FAIL] batchNormalization float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 3D tensor default options
|
[FAIL] batchNormalization float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D tensor default options
|
[FAIL] batchNormalization float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 5D tensor default options
|
[FAIL] batchNormalization float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NCHW tensor options.axis=1
|
[FAIL] batchNormalization float32 4D NCHW tensor options.axis=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NHWC tensor options.axis=3
|
[FAIL] batchNormalization float32 4D NHWC tensor options.axis=3
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NCHW tensor options.scale
|
[FAIL] batchNormalization float32 4D NCHW tensor options.scale
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NCHW tensor options.bias
|
[FAIL] batchNormalization float32 4D NCHW tensor options.bias
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NCHW tensor options.epsilon
|
[FAIL] batchNormalization float32 4D NCHW tensor options.epsilon
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NCHW tensor options.activation relu
|
[FAIL] batchNormalization float32 4D NCHW tensor options.activation relu
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NHWC tensor all options
|
[FAIL] batchNormalization float32 4D NHWC tensor all options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,29 +1,29 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] batchNormalization float32 2D tensor (mean and variance are non-constant) default options
|
[FAIL] batchNormalization float32 2D tensor (mean and variance are non-constant) default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 2D constant tensor default options
|
[FAIL] batchNormalization float32 2D constant tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 2D tensor default options
|
[FAIL] batchNormalization float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 3D tensor default options
|
[FAIL] batchNormalization float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D tensor default options
|
[FAIL] batchNormalization float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 5D tensor default options
|
[FAIL] batchNormalization float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NCHW tensor options.axis=1
|
[FAIL] batchNormalization float32 4D NCHW tensor options.axis=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NHWC tensor options.axis=3
|
[FAIL] batchNormalization float32 4D NHWC tensor options.axis=3
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NCHW tensor options.scale
|
[FAIL] batchNormalization float32 4D NCHW tensor options.scale
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NCHW tensor options.bias
|
[FAIL] batchNormalization float32 4D NCHW tensor options.bias
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NCHW tensor options.epsilon
|
[FAIL] batchNormalization float32 4D NCHW tensor options.epsilon
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NCHW tensor options.activation relu
|
[FAIL] batchNormalization float32 4D NCHW tensor options.activation relu
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
[FAIL] batchNormalization float32 4D NHWC tensor all options
|
[FAIL] batchNormalization float32 4D NHWC tensor all options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': batchNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator batchNormalization"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,47 +1,47 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] expand float32 0D scalar to 1D
|
[FAIL] expand float32 0D scalar to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 2D
|
[FAIL] expand float32 0D scalar to 2D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 3D
|
[FAIL] expand float32 0D scalar to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 4D
|
[FAIL] expand float32 0D scalar to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 5D
|
[FAIL] expand float32 0D scalar to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D constant tensor to 1D
|
[FAIL] expand float32 1D constant tensor to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 1D
|
[FAIL] expand float32 1D tensor to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 2D
|
[FAIL] expand float32 1D tensor to 2D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 3D
|
[FAIL] expand float32 1D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 4D
|
[FAIL] expand float32 1D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 5D
|
[FAIL] expand float32 1D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (1st dimension)
|
[FAIL] expand float32 2D tensor to 2D (1st dimension)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (2nd dimension)
|
[FAIL] expand float32 2D tensor to 2D (2nd dimension)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (all dimensions)
|
[FAIL] expand float32 2D tensor to 2D (all dimensions)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 3D
|
[FAIL] expand float32 2D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 4D
|
[FAIL] expand float32 2D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 5D
|
[FAIL] expand float32 2D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 3D
|
[FAIL] expand float32 3D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 4D
|
[FAIL] expand float32 3D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 5D
|
[FAIL] expand float32 3D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 4D tensor to 4D
|
[FAIL] expand float32 4D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 4D tensor to 5D
|
[FAIL] expand float32 4D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,47 +1,47 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] expand float32 0D scalar to 1D
|
[FAIL] expand float32 0D scalar to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 2D
|
[FAIL] expand float32 0D scalar to 2D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 3D
|
[FAIL] expand float32 0D scalar to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 4D
|
[FAIL] expand float32 0D scalar to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 5D
|
[FAIL] expand float32 0D scalar to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D constant tensor to 1D
|
[FAIL] expand float32 1D constant tensor to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 1D
|
[FAIL] expand float32 1D tensor to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 2D
|
[FAIL] expand float32 1D tensor to 2D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 3D
|
[FAIL] expand float32 1D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 4D
|
[FAIL] expand float32 1D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 5D
|
[FAIL] expand float32 1D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (1st dimension)
|
[FAIL] expand float32 2D tensor to 2D (1st dimension)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (2nd dimension)
|
[FAIL] expand float32 2D tensor to 2D (2nd dimension)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (all dimensions)
|
[FAIL] expand float32 2D tensor to 2D (all dimensions)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 3D
|
[FAIL] expand float32 2D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 4D
|
[FAIL] expand float32 2D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 5D
|
[FAIL] expand float32 2D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 3D
|
[FAIL] expand float32 3D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 4D
|
[FAIL] expand float32 3D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 5D
|
[FAIL] expand float32 3D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 4D tensor to 4D
|
[FAIL] expand float32 4D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 4D tensor to 5D
|
[FAIL] expand float32 4D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': expand is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] instanceNormalization float32 4D tensor default options
|
[FAIL] instanceNormalization float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor options.scale
|
[FAIL] instanceNormalization float32 4D tensor options.scale
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor options.bias
|
[FAIL] instanceNormalization float32 4D tensor options.bias
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor options.epsilon
|
[FAIL] instanceNormalization float32 4D tensor options.epsilon
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor explict options.layout='nchw'
|
[FAIL] instanceNormalization float32 4D tensor explict options.layout='nchw'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor options.layout='nhwc'
|
[FAIL] instanceNormalization float32 4D tensor options.layout='nhwc'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor all options
|
[FAIL] instanceNormalization float32 4D tensor all options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] instanceNormalization float32 4D tensor default options
|
[FAIL] instanceNormalization float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor options.scale
|
[FAIL] instanceNormalization float32 4D tensor options.scale
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor options.bias
|
[FAIL] instanceNormalization float32 4D tensor options.bias
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor options.epsilon
|
[FAIL] instanceNormalization float32 4D tensor options.epsilon
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor explict options.layout='nchw'
|
[FAIL] instanceNormalization float32 4D tensor explict options.layout='nchw'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor options.layout='nhwc'
|
[FAIL] instanceNormalization float32 4D tensor options.layout='nhwc'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
[FAIL] instanceNormalization float32 4D tensor all options
|
[FAIL] instanceNormalization float32 4D tensor all options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': instanceNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator instanceNormalization"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] layerNormalization float32 2D tensor default options
|
[FAIL] layerNormalization float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 3D tensor default options
|
[FAIL] layerNormalization float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor default options
|
[FAIL] layerNormalization float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 5D tensor default options
|
[FAIL] layerNormalization float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.scale
|
[FAIL] layerNormalization float32 4D tensor options.scale
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.bias
|
[FAIL] layerNormalization float32 4D tensor options.bias
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.axes=[2]
|
[FAIL] layerNormalization float32 4D tensor options.axes=[2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.epsilon
|
[FAIL] layerNormalization float32 4D tensor options.epsilon
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.scale and options.axes=[0, 2]
|
[FAIL] layerNormalization float32 4D tensor options.scale and options.axes=[0, 2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.bias and options.axes=[3, 1, 2]
|
[FAIL] layerNormalization float32 4D tensor options.bias and options.axes=[3, 1, 2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor all options
|
[FAIL] layerNormalization float32 4D tensor all options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] layerNormalization float32 2D tensor default options
|
[FAIL] layerNormalization float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 3D tensor default options
|
[FAIL] layerNormalization float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor default options
|
[FAIL] layerNormalization float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 5D tensor default options
|
[FAIL] layerNormalization float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.scale
|
[FAIL] layerNormalization float32 4D tensor options.scale
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.bias
|
[FAIL] layerNormalization float32 4D tensor options.bias
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.axes=[2]
|
[FAIL] layerNormalization float32 4D tensor options.axes=[2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.epsilon
|
[FAIL] layerNormalization float32 4D tensor options.epsilon
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.scale and options.axes=[0, 2]
|
[FAIL] layerNormalization float32 4D tensor options.scale and options.axes=[0, 2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.bias and options.axes=[3, 1, 2]
|
[FAIL] layerNormalization float32 4D tensor options.bias and options.axes=[3, 1, 2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor all options
|
[FAIL] layerNormalization float32 4D tensor all options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': layerNormalization is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] softsign positive float32 1D constant tensor
|
[FAIL] softsign positive float32 1D constant tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign positive float32 1D tensor
|
[FAIL] softsign positive float32 1D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign negative float32 1D tensor
|
[FAIL] softsign negative float32 1D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign float32 2D tensor
|
[FAIL] softsign float32 2D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign float32 3D tensor
|
[FAIL] softsign float32 3D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign float32 4D tensor
|
[FAIL] softsign float32 4D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign float32 5D tensor
|
[FAIL] softsign float32 5D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] softsign positive float32 1D constant tensor
|
[FAIL] softsign positive float32 1D constant tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign positive float32 1D tensor
|
[FAIL] softsign positive float32 1D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign negative float32 1D tensor
|
[FAIL] softsign negative float32 1D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign float32 2D tensor
|
[FAIL] softsign float32 2D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign float32 3D tensor
|
[FAIL] softsign float32 3D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign float32 4D tensor
|
[FAIL] softsign float32 4D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
[FAIL] softsign float32 5D tensor
|
[FAIL] softsign float32 5D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': softsign is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softsign"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,35 +1,35 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] triangular float32 2D tensor default options
|
[FAIL] triangular float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 3D tensor default options
|
[FAIL] triangular float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor default options
|
[FAIL] triangular float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 5D tensor default options
|
[FAIL] triangular float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor explict options.upper=true
|
[FAIL] triangular float32 4D tensor explict options.upper=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false
|
[FAIL] triangular float32 4D tensor options.upper=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor explict options.diagonal=0
|
[FAIL] triangular float32 4D tensor explict options.diagonal=0
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.diagonal=-1
|
[FAIL] triangular float32 4D tensor options.diagonal=-1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully zero options.diagonal=3
|
[FAIL] triangular float32 4D tensor fully zero options.diagonal=3
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully copied options.diagonal=-2
|
[FAIL] triangular float32 4D tensor fully copied options.diagonal=-2
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=true options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.upper=true options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=-1
|
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=-1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully copied options.upper=false options.diagonal=3
|
[FAIL] triangular float32 4D tensor fully copied options.upper=false options.diagonal=3
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully zero options.upper=false options.diagonal=-2
|
[FAIL] triangular float32 4D tensor fully zero options.upper=false options.diagonal=-2
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,35 +1,35 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] triangular float32 2D tensor default options
|
[FAIL] triangular float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 3D tensor default options
|
[FAIL] triangular float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor default options
|
[FAIL] triangular float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 5D tensor default options
|
[FAIL] triangular float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor explict options.upper=true
|
[FAIL] triangular float32 4D tensor explict options.upper=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false
|
[FAIL] triangular float32 4D tensor options.upper=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor explict options.diagonal=0
|
[FAIL] triangular float32 4D tensor explict options.diagonal=0
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.diagonal=-1
|
[FAIL] triangular float32 4D tensor options.diagonal=-1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully zero options.diagonal=3
|
[FAIL] triangular float32 4D tensor fully zero options.diagonal=3
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully copied options.diagonal=-2
|
[FAIL] triangular float32 4D tensor fully copied options.diagonal=-2
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=true options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.upper=true options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=-1
|
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=-1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully copied options.upper=false options.diagonal=3
|
[FAIL] triangular float32 4D tensor fully copied options.upper=false options.diagonal=3
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully zero options.upper=false options.diagonal=-2
|
[FAIL] triangular float32 4D tensor fully zero options.upper=false options.diagonal=-2
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': triangular is not implemented"
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,84 +1,84 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] argMin float32 1D constant tensor default options
|
[FAIL] argMin float32 1D constant tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 1D tensor default options
|
[FAIL] argMin float32 1D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 2D tensor default options
|
[FAIL] argMin float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 3D tensor default options
|
[FAIL] argMin float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor default options
|
[FAIL] argMin float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 5D tensor default options
|
[FAIL] argMin float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.axes=[2]
|
[FAIL] argMin float32 4D tensor options.axes=[2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.axes=[]
|
[FAIL] argMin float32 4D tensor options.axes=[]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.keepDimensions=true
|
[FAIL] argMin float32 4D tensor options.keepDimensions=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.keepDimensions=false
|
[FAIL] argMin float32 4D tensor options.keepDimensions=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.selectLastIndex=true
|
[FAIL] argMin float32 4D tensor options.selectLastIndex=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.selectLastIndex=false
|
[FAIL] argMin float32 4D tensor options.selectLastIndex=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.axes=[0, 2] options.keepDimensions=false
|
[FAIL] argMin float32 4D tensor options.axes=[0, 2] options.keepDimensions=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.axes=[3, 0, 1] options.keepDimensions=true
|
[FAIL] argMin float32 4D tensor options.axes=[3, 0, 1] options.keepDimensions=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.axes=[0, 2] options.selectLastIndex=false
|
[FAIL] argMin float32 4D tensor options.axes=[0, 2] options.selectLastIndex=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.axes=[0, 2] options.selectLastIndex=true
|
[FAIL] argMin float32 4D tensor options.axes=[0, 2] options.selectLastIndex=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.axes=[3, 0, 1] options.selectLastIndex=false
|
[FAIL] argMin float32 4D tensor options.axes=[3, 0, 1] options.selectLastIndex=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor options.axes=[3, 0, 1] options.selectLastIndex=true
|
[FAIL] argMin float32 4D tensor options.axes=[3, 0, 1] options.selectLastIndex=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 4D tensor all options
|
[FAIL] argMin float32 4D tensor all options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMin"
|
||||||
[FAIL] argMin float32 0D scalar options.axes=[]
|
[FAIL] argMin float32 0D scalar options.axes=[]
|
||||||
promise_test: Unhandled rejection with value: object "DataError: Failed to execute 'argMin' on 'MLGraphBuilder': The rank of input must be larger than or equal to 1."
|
promise_test: Unhandled rejection with value: object "DataError: Failed to execute 'argMin' on 'MLGraphBuilder': The rank of input must be larger than or equal to 1."
|
||||||
[FAIL] argMin float32 0D scalar options.axes=[] no effect by both keepDimensions and selectLastIndex being true
|
[FAIL] argMin float32 0D scalar options.axes=[] no effect by both keepDimensions and selectLastIndex being true
|
||||||
promise_test: Unhandled rejection with value: object "DataError: Failed to execute 'argMin' on 'MLGraphBuilder': The rank of input must be larger than or equal to 1."
|
promise_test: Unhandled rejection with value: object "DataError: Failed to execute 'argMin' on 'MLGraphBuilder': The rank of input must be larger than or equal to 1."
|
||||||
[FAIL] argMax float32 1D constant tensor default options
|
[FAIL] argMax float32 1D constant tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 1D tensor default options
|
[FAIL] argMax float32 1D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 2D tensor default options
|
[FAIL] argMax float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 3D tensor default options
|
[FAIL] argMax float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor default options
|
[FAIL] argMax float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 5D tensor default options
|
[FAIL] argMax float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.axes=[2]
|
[FAIL] argMax float32 4D tensor options.axes=[2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.axes=[]
|
[FAIL] argMax float32 4D tensor options.axes=[]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.keepDimensions=true
|
[FAIL] argMax float32 4D tensor options.keepDimensions=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.keepDimensions=false
|
[FAIL] argMax float32 4D tensor options.keepDimensions=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.selectLastIndex=true
|
[FAIL] argMax float32 4D tensor options.selectLastIndex=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.selectLastIndex=false
|
[FAIL] argMax float32 4D tensor options.selectLastIndex=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.axes=[0, 2] options.keepDimensions=false
|
[FAIL] argMax float32 4D tensor options.axes=[0, 2] options.keepDimensions=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.axes=[3, 0, 1] options.keepDimensions=true
|
[FAIL] argMax float32 4D tensor options.axes=[3, 0, 1] options.keepDimensions=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.axes=[0, 2] options.selectLastIndex=false
|
[FAIL] argMax float32 4D tensor options.axes=[0, 2] options.selectLastIndex=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.axes=[0, 2] options.selectLastIndex=true
|
[FAIL] argMax float32 4D tensor options.axes=[0, 2] options.selectLastIndex=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.axes=[3, 0, 1] options.selectLastIndex=false
|
[FAIL] argMax float32 4D tensor options.axes=[3, 0, 1] options.selectLastIndex=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor options.axes=[3, 0, 1] options.selectLastIndex=true
|
[FAIL] argMax float32 4D tensor options.axes=[3, 0, 1] options.selectLastIndex=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 4D tensor all options
|
[FAIL] argMax float32 4D tensor all options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator ArgMax"
|
||||||
[FAIL] argMax float32 0D scalar options.axes=[]
|
[FAIL] argMax float32 0D scalar options.axes=[]
|
||||||
promise_test: Unhandled rejection with value: object "DataError: Failed to execute 'argMax' on 'MLGraphBuilder': The rank of input must be larger than or equal to 1."
|
promise_test: Unhandled rejection with value: object "DataError: Failed to execute 'argMax' on 'MLGraphBuilder': The rank of input must be larger than or equal to 1."
|
||||||
[FAIL] argMax float32 0D scalar options.axes=[] no effect by both keepDimensions and selectLastIndex being true
|
[FAIL] argMax float32 0D scalar options.axes=[] no effect by both keepDimensions and selectLastIndex being true
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
Found 6 FAIL, 0 TIMEOUT, 0 NOTRUN.
|
Found 6 FAIL, 0 TIMEOUT, 0 NOTRUN.
|
||||||
[FAIL] neg float32 1D constant tensor
|
[FAIL] neg float32 1D constant tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
[FAIL] neg float32 1D tensor
|
[FAIL] neg float32 1D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
[FAIL] neg float32 2D tensor
|
[FAIL] neg float32 2D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
[FAIL] neg float32 3D tensor
|
[FAIL] neg float32 3D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
[FAIL] neg float32 4D tensor
|
[FAIL] neg float32 4D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
[FAIL] neg float32 5D tensor
|
[FAIL] neg float32 5D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
Found 6 FAIL, 0 TIMEOUT, 0 NOTRUN.
|
Found 6 FAIL, 0 TIMEOUT, 0 NOTRUN.
|
||||||
[FAIL] neg float32 1D constant tensor
|
[FAIL] neg float32 1D constant tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
[FAIL] neg float32 1D tensor
|
[FAIL] neg float32 1D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
[FAIL] neg float32 2D tensor
|
[FAIL] neg float32 2D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
[FAIL] neg float32 3D tensor
|
[FAIL] neg float32 3D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
[FAIL] neg float32 4D tensor
|
[FAIL] neg float32 4D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
[FAIL] neg float32 5D tensor
|
[FAIL] neg float32 5D tensor
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator (neg) is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator neg"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,47 +1,47 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] expand float32 0D scalar to 1D
|
[FAIL] expand float32 0D scalar to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 2D
|
[FAIL] expand float32 0D scalar to 2D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 3D
|
[FAIL] expand float32 0D scalar to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 4D
|
[FAIL] expand float32 0D scalar to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 5D
|
[FAIL] expand float32 0D scalar to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D constant tensor to 1D
|
[FAIL] expand float32 1D constant tensor to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 1D
|
[FAIL] expand float32 1D tensor to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 2D
|
[FAIL] expand float32 1D tensor to 2D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 3D
|
[FAIL] expand float32 1D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 4D
|
[FAIL] expand float32 1D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 5D
|
[FAIL] expand float32 1D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (1st dimension)
|
[FAIL] expand float32 2D tensor to 2D (1st dimension)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (2nd dimension)
|
[FAIL] expand float32 2D tensor to 2D (2nd dimension)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (all dimensions)
|
[FAIL] expand float32 2D tensor to 2D (all dimensions)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 3D
|
[FAIL] expand float32 2D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 4D
|
[FAIL] expand float32 2D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 5D
|
[FAIL] expand float32 2D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 3D
|
[FAIL] expand float32 3D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 4D
|
[FAIL] expand float32 3D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 5D
|
[FAIL] expand float32 3D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 4D tensor to 4D
|
[FAIL] expand float32 4D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 4D tensor to 5D
|
[FAIL] expand float32 4D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,47 +1,47 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] expand float32 0D scalar to 1D
|
[FAIL] expand float32 0D scalar to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 2D
|
[FAIL] expand float32 0D scalar to 2D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 3D
|
[FAIL] expand float32 0D scalar to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 4D
|
[FAIL] expand float32 0D scalar to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 0D scalar to 5D
|
[FAIL] expand float32 0D scalar to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D constant tensor to 1D
|
[FAIL] expand float32 1D constant tensor to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 1D
|
[FAIL] expand float32 1D tensor to 1D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 2D
|
[FAIL] expand float32 1D tensor to 2D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 3D
|
[FAIL] expand float32 1D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 4D
|
[FAIL] expand float32 1D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 1D tensor to 5D
|
[FAIL] expand float32 1D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (1st dimension)
|
[FAIL] expand float32 2D tensor to 2D (1st dimension)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (2nd dimension)
|
[FAIL] expand float32 2D tensor to 2D (2nd dimension)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 2D (all dimensions)
|
[FAIL] expand float32 2D tensor to 2D (all dimensions)
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 3D
|
[FAIL] expand float32 2D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 4D
|
[FAIL] expand float32 2D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 2D tensor to 5D
|
[FAIL] expand float32 2D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 3D
|
[FAIL] expand float32 3D tensor to 3D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 4D
|
[FAIL] expand float32 3D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 3D tensor to 5D
|
[FAIL] expand float32 3D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 4D tensor to 4D
|
[FAIL] expand float32 4D tensor to 4D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
[FAIL] expand float32 4D tensor to 5D
|
[FAIL] expand float32 4D tensor to 5D
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator expand"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] layerNormalization float32 2D tensor default options
|
[FAIL] layerNormalization float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 3D tensor default options
|
[FAIL] layerNormalization float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor default options
|
[FAIL] layerNormalization float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 5D tensor default options
|
[FAIL] layerNormalization float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.scale
|
[FAIL] layerNormalization float32 4D tensor options.scale
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.bias
|
[FAIL] layerNormalization float32 4D tensor options.bias
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.axes=[2]
|
[FAIL] layerNormalization float32 4D tensor options.axes=[2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.epsilon
|
[FAIL] layerNormalization float32 4D tensor options.epsilon
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.scale and options.axes=[0, 2]
|
[FAIL] layerNormalization float32 4D tensor options.scale and options.axes=[0, 2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.bias and options.axes=[3, 1, 2]
|
[FAIL] layerNormalization float32 4D tensor options.bias and options.axes=[3, 1, 2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor all options
|
[FAIL] layerNormalization float32 4D tensor all options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] layerNormalization float32 2D tensor default options
|
[FAIL] layerNormalization float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 3D tensor default options
|
[FAIL] layerNormalization float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor default options
|
[FAIL] layerNormalization float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 5D tensor default options
|
[FAIL] layerNormalization float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.scale
|
[FAIL] layerNormalization float32 4D tensor options.scale
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.bias
|
[FAIL] layerNormalization float32 4D tensor options.bias
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.axes=[2]
|
[FAIL] layerNormalization float32 4D tensor options.axes=[2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.epsilon
|
[FAIL] layerNormalization float32 4D tensor options.epsilon
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.scale and options.axes=[0, 2]
|
[FAIL] layerNormalization float32 4D tensor options.scale and options.axes=[0, 2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor options.bias and options.axes=[3, 1, 2]
|
[FAIL] layerNormalization float32 4D tensor options.bias and options.axes=[3, 1, 2]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
[FAIL] layerNormalization float32 4D tensor all options
|
[FAIL] layerNormalization float32 4D tensor all options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator layerNormalization"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] pad float32 1D constant tensor default options
|
[FAIL] pad float32 1D constant tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 1D tensor default options
|
[FAIL] pad float32 1D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 2D tensor default options
|
[FAIL] pad float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 3D tensor default options
|
[FAIL] pad float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 4D tensor default options
|
[FAIL] pad float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 5D tensor default options
|
[FAIL] pad float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 2D tensor explicit options.mode='constant'
|
[FAIL] pad float32 2D tensor explicit options.mode='constant'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 2D tensor options.value default constant mode
|
[FAIL] pad float32 2D tensor options.value default constant mode
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 4D tensor options.mode='edge'
|
[FAIL] pad float32 4D tensor options.mode='edge'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 4D tensor options.mode='reflection'
|
[FAIL] pad float32 4D tensor options.mode='reflection'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 4D tensor options.mode='symmetric'
|
[FAIL] pad float32 4D tensor options.mode='symmetric'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] pad float32 1D constant tensor default options
|
[FAIL] pad float32 1D constant tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 1D tensor default options
|
[FAIL] pad float32 1D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 2D tensor default options
|
[FAIL] pad float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 3D tensor default options
|
[FAIL] pad float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 4D tensor default options
|
[FAIL] pad float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 5D tensor default options
|
[FAIL] pad float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 2D tensor explicit options.mode='constant'
|
[FAIL] pad float32 2D tensor explicit options.mode='constant'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 2D tensor options.value default constant mode
|
[FAIL] pad float32 2D tensor options.value default constant mode
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 4D tensor options.mode='edge'
|
[FAIL] pad float32 4D tensor options.mode='edge'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 4D tensor options.mode='reflection'
|
[FAIL] pad float32 4D tensor options.mode='reflection'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
[FAIL] pad float32 4D tensor options.mode='symmetric'
|
[FAIL] pad float32 4D tensor options.mode='symmetric'
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator pad"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,27 +1,27 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] prelu float32 0D scalar
|
[FAIL] prelu float32 0D scalar
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 1D constant tensors
|
[FAIL] prelu float32 1D constant tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 1D tensors
|
[FAIL] prelu float32 1D tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 2D tensors
|
[FAIL] prelu float32 2D tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 3D tensors
|
[FAIL] prelu float32 3D tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 4D tensors
|
[FAIL] prelu float32 4D tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 5D tensors
|
[FAIL] prelu float32 5D tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 broadcast 4D x 1D slope
|
[FAIL] prelu float32 broadcast 4D x 1D slope
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 broadcast 4D x 1D slope of shape [1]
|
[FAIL] prelu float32 broadcast 4D x 1D slope of shape [1]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 broadcast 4D x 2D slope
|
[FAIL] prelu float32 broadcast 4D x 2D slope
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 broadcast 4D x 3D slope
|
[FAIL] prelu float32 broadcast 4D x 3D slope
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 broadcast 4D x 4D slope
|
[FAIL] prelu float32 broadcast 4D x 4D slope
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,27 +1,27 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] prelu float32 0D scalar
|
[FAIL] prelu float32 0D scalar
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 1D constant tensors
|
[FAIL] prelu float32 1D constant tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 1D tensors
|
[FAIL] prelu float32 1D tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 2D tensors
|
[FAIL] prelu float32 2D tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 3D tensors
|
[FAIL] prelu float32 3D tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 4D tensors
|
[FAIL] prelu float32 4D tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 5D tensors
|
[FAIL] prelu float32 5D tensors
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 broadcast 4D x 1D slope
|
[FAIL] prelu float32 broadcast 4D x 1D slope
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 broadcast 4D x 1D slope of shape [1]
|
[FAIL] prelu float32 broadcast 4D x 1D slope of shape [1]
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 broadcast 4D x 2D slope
|
[FAIL] prelu float32 broadcast 4D x 2D slope
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 broadcast 4D x 3D slope
|
[FAIL] prelu float32 broadcast 4D x 3D slope
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
[FAIL] prelu float32 broadcast 4D x 4D slope
|
[FAIL] prelu float32 broadcast 4D x 4D slope
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator prelu"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] softmax float32 2D constant tensor all positive
|
[FAIL] softmax float32 2D constant tensor all positive
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softmax"
|
||||||
[FAIL] softmax float32 2D tensor all positive
|
[FAIL] softmax float32 2D tensor all positive
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softmax"
|
||||||
[FAIL] softmax float32 2D tensor all negative
|
[FAIL] softmax float32 2D tensor all negative
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softmax"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] softmax float32 2D constant tensor all positive
|
[FAIL] softmax float32 2D constant tensor all positive
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softmax"
|
||||||
[FAIL] softmax float32 2D tensor all positive
|
[FAIL] softmax float32 2D tensor all positive
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softmax"
|
||||||
[FAIL] softmax float32 2D tensor all negative
|
[FAIL] softmax float32 2D tensor all negative
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator softmax"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,21 +1,21 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] split float32 1D constant tensor number splits default options
|
[FAIL] split float32 1D constant tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 1D tensor number splits default options
|
[FAIL] split float32 1D tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 2D tensor number splits default options
|
[FAIL] split float32 2D tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 3D tensor number splits default options
|
[FAIL] split float32 3D tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 4D tensor number splits default options
|
[FAIL] split float32 4D tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 5D tensor number splits default options
|
[FAIL] split float32 5D tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 4D tensor array splits default options
|
[FAIL] split float32 4D tensor array splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 4D tensor number splits options.axis
|
[FAIL] split float32 4D tensor number splits options.axis
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 5D tensor array splits options.axis
|
[FAIL] split float32 5D tensor array splits options.axis
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,21 +1,21 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] split float32 1D constant tensor number splits default options
|
[FAIL] split float32 1D constant tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 1D tensor number splits default options
|
[FAIL] split float32 1D tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 2D tensor number splits default options
|
[FAIL] split float32 2D tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 3D tensor number splits default options
|
[FAIL] split float32 3D tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 4D tensor number splits default options
|
[FAIL] split float32 4D tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 5D tensor number splits default options
|
[FAIL] split float32 5D tensor number splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 4D tensor array splits default options
|
[FAIL] split float32 4D tensor array splits default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 4D tensor number splits options.axis
|
[FAIL] split float32 4D tensor number splits options.axis
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
[FAIL] split float32 5D tensor array splits options.axis
|
[FAIL] split float32 5D tensor array splits options.axis
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator split"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,35 +1,35 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] triangular float32 2D tensor default options
|
[FAIL] triangular float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 3D tensor default options
|
[FAIL] triangular float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor default options
|
[FAIL] triangular float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 5D tensor default options
|
[FAIL] triangular float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor explict options.upper=true
|
[FAIL] triangular float32 4D tensor explict options.upper=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false
|
[FAIL] triangular float32 4D tensor options.upper=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor explict options.diagonal=0
|
[FAIL] triangular float32 4D tensor explict options.diagonal=0
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.diagonal=-1
|
[FAIL] triangular float32 4D tensor options.diagonal=-1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully zero options.diagonal=3
|
[FAIL] triangular float32 4D tensor fully zero options.diagonal=3
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully copied options.diagonal=-2
|
[FAIL] triangular float32 4D tensor fully copied options.diagonal=-2
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=true options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.upper=true options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=-1
|
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=-1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully copied options.upper=false options.diagonal=3
|
[FAIL] triangular float32 4D tensor fully copied options.upper=false options.diagonal=3
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully zero options.upper=false options.diagonal=-2
|
[FAIL] triangular float32 4D tensor fully zero options.upper=false options.diagonal=-2
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
@ -1,35 +1,35 @@
|
|||||||
This is a testharness.js-based test.
|
This is a testharness.js-based test.
|
||||||
[FAIL] triangular float32 2D tensor default options
|
[FAIL] triangular float32 2D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 3D tensor default options
|
[FAIL] triangular float32 3D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor default options
|
[FAIL] triangular float32 4D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 5D tensor default options
|
[FAIL] triangular float32 5D tensor default options
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor explict options.upper=true
|
[FAIL] triangular float32 4D tensor explict options.upper=true
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false
|
[FAIL] triangular float32 4D tensor options.upper=false
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor explict options.diagonal=0
|
[FAIL] triangular float32 4D tensor explict options.diagonal=0
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.diagonal=-1
|
[FAIL] triangular float32 4D tensor options.diagonal=-1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully zero options.diagonal=3
|
[FAIL] triangular float32 4D tensor fully zero options.diagonal=3
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully copied options.diagonal=-2
|
[FAIL] triangular float32 4D tensor fully copied options.diagonal=-2
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=true options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.upper=true options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=1
|
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=-1
|
[FAIL] triangular float32 4D tensor options.upper=false options.diagonal=-1
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully copied options.upper=false options.diagonal=3
|
[FAIL] triangular float32 4D tensor fully copied options.upper=false options.diagonal=3
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
[FAIL] triangular float32 4D tensor fully zero options.upper=false options.diagonal=-2
|
[FAIL] triangular float32 4D tensor fully zero options.upper=false options.diagonal=-2
|
||||||
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': This operator is not implemented."
|
promise_test: Unhandled rejection with value: object "NotSupportedError: Failed to execute 'build' on 'MLGraphBuilder': Unsupported operator triangular"
|
||||||
Harness: the test ran to completion.
|
Harness: the test ran to completion.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user