Home
last modified time | relevance | path

Searched refs:GetInputDimRanges (Results 1 – 25 of 27) sorted by relevance

12

/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/nnrt/
H A Dinterface_i_prepared_model_v20.md23 | [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 Dneural_network_runtime_test.cpp261 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 Dnn_executor_test.cpp96 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 Dnnrt_prepare_model_impl.h37 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 Dprepared_model.h45 virtual OH_NN_ReturnCode GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims, in GetInputDimRanges() function
H A Dhdi_prepared_model_v2_0.h53 OH_NN_ReturnCode GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
H A Dhdi_prepared_model_v2_1.h53 OH_NN_ReturnCode GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
H A Dhdi_prepared_model_v2_0.cpp290 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 Dhdi_prepared_model_v2_1.cpp290 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 Dnnexecutor.cpp42 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 Dexecutor_mock_device.cpp56 OH_NN_ReturnCode HDIPreparedModelV2_0::GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInp… in GetInputDimRanges() function in OHOS::NeuralNetworkRuntime::HDIPreparedModelV2_0
H A Dmock_idevice.h56 …MOCK_METHOD2(GetInputDimRanges, int32_t(std::vector<std::vector<uint32_t>>&, std::vector<std::vect…
/ohos5.0/drivers/interface/nnrt/v2_0/
H A DIPreparedModel.idl22 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 DIPreparedModel.idl22 GetInputDimRanges([out] unsigned int[][] minInputDims, [out] unsigned int[][] maxInputDims);
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/common/v2_1/
H A Dmock_idevice.h56 …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 Dprepared_model_service.h49 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 Dprepared_model_service.cpp.txt30 int32_t PreparedModelService::GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
H A Dprepared_model_service.h.txt32 int32_t GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
H A Diprepared_model.h.txt68 virtual int32_t GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
H A Dprepared_model_proxy.h.txt40 int32_t GetInputDimRanges(std::vector<std::vector<uint32_t>>& minInputDims,
H A Dprepared_model_proxy.cpp.txt61 int32_t OHOS::HDI::Nnrt::V2_0::PreparedModelProxy::GetInputDimRanges(std::vector<std::vector<uint32…
H A Dprepared_model_stub.cpp.txt183 int32_t preparedModelRet = impl->GetInputDimRanges(minInputDims, maxInputDims);
/ohos5.0/drivers/interface/nnrt/v2_1/
H A DIPreparedModel.idl81 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 Dprepared_model_service.cpp138 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 Ddump.txt113 [mini, lite, full] GetInputDimRanges(

12