From 964d3d1975ef6e3ad7dc2a30cc36cf49662a16a9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Thu, 7 Feb 2019 16:57:12 +0900 Subject: [PATCH] [tfkit] Support encode (#3007) This commit extends tfkit with encode command which allows users to convert a textual graph def into a binary form. Signed-off-by: Jonghyun Park --- contrib/tfkit/src/EncodeCommand.cpp | 51 +++++++++++++++++++++++++++++++++++++ contrib/tfkit/src/EncodeCommand.hpp | 27 ++++++++++++++++++++ contrib/tfkit/src/Main.cpp | 2 ++ 3 files changed, 80 insertions(+) create mode 100644 contrib/tfkit/src/EncodeCommand.cpp create mode 100644 contrib/tfkit/src/EncodeCommand.hpp diff --git a/contrib/tfkit/src/EncodeCommand.cpp b/contrib/tfkit/src/EncodeCommand.cpp new file mode 100644 index 0000000..0ad95e3 --- /dev/null +++ b/contrib/tfkit/src/EncodeCommand.cpp @@ -0,0 +1,51 @@ +/* + * 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 "EncodeCommand.hpp" + +#include + +#include +#include +#include + +#include + +int EncodeCommand::run(int, const char *const *) const +{ + tensorflow::GraphDef graph_def; + + // Load text from standard input + google::protobuf::io::IstreamInputStream is{&std::cin}; + + if (!google::protobuf::TextFormat::Parse(&is, &graph_def)) + { + std::cerr << "ERROR: Failed to parse prototxt" << std::endl; + return 255; + } + + // Write binary into standard output + google::protobuf::io::OstreamOutputStream os{&std::cout}; + google::protobuf::io::CodedOutputStream coded_os{&os}; + + if (!graph_def.SerializeToCodedStream(&coded_os)) + { + std::cerr << "ERROR: Failed to serialize" << std::endl; + return 255; + } + + return 0; +} diff --git a/contrib/tfkit/src/EncodeCommand.hpp b/contrib/tfkit/src/EncodeCommand.hpp new file mode 100644 index 0000000..5676bd6 --- /dev/null +++ b/contrib/tfkit/src/EncodeCommand.hpp @@ -0,0 +1,27 @@ +/* + * 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. + */ + +#ifndef __ENCODE_COMMAND_H__ +#define __ENCODE_COMMAND_H__ + +#include + +struct EncodeCommand final : public cli::Command +{ + int run(int argc, const char *const *argv) const override; +}; + +#endif // __ENCODE_COMMAND_H__ diff --git a/contrib/tfkit/src/Main.cpp b/contrib/tfkit/src/Main.cpp index 0e1566c..3dfd580 100644 --- a/contrib/tfkit/src/Main.cpp +++ b/contrib/tfkit/src/Main.cpp @@ -14,6 +14,7 @@ * limitations under the License. */ +#include "EncodeCommand.hpp" #include "DecodeCommand.hpp" #include @@ -23,6 +24,7 @@ int main(int argc, char **argv) { cli::App app{argv[0]}; + app.insert("encode", stdex::make_unique()); app.insert("decode", stdex::make_unique()); return app.run(argc - 1, argv + 1); -- 2.7.4