[tflite_run] Change variable names (#1179)
author이한종/동작제어Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Fri, 11 May 2018 05:45:04 +0000 (14:45 +0900)
committer오형석/동작제어Lab(SR)/Senior Engineer/삼성전자 <hseok82.oh@samsung.com>
Fri, 11 May 2018 05:45:04 +0000 (14:45 +0900)
Now that the tensor file contains both inputs and outputs output_loader/dumper
is not a proper name for that.

Signed-off-by: Hanjoung Lee <hanjoung.lee@samsung.com>
tools/tflite_run/src/tflite_run.cc

index ae4189f..cb8300c 100644 (file)
@@ -191,8 +191,8 @@ int main(const int argc, char **argv)
   if (!args.getDumpFilename().empty())
   {
     const std::string &dump_filename = args.getDumpFilename();
-    TFLiteRun::TensorDumper output_dumper(*interpreter);
-    output_dumper.dump(dump_filename);
+    TFLiteRun::TensorDumper tensor_dumper(*interpreter);
+    tensor_dumper.dump(dump_filename);
     std::cout << "Output tensors have been dumped to file \"" << dump_filename << "\"."
               << std::endl;
   }
@@ -204,8 +204,8 @@ int main(const int argc, char **argv)
     std::cout << "Comparing the results with \"" << compare_filename << "\"." << std::endl;
     std::cout << "========================================" << std::endl;
 
-    TFLiteRun::TensorLoader output_loader(*interpreter);
-    output_loader.load(compare_filename);
+    TFLiteRun::TensorLoader tensor_loader(*interpreter);
+    tensor_loader.load(compare_filename);
 
     // TODO Code duplication (copied from RandomTestRunner)
 
@@ -229,7 +229,7 @@ int main(const int argc, char **argv)
 
     for (const auto &o : interpreter->outputs())
     {
-      auto expected = output_loader.get(o);
+      auto expected = tensor_loader.get(o);
       auto obtained = nnfw::support::tflite::TensorView<float>::make(*interpreter, o);
 
       res = res && app.compareSingleTensorView(expected, obtained, o);