[nnpkg_run] rename namespace NNPackageRun to nnpkg_run (#9369)
author이상규/On-Device Lab(SR)/Principal Engineer/삼성전자 <sg5.lee@samsung.com>
Wed, 4 Dec 2019 06:20:08 +0000 (15:20 +0900)
committer오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Wed, 4 Dec 2019 06:20:08 +0000 (15:20 +0900)
It renames namespace name for nnpackage_run.
It was snake style. However, I would like to use same naming style of `neurun`.

Signed-off-by: Sanggyu Lee <sg5.lee@samsung.com>
tests/tools/nnpackage_run/src/allocation.h
tests/tools/nnpackage_run/src/args.cc
tests/tools/nnpackage_run/src/args.h
tests/tools/nnpackage_run/src/h5formatter.cc
tests/tools/nnpackage_run/src/h5formatter.h
tests/tools/nnpackage_run/src/nnfw_util.cc
tests/tools/nnpackage_run/src/nnfw_util.h
tests/tools/nnpackage_run/src/nnpackage_run.cc

index efd7f12..ea4672f 100644 (file)
@@ -20,7 +20,7 @@
 #include <cstdlib>
 #include <cstdint>
 
-namespace NNPackageRun
+namespace nnpkg_run
 {
 class Allocation
 {
index a01dec5..2233a5e 100644 (file)
@@ -19,7 +19,7 @@
 #include <iostream>
 #include <boost/filesystem.hpp>
 
-namespace NNPackageRun
+namespace nnpkg_run
 {
 
 Args::Args(const int argc, char **argv) noexcept
@@ -136,4 +136,4 @@ void Args::Parse(const int argc, char **argv)
   }
 }
 
-} // end of namespace NNPackageRun
+} // end of namespace nnpkg_run
index 9af514a..7e1d50e 100644 (file)
@@ -22,7 +22,7 @@
 
 namespace po = boost::program_options;
 
-namespace NNPackageRun
+namespace nnpkg_run
 {
 
 class Args
@@ -58,6 +58,6 @@ private:
   bool _write_report;
 };
 
-} // end of namespace NNPackageRun
+} // end of namespace nnpkg_run
 
 #endif // __NNPACKAGE_RUN_ARGS_H__
index c2bfdfc..f8869ca 100644 (file)
@@ -24,7 +24,7 @@
 #include <cstdlib>
 #include <H5Cpp.h>
 
-namespace NNPackageRun
+namespace nnpkg_run
 {
 static const char *h5_value_grpname = "value";
 
@@ -115,4 +115,4 @@ void H5Formatter::dumpOutputs(const std::string &filename, std::vector<Allocatio
   }
 };
 
-} // end of namespace NNPackageRun
+} // end of namespace nnpkg_run
index a59e941..bff4a88 100644 (file)
@@ -24,7 +24,7 @@
 
 struct nnfw_session;
 
-namespace NNPackageRun
+namespace nnpkg_run
 {
 class H5Formatter
 {
index 78cd65f..1fea511 100644 (file)
@@ -18,7 +18,7 @@
 #include <string>
 #include "nnfw.h"
 
-namespace NNPackageRun
+namespace nnpkg_run
 {
 uint64_t num_elems(const nnfw_tensorinfo *ti)
 {
index 8d1260b..6fe547e 100644 (file)
@@ -28,7 +28,7 @@
     }                                \
   } while (0)
 
-namespace NNPackageRun
+namespace nnpkg_run
 {
 uint64_t num_elems(const nnfw_tensorinfo *ti);
 uint64_t bufsize_for(const nnfw_tensorinfo *ti);
index d42f251..3bf2d38 100644 (file)
@@ -31,7 +31,7 @@
 
 #include <boost/filesystem.hpp>
 
-namespace NNPackageRun
+namespace nnpkg_run
 {
 
 template <class T> void randomData(RandomGenerator &randgen, void *data, uint64_t size)
@@ -97,7 +97,7 @@ NNFW_STATUS resolve_op_backend(nnfw_session *session)
 
 int main(const int argc, char **argv)
 {
-  using namespace NNPackageRun;
+  using namespace nnpkg_run;
   Args args(argc, argv);
   auto nnpackage_path = args.getPackageFilename();