Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for kInvalidExecutorGraphMsg (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/verify_suitable_for_graph_export.cc

    namespace tensorflow {
    namespace {
    
    constexpr char kInvalidExecutorGraphMsg[] =
        "functions must be of a single Graph with single op Islands: ";
    
    }  // namespace
    
    mlir::LogicalResult VerifyExportSuitable(mlir::ModuleOp module) {
      mlir::WalkResult result = module.walk([&](mlir::func::FuncOp function) {
        if (!llvm::hasSingleElement(function)) {
          function.emitError(kInvalidExecutorGraphMsg)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top