Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PrintPassPipeline (0.15 sec)

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

      *os = std::make_unique<WritableFileRawStream>(std::move(file));
      return Status();
    }
    
    // Prints the pass pipeline of `pass_manager` to `os`.
    void PrintPassPipeline(const mlir::PassManager& pass_manager,
                           mlir::Operation* op, llvm::raw_ostream& os) {
      std::string str;
      llvm::raw_string_ostream passOS(str);
      llvm::interleaveComma(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    // in the file also.
    void applyTensorflowAndCLOptions(mlir::PassManager& pm,
                                     llvm::StringRef dir_path = "");
    
    // Prints the pass pipeline of `pass_manager` to `os`.
    void PrintPassPipeline(const mlir::PassManager& pass_manager,
                           mlir::Operation* op, llvm::raw_ostream& os);
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top