Home
last modified time | relevance | path

Searched refs:OH_NN_OPS_ADD (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/foundation/ai/neural_network_runtime/test/system_test/
H A Dend_to_end_test.cpp61 status = AddOperation(OH_NN_OPS_ADD, {2}, {0, 1}, {3}); in BuildModel()
67 status = AddOperation(OH_NN_OPS_ADD, {2}, {3, 1}, {4}); in BuildModel()
263 ASSERT_EQ(OH_NN_SUCCESS, AddOperation(OH_NN_OPS_ADD, {2}, {0, 1}, {3}));
264 ASSERT_EQ(OH_NN_SUCCESS, AddOperation(OH_NN_OPS_ADD, {2}, {3, 1}, {4}));
/ohos5.0/foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/ops/
H A Dadd_builder.cpp117 REGISTER_OPS(AddBuilder, OH_NN_OPS_ADD);
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/neural_network_runtime_test/
H A Dneural_network_runtime_test.cpp153 ret = model.AddOperation(OH_NN_OPS_ADD, paramIndices, inputIndices, outputIndices); in BuildModel()
214 OH_NN_OperationType opType {OH_NN_OPS_ADD}; in SetInnerBuild()
312 OH_NN_OperationType opType {OH_NN_OPS_ADD};
335 OH_NN_OperationType opType {OH_NN_OPS_ADD};
362 OH_NN_OperationType opType {OH_NN_OPS_ADD};
389 OH_NN_OperationType opType {OH_NN_OPS_ADD};
416 OH_NN_OperationType opType {OH_NN_OPS_ADD};
581 OH_NN_OperationType opType {OH_NN_OPS_ADD};
608 OH_NN_OperationType opType {OH_NN_OPS_ADD};
/ohos5.0/foundation/ai/neural_network_runtime/interfaces/kits/c/neural_network_runtime/
H A Dneural_network_runtime_type.h346 OH_NN_OPS_ADD = 1, enumerator
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/neural_network_runtime_test/
H A Dneural_network_runtime_test.cpp154 ret = model.AddOperation(OH_NN_OPS_ADD, paramIndices, inputIndices, outputIndices); in BuildModel()
215 OH_NN_OperationType opType {OH_NN_OPS_ADD}; in SetInnerBuild()
365 OH_NN_OperationType opType {OH_NN_OPS_ADD};
388 OH_NN_OperationType opType {OH_NN_OPS_ADD};
415 OH_NN_OperationType opType {OH_NN_OPS_ADD};
442 OH_NN_OperationType opType {OH_NN_OPS_ADD};
469 OH_NN_OperationType opType {OH_NN_OPS_ADD};
634 OH_NN_OperationType opType {OH_NN_OPS_ADD};
661 OH_NN_OperationType opType {OH_NN_OPS_ADD};
/ohos5.0/foundation/ai/neural_network_runtime/example/deep_learning_framework/tflite/delegates/nnrt_delegate/
H A Dnnrt_utils.cpp198 {kTfLiteBuiltinAdd, OH_NN_OPS_ADD},
/ohos5.0/docs/zh-cn/application-dev/reference/apis-neural-network-runtime-kit/
H A Dneural__network__runtime__type_8h.md70 | [OH_NN_OperationType](_neural_network_runtime.md#oh_nn_operationtype) {<br/>OH_NN_OPS_ADD = 1, OH…
H A D_neural_network_runtime.md71 | [OH_NN_OperationType](#oh_nn_operationtype) {<br/>OH_NN_OPS_ADD = 1, OH_NN_OPS_AVG_POOL = 2, OH_N…
576 | OH_NN_OPS_ADD | 返回两个输入张量对应元素相加的和的张量。<br/>输入:<br/>- input1,第一个输入的张量,数据类型要求为布尔值或者数字。<br/>- input2,第…
H A D_neural_nework_runtime.md71 | [OH_NN_OperationType](#oh_nn_operationtype) {<br/>OH_NN_OPS_ADD = 1, OH_NN_OPS_AVG_POOL = 2, OH_N…
576 | OH_NN_OPS_ADD | 返回两个输入张量对应元素相加的和的张量。<br/>输入:<br/>- input1,第一个输入的张量,数据类型要求为布尔值或者数字。<br/>- input2,第…
/ohos5.0/docs/en/application-dev/reference/apis-neural-network-runtime-kit/
H A Dneural__network__runtime__type_8h.md70 | [OH_NN_OperationType](_neural_network_runtime.md#oh_nn_operationtype) {<br>OH_NN_OPS_ADD = 1, OH_…
H A D_neural_network_runtime.md71 | [OH_NN_OperationType](#oh_nn_operationtype) {<br>OH_NN_OPS_ADD = 1, OH_NN_OPS_AVG_POOL = 2, OH_NN…
576 | OH_NN_OPS_ADD | Returns the tensor of the sum of the elements corresponding to two input tensors.…
/ohos5.0/foundation/ai/neural_network_runtime/
H A Dneural-network-runtime-guidelines.md383 …returnCode = OH_NNModel_AddOperation(model, OH_NN_OPS_ADD, &paramIndices, &inputIndices, &outputIn…
/ohos5.0/docs/zh-cn/application-dev/ai/nnrt/
H A Dneural-network-runtime-guidelines.md374 …returnCode = OH_NNModel_AddOperation(model, OH_NN_OPS_ADD, &paramIndices, &inputIndices, &outputIn…
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/compilation/
H A Dcompilation_test.cpp78 ret = innerModel.AddOperation(OH_NN_OPS_ADD, paramIndices, inputIndices, outputIndices); in BuildModel()
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/compilation/
H A Dcompilation_test.cpp78 ret = innerModel.AddOperation(OH_NN_OPS_ADD, paramIndices, inputIndices, outputIndices); in BuildModel()
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/components/nn_compiler/
H A Dnn_compiler_test.cpp169 ret = innerModel.AddOperation(OH_NN_OPS_ADD, paramIndices, inputIndices, outputIndices); in BuildModel()
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/inner_model/
H A Dinner_model_test.cpp55 OH_NN_OperationType m_opType {OH_NN_OPS_ADD};
532 OH_NN_OperationType m_opType = OH_NN_OPS_ADD;
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/inner_model/
H A Dinner_model_test.cpp55 OH_NN_OperationType m_opType {OH_NN_OPS_ADD};
472 OH_NN_OperationType m_opType = OH_NN_OPS_ADD;
/ohos5.0/docs/en/application-dev/ai/nnrt/
H A Dneural-network-runtime-guidelines.md374 …returnCode = OH_NNModel_AddOperation(model, OH_NN_OPS_ADD, &paramIndices, &inputIndices, &outputIn…
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/neural_network_core_test/
H A Dneural_network_core_test.cpp83 ret = model.AddOperation(OH_NN_OPS_ADD, paramIndices, inputIndices, outputIndices); in BuildModel()