Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions runtime/onert/core/src/loader/BaseLoader.h
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,6 @@ void BaseLoader<LoaderDomain>::loadCustom(const Operator *op, ir::Graph &subg)
ReduceAll,
MatrixBandPart,
BatchMatMul,
BroadcastTo,
FusedBatchNorm,
StatelessRandomUniform,
Erf,
Expand All @@ -1137,7 +1136,6 @@ void BaseLoader<LoaderDomain>::loadCustom(const Operator *op, ir::Graph &subg)
{"MatrixBandPart", BuiltinOP::MatrixBandPart},
{"BatchMatMulV2", BuiltinOP::BatchMatMul},
{"FusedBatchNormV3", BuiltinOP::FusedBatchNorm},
{"BroadcastTo", BuiltinOP::BroadcastTo},
{"StatelessRandomUniform", BuiltinOP::StatelessRandomUniform},
{"Erf", BuiltinOP::Erf},
{"TFLite_Detection_PostProcess", BuiltinOP::DetectionPostProcess},
Expand All @@ -1161,9 +1159,6 @@ void BaseLoader<LoaderDomain>::loadCustom(const Operator *op, ir::Graph &subg)
case BuiltinOP::BatchMatMul:
loadBatchMatMul(op, subg);
break;
case BuiltinOP::BroadcastTo:
loadOperationTo<ir::operation::BroadcastTo>(op, subg);
break;
case BuiltinOP::FusedBatchNorm:
loadFusedBatchNorm(op, subg);
break;
Expand Down
4 changes: 0 additions & 4 deletions runtime/tests/nnapi/bridge/wrapper/OperationFactory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1566,10 +1566,6 @@ OperationFactory::OperationFactory()
return new operation::BatchMatMul{inputs, outputs, param};
};

// 0 -> Input Tensor Index
// 1 -> int32, int64, An 1-D int tensor Index
_map[ANEURALNETWORKS_BROADCAST_TO_EX] = createSimpleBinaryOp<operation::BroadcastTo>;

_map[ANEURALNETWORKS_STATELESS_RANDOM_UNIFORM_EX] = [](const OperationFactory::Param &init_param,
Operands &) {
assert(init_param.input_count == 2 && init_param.output_count == 1);
Expand Down
4 changes: 0 additions & 4 deletions runtime/tests/nnapi/nnapi_gtest.skip.armv7l-linux.acl_cl
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ GeneratedTests.batch_matmul_ex_float_broadcast
GeneratedTests.batch_matmul_ex_float_broadcast2_adj_xy
GeneratedTests.batch_matmul_ex_float_broadcast_adj_x
GeneratedTests.batch_matmul_ex_float_simple
GeneratedTests.broadcast_to_ex_1D_nnfw
GeneratedTests.broadcast_to_ex_2D_nnfw
GeneratedTests.broadcast_to_ex_dynamic_2D_nnfw
GeneratedTests.broadcast_to_ex_dynamic_3D_nnfw
GeneratedTests.cast_dynamic_float32_to_int32_nnfw
GeneratedTests.cast_float16_to_float16
GeneratedTests.cast_float16_to_float32
Expand Down
4 changes: 0 additions & 4 deletions runtime/tests/nnapi/nnapi_gtest.skip.armv7l-linux.acl_neon
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ GeneratedTests.batch_matmul_ex_float_broadcast
GeneratedTests.batch_matmul_ex_float_broadcast2_adj_xy
GeneratedTests.batch_matmul_ex_float_broadcast_adj_x
GeneratedTests.batch_matmul_ex_float_simple
GeneratedTests.broadcast_to_ex_1D_nnfw
GeneratedTests.broadcast_to_ex_2D_nnfw
GeneratedTests.broadcast_to_ex_dynamic_2D_nnfw
GeneratedTests.broadcast_to_ex_dynamic_3D_nnfw
GeneratedTests.cast_dynamic_float32_to_int32_nnfw
GeneratedTests.cast_float16_to_float16
GeneratedTests.cast_float16_to_float32
Expand Down
45 changes: 0 additions & 45 deletions runtime/tests/nnapi/specs/Ex/broadcast_to_ex_1D_nnfw.mod.py

This file was deleted.

48 changes: 0 additions & 48 deletions runtime/tests/nnapi/specs/Ex/broadcast_to_ex_2D_nnfw.mod.py

This file was deleted.

This file was deleted.

This file was deleted.