summaryrefslogtreecommitdiff
path: root/compiler/circle-inspect/driver/Driver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/circle-inspect/driver/Driver.cpp')
-rw-r--r--compiler/circle-inspect/driver/Driver.cpp96
1 files changed, 96 insertions, 0 deletions
diff --git a/compiler/circle-inspect/driver/Driver.cpp b/compiler/circle-inspect/driver/Driver.cpp
new file mode 100644
index 000000000..d23cd0f8b
--- /dev/null
+++ b/compiler/circle-inspect/driver/Driver.cpp
@@ -0,0 +1,96 @@
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "Model.h"
+#include "Dump.h"
+
+#include <stdex/Memory.h>
+
+#include <functional>
+#include <iostream>
+#include <map>
+#include <vector>
+#include <string>
+
+using OptionHook = std::function<std::unique_ptr<circleinspect::DumpInterface>(void)>;
+
+int entry(int argc, char **argv)
+{
+ if (argc < 3)
+ {
+ std::cerr << "ERROR: Failed to parse arguments" << std::endl;
+ std::cerr << std::endl;
+ std::cerr << "USAGE: " << argv[0] << " [options] [circle]" << std::endl;
+ std::cerr << " --operators : dump operators in circle file" << std::endl;
+ std::cerr << " --conv2d_weight : dump Conv2D series weight operators in circle file"
+ << std::endl;
+ return 255;
+ }
+
+ // Simple argument parser (based on map)
+ std::map<std::string, OptionHook> argparse;
+
+ argparse["--operators"] = [&](void) {
+ // dump all operators
+ return std::move(stdex::make_unique<circleinspect::DumpOperators>());
+ };
+
+ argparse["--conv2d_weight"] = [&](void) {
+ // dump Conv2D, DepthwiseConv2D weight operators
+ return std::move(stdex::make_unique<circleinspect::DumpConv2DWeight>());
+ };
+
+ std::vector<std::unique_ptr<circleinspect::DumpInterface>> dumps;
+
+ for (int n = 1; n < argc - 1; ++n)
+ {
+ const std::string tag{argv[n]};
+
+ auto it = argparse.find(tag);
+ if (it == argparse.end())
+ {
+ std::cerr << "Option '" << tag << "' is not supported" << std::endl;
+ return 255;
+ }
+ auto dump = it->second();
+ assert(dump != nullptr);
+ dumps.push_back(std::move(dump));
+ }
+
+ std::string model_file = argv[argc - 1];
+
+ // Load Circle model from a circle file
+ auto model = circleinspect::load_circle(model_file);
+ if (model == nullptr)
+ {
+ std::cerr << "ERROR: Failed to load circle '" << model_file << "'" << std::endl;
+ return 255;
+ }
+
+ const circle::Model *circlemodel = model->model();
+ if (circlemodel == nullptr)
+ {
+ std::cerr << "ERROR: Failed to load circle '" << model_file << "'" << std::endl;
+ return 255;
+ }
+
+ for (auto &dump : dumps)
+ {
+ dump->run(std::cout, circlemodel);
+ }
+
+ return 0;
+}