/* Copyright 2015 The TensorFlow Authors. 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 "tensorflow/python/framework/python_op_gen.h" #include #include #include #include "tensorflow/core/framework/op.h" #include "tensorflow/core/framework/op_def.pb.h" #include "tensorflow/core/lib/core/errors.h" #include "tensorflow/core/lib/io/inputbuffer.h" #include "tensorflow/core/lib/strings/scanner.h" #include "tensorflow/core/platform/env.h" #include "tensorflow/core/platform/init_main.h" #include "tensorflow/core/platform/logging.h" namespace tensorflow { namespace { Status ReadHiddenOpsFromFile(const string& filename, std::vector* hidden_ops) { std::unique_ptr file; TF_CHECK_OK(Env::Default()->NewRandomAccessFile(filename, &file)); std::unique_ptr input_buffer( new io::InputBuffer(file.get(), 256 << 10)); string line_contents; Status s = input_buffer->ReadLine(&line_contents); while (s.ok()) { // The parser assumes that the op name is the first string on each // line with no preceding whitespace, and ignores lines that do // not start with an op name as a comment. strings::Scanner scanner{StringPiece(line_contents)}; StringPiece op_name; if (scanner.One(strings::Scanner::LETTER_DIGIT_DOT) .Any(strings::Scanner::LETTER_DIGIT_DASH_DOT_SLASH_UNDERSCORE) .GetResult(nullptr, &op_name)) { hidden_ops->emplace_back(op_name.ToString()); } s = input_buffer->ReadLine(&line_contents); } if (!errors::IsOutOfRange(s)) return s; return Status::OK(); } // The argument parsing is deliberately simplistic to support our only // known use cases: // // 1. Read all op names from a file. // 2. Read all op names from the arg as a comma-delimited list. // // Expected command-line argument syntax: // ARG ::= '@' FILENAME // | OP_NAME [',' OP_NAME]* Status ParseHiddenOpsCommandLine(const char* arg, std::vector* hidden_ops) { std::vector op_names = str_util::Split(arg, ','); if (op_names.size() == 1 && op_names[0].substr(0, 1) == "@") { const string filename = op_names[0].substr(1); return tensorflow::ReadHiddenOpsFromFile(filename, hidden_ops); } else { *hidden_ops = std::move(op_names); } return Status::OK(); } void PrintAllPythonOps(const std::vector& hidden_ops, bool require_shapes) { OpList ops; OpRegistry::Global()->Export(false, &ops); PrintPythonOps(ops, hidden_ops, require_shapes); } } // namespace } // namespace tensorflow int main(int argc, char* argv[]) { tensorflow::port::InitMain(argv[0], &argc, &argv); // Usage: // gen_main [ @FILENAME | OpName[,OpName]* ] (0 | 1) if (argc == 2) { tensorflow::PrintAllPythonOps({}, tensorflow::string(argv[1]) == "1"); } else if (argc == 3) { std::vector hidden_ops; TF_CHECK_OK(tensorflow::ParseHiddenOpsCommandLine(argv[1], &hidden_ops)); tensorflow::PrintAllPythonOps(hidden_ops, tensorflow::string(argv[2]) == "1"); } else { return -1; } return 0; }