#include <DecodeCommand.hpp>
|
int | run (int argc, const char *const *argv) const override |
|
Public Member Functions inherited from cli::Command |
virtual | ~Command ()=default |
|
Definition at line 25 of file DecodeCommand.hpp.
◆ run()
int DecodeCommand::run |
( |
int |
argc, |
|
|
const char *const * |
argv |
|
) |
| const |
|
overridevirtual |
Implements cli::Command.
Definition at line 29 of file DecodeCommand.cpp.
30{
31 tensorflow::GraphDef graph_def;
32
33 CmdArguments cmdargs(argc, argv);
34
36
37 google::protobuf::io::IstreamInputStream is{ioconfig->in()};
38 google::protobuf::io::CodedInputStream coded_is{&is};
39
40 if (!graph_def.ParseFromCodedStream(&coded_is))
41 {
42 std::cerr << "ERROR: Failed to parse tensorflow model" << std::endl;
43 return 255;
44 }
45
46 google::protobuf::io::OstreamOutputStream os{ioconfig->out()};
47 google::protobuf::TextFormat::Print(graph_def, &os);
48
49 return 0;
50}
std::unique_ptr< IOConfiguration > make_ioconfig(const CmdArguments &cmdargs)
References tfkit::make_ioconfig().
The documentation for this struct was generated from the following files: