/* Copyright 2017 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/compiler/tf2xla/tf2xla_supported_ops.h" #include #include #include #include #include "absl/strings/str_join.h" #include "tensorflow/compiler/tf2xla/xla_op_registry.h" #include "tensorflow/core/framework/kernel_def.pb.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/framework/types.pb.h" #include "tensorflow/core/platform/init_main.h" #include "tensorflow/core/util/command_line_flags.h" namespace tensorflow { namespace tf2xla { namespace { void PrintSupportedOps(const string& device, const string& regen_run) { XlaOpRegistry::RegisterCompilationKernels(); std::vector kdefs = XlaOpRegistry::DeviceKernels(device, /*include_compilation_only_kernels=*/true); std::sort( kdefs.begin(), kdefs.end(), [](const KernelDef* a, const KernelDef* b) { return a->op() < b->op(); }); std::cout << "**Supported operators for device: " << device << "**\n\n" << "Operator | Type Constraint\n" << "-------- | ---------------" << std::endl; for (const KernelDef* kdef : kdefs) { std::vector constraints; for (const KernelDef::AttrConstraint& constraint : kdef->constraint()) { std::vector types; for (int type : constraint.allowed_values().list().type()) { types.push_back(DataTypeString(static_cast(type))); } std::sort(types.begin(), types.end()); constraints.push_back("`" + constraint.name() + "={" + absl::StrJoin(types, ",") + "}`"); } std::cout << "`" << kdef->op() << "` | " << absl::StrJoin(constraints, "
") << std::endl; } std::cout << "\nTo regenerate this table, run:\n\n```shell\n" << regen_run << " --device=" << device << "\n```" << std::endl; } } // namespace void SupportedOpsMain(int argc, char** argv, const char* regen_run) { std::vector device_names = XlaOpRegistry::BackendNames(); std::sort(device_names.begin(), device_names.end()); // Set up and parse flags. string device; std::vector flag_list = { {"device", &device, "Name of the compilation device for which to print supported ops, " "one of: " + absl::StrJoin(device_names, ",")}, }; string usage = Flags::Usage(argv[0], flag_list); bool parsed_flags_ok = Flags::Parse(&argc, argv, flag_list); QCHECK(parsed_flags_ok) << "\n" << usage; QCHECK(XlaOpRegistry::IsBackendRegistered(device)) << "\nUnknown device: " << device << "\n" << usage; // Run the program. port::InitMain(usage.c_str(), &argc, &argv); QCHECK(argc == 1) << "\nERROR: This command does not take any arguments " "other than flags\n\n" << usage; PrintSupportedOps(device, regen_run); } } // namespace tf2xla } // namespace tensorflow