Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for DumpMlirOpToFile (0.39 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    // TF_DUMP_GRAPH_PREFIX environment variable if `dirname` is empty and
    // suffixing `name` with ".mlir".
    // If `pass_manager` is provided, prints a header with the pass pipeline.
    std::string DumpMlirOpToFile(llvm::StringRef name, mlir::Operation* op,
                                 llvm::StringRef dirname = "",
                                 const mlir::PassManager* pass_manager = nullptr);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        llvm::StringRef name = pass_registration.pass->name();
    
        if (DEBUG_DATA_DUMPER()->ShouldDump(function_name, kDebugGroupMain) ||
            VLOG_IS_ON(1)) {
          ::tensorflow::DumpMlirOpToFile(
              DEBUG_DATA_DUMPER()->GetDumpFilename(
                  function_name, kDebugGroupMain,
                  llvm::formatv("mlir_{0}_before", name)),
              *module_ref, llvm::StringRef(), nullptr);
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

            "\"builtin.module("
         << passOS.str() << ")\", ";
      os << "disable_threading: true, ";
      os << "verify_each: true } } #-}";
      os << "\n\n";
    }
    
    std::string DumpMlirOpToFile(llvm::StringRef name, mlir::Operation* op,
                                 llvm::StringRef dirname,
                                 const mlir::PassManager* pass_manager) {
      std::unique_ptr<raw_ostream> os;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                              : mlir::func::FuncOp::Visibility::Private;
        function.setVisibility(visibility);
      }
      VLOG(2) << "Imported: "
              << tensorflow::DumpMlirOpToFile("tf_mlir_imported_base",
                                              module.get());
      return module;
    }
    
    absl::StatusOr<mlir::FunctionType> GraphDefImporter::InferMainFunctionType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top