ONE - On-device Neural Engine
Loading...
Searching...
No Matches
Driver.cpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "Dump.h"
18
19#include <arser/arser.h>
20#include <foder/FileLoader.h>
21
22#include <functional>
23#include <iostream>
24#include <map>
25#include <memory>
26#include <string>
27#include <vector>
28
29int entry(int argc, char **argv)
30{
32 "circle-tensordump allows users to retrieve tensor information from a Circle model file"};
33
34 arser.add_argument("circle").help("Circle file path to dump");
35 arser.add_argument("--tensors").nargs(0).help("Dump to console");
36 arser.add_argument("--tensors_to_hdf5")
37 .help("Dump to hdf5 file. Specify hdf5 file path to be dumped");
38
39 try
40 {
41 arser.parse(argc, argv);
42 }
43 catch (const std::runtime_error &err)
44 {
45 std::cout << err.what() << std::endl;
46 std::cout << arser;
47 return 255;
48 }
49
50 if (arser["--tensors_to_hdf5"] == arser["--tensors"])
51 {
52 std::cout << "[Error] You must specify one option for how to print." << std::endl;
53 std::cout << arser;
54 return 255;
55 }
56
57 std::unique_ptr<circletensordump::DumpInterface> dump;
58
59 std::string model_file = arser.get<std::string>("circle");
60 std::string output_path;
61 if (arser["--tensors_to_hdf5"])
62 {
63 dump = std::move(std::make_unique<circletensordump::DumpTensorsToHdf5>());
64 output_path = arser.get<std::string>("--tensors_to_hdf5");
65 }
66 if (arser["--tensors"])
67 {
68 dump = std::move(std::make_unique<circletensordump::DumpTensors>());
69 }
70
71 // Load Circle model from a circle file
72 foder::FileLoader fileLoader{model_file};
73 std::vector<char> modelData = fileLoader.load();
74 const circle::Model *circleModel = circle::GetModel(modelData.data());
75 if (circleModel == nullptr)
76 {
77 std::cerr << "ERROR: Failed to load circle '" << model_file << "'" << std::endl;
78 return EXIT_FAILURE;
79 }
80
81 dump->run(std::cout, circleModel, output_path);
82
83 return EXIT_SUCCESS;
84}
DataBuffer load(void) const
Definition FileLoader.h:39
int entry(int argc, char **argv)
Definition Driver.cpp:29
void dump(const coco::Op *op, int indent)
Definition Dump.cpp:177
Definition arser.h:39