From: Tae-Young Chung Date: Wed, 20 Apr 2022 09:14:04 +0000 (+0900) Subject: Change OutputLayer to OutputTensor X-Git-Tag: submit/tizen_6.5/20220422.005247^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=622a99007880af0714fdc8793523d4a320731e32;p=platform%2Fcore%2Fmultimedia%2Finference-engine-mlapi.git Change OutputLayer to OutputTensor [Version] 0.0.7-0 [Issue type] bug fix MediaVision uses the final output buffer(or tensor) name to access the memory. In SPNE, even though a single OutputLayer has a name but there are final multiple OutputTensors which have different names. So, change the OutputLayer to OutputTensor. Change-Id: I1f2f1712699bb6d51dce831a11137b60303267c7 Signed-off-by: Tae-Young Chung --- diff --git a/packaging/inference-engine-mlapi.spec b/packaging/inference-engine-mlapi.spec index 316f9f9..a6c4f9a 100644 --- a/packaging/inference-engine-mlapi.spec +++ b/packaging/inference-engine-mlapi.spec @@ -1,6 +1,6 @@ Name: inference-engine-mlapi Summary: ML Single API backend of NNStreamer for MediaVision -Version: 0.0.6 +Version: 0.0.7 Release: 0 Group: Multimedia/Libraries License: Apache-2.0 diff --git a/src/inference_engine_mlapi.cpp b/src/inference_engine_mlapi.cpp index 0e92655..766abc7 100644 --- a/src/inference_engine_mlapi.cpp +++ b/src/inference_engine_mlapi.cpp @@ -305,7 +305,7 @@ namespace MLAPIImpl if (!mOutputProperty.layers.empty()){ size_t layerSize = mOutputProperty.layers.size(); - custom += ",OutputLayer:"; + custom += ",OutputTensor:"; for (auto& layer : mOutputProperty.layers) { LOGI("output layer name = %s", layer.first.c_str());