/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/nnrt/ |
H A D | interface_i_prepared_model_v20.md | 23 | [GetInputDimRanges](#getinputdimranges) ([out] unsigned int[][] minInputDims, [out] unsigned int[… 56 ### GetInputDimRanges() 59 IPreparedModel::GetInputDimRanges ([out] unsigned int minInputDims[][], [out] unsigned int maxInput…
|
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/neural_network_runtime_test/ |
H A D | neural_network_runtime_test.cpp | 261 MOCK_METHOD2(GetInputDimRanges, OH_NN_ReturnCode(std::vector<std::vector<uint32_t>>&, 1291 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 1323 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 1353 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 1383 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 1491 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 1518 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 1544 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 1705 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 1810 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… [all …]
|
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/components/nn_executor/ |
H A D | nn_executor_test.cpp | 96 MOCK_METHOD2(GetInputDimRanges, OH_NN_ReturnCode(std::vector<std::vector<uint32_t>>&, 195 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 226 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 255 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 284 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 314 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 348 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 388 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 428 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… 898 …EXPECT_CALL(*((MockIPreparedModel *) mockIPreparedMode.get()), GetInputDimRanges(::testing::_, ::t… [all …]
|
/ohos5.0/foundation/ai/neural_network_runtime/test/fuzztest/ |
H A D | nnrt_prepare_model_impl.h | 37 int32_t GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims, in GetInputDimRanges() function
|
/ohos5.0/foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/ |
H A D | prepared_model.h | 45 virtual OH_NN_ReturnCode GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims, in GetInputDimRanges() function
|
H A D | hdi_prepared_model_v2_0.h | 53 OH_NN_ReturnCode GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
|
H A D | hdi_prepared_model_v2_1.h | 53 OH_NN_ReturnCode GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
|
H A D | hdi_prepared_model_v2_0.cpp | 290 OH_NN_ReturnCode HDIPreparedModelV2_0::GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInp… in GetInputDimRanges() function in OHOS::NeuralNetworkRuntime::HDIPreparedModelV2_0 293 auto ret = m_hdiPreparedModel->GetInputDimRanges(minInputDims, maxInputDims); in GetInputDimRanges()
|
H A D | hdi_prepared_model_v2_1.cpp | 290 OH_NN_ReturnCode HDIPreparedModelV2_1::GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInp… in GetInputDimRanges() function in OHOS::NeuralNetworkRuntime::HDIPreparedModelV2_1 293 auto ret = m_hdiPreparedModel->GetInputDimRanges(minInputDims, maxInputDims); in GetInputDimRanges()
|
H A D | nnexecutor.cpp | 42 OH_NN_ReturnCode oldRet = m_preparedModel->GetInputDimRanges(minInputDimsVec, maxInputDimsVec); in GetInputDimVec() 345 OH_NN_ReturnCode oldRet = m_preparedModel->GetInputDimRanges(minInputDims, maxInputDims); in CheckInputDimRanges() 527 auto ret = m_preparedModel->GetInputDimRanges(minInputDims, maxInputDims); in CheckInputDimRanges()
|
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/common/v2_0/ |
H A D | executor_mock_device.cpp | 56 OH_NN_ReturnCode HDIPreparedModelV2_0::GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInp… in GetInputDimRanges() function in OHOS::NeuralNetworkRuntime::HDIPreparedModelV2_0
|
H A D | mock_idevice.h | 56 …MOCK_METHOD2(GetInputDimRanges, int32_t(std::vector<std::vector<uint32_t>>&, std::vector<std::vect…
|
/ohos5.0/drivers/interface/nnrt/v2_0/ |
H A D | IPreparedModel.idl | 22 GetInputDimRanges([out] unsigned int[][] minInputDims, [out] unsigned int[][] maxInputDims);
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/nnrt_v2_0/foo/nnrt/v2_0/ |
H A D | IPreparedModel.idl | 22 GetInputDimRanges([out] unsigned int[][] minInputDims, [out] unsigned int[][] maxInputDims);
|
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/common/v2_1/ |
H A D | mock_idevice.h | 56 …MOCK_METHOD2(GetInputDimRanges, int32_t(std::vector<std::vector<uint32_t>>&, std::vector<std::vect…
|
/ohos5.0/foundation/ai/neural_network_runtime/example/drivers/nnrt/v2_0/hdi_cpu_service/include/ |
H A D | prepared_model_service.h | 49 int32_t GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/nnrt_v2_0/cpp_target/nnrt/v2_0/ |
H A D | prepared_model_service.cpp.txt | 30 int32_t PreparedModelService::GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
|
H A D | prepared_model_service.h.txt | 32 int32_t GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
|
H A D | iprepared_model.h.txt | 68 virtual int32_t GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
|
H A D | prepared_model_proxy.h.txt | 40 int32_t GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
|
H A D | prepared_model_proxy.cpp.txt | 61 int32_t OHOS::HDI::Nnrt::V2_0::PreparedModelProxy::GetInputDimRanges(std::vector<std::vector<uint32…
|
H A D | prepared_model_stub.cpp.txt | 183 int32_t preparedModelRet = impl->GetInputDimRanges(minInputDims, maxInputDims);
|
/ohos5.0/drivers/interface/nnrt/v2_1/ |
H A D | IPreparedModel.idl | 81 GetInputDimRanges([out] unsigned int[][] minInputDims, [out] unsigned int[][] maxInputDims);
|
/ohos5.0/foundation/ai/neural_network_runtime/example/drivers/nnrt/v2_0/hdi_cpu_service/src/ |
H A D | prepared_model_service.cpp | 138 int32_t PreparedModelService::GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims, in GetInputDimRanges() function in OHOS::HDI::Nnrt::V2_0::PreparedModelService
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/nnrt_v2_0/dump_ast_target/ |
H A D | dump.txt | 113 [mini, lite, full] GetInputDimRanges(
|