Fix missing symbol in logging backend (#4793)
authorVladimir Plazun/AI Tools Lab /SRR/Engineer/삼성전자 <v.plazun@samsung.com>
Wed, 20 Mar 2019 01:12:22 +0000 (04:12 +0300)
committer박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Wed, 20 Mar 2019 01:12:22 +0000 (10:12 +0900)
* Fix missing symbol in logging backend

Add missing ANeuralNetworksCompilation_free in logging backend

Signed-off-by: Vladimir Plazun <v.plazun@samsung.com>
* Format fix

Signed-off-by: Vladimir Plazun <v.plazun@samsung.com>
runtimes/logging/src/nnapi_logging.cc

index b2422e0..14f2369 100644 (file)
@@ -391,3 +391,9 @@ void ANeuralNetworksExecution_free(ANeuralNetworksExecution *execution)
 
   delete execution;
 }
+
+void ANeuralNetworksCompilation_free(ANeuralNetworksCompilation *compilation)
+{
+  std::cout << __FUNCTION__ << "(compilation: " << compilation << ")" << std::endl;
+  delete compilation;
+}