Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LaunchOutliningPass (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_outlining.cc

      void runOnOperation() override;
    };
    
    #define GEN_PASS_DEF_LAUNCHOUTLININGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    struct LaunchOutliningPass
        : public impl::LaunchOutliningPassBase<LaunchOutliningPass> {
      void runOnOperation() override;
    };
    
    void ReplaceClusterReturnWithReturn(tf_device::ReturnOp cluster_return_op,
                                        OpBuilder* builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        dialect to the SCF dialect.
      }];
    
      let dependentDialects = ["scf::SCFDialect", "tensor::TensorDialect"];
    
      let constructor = "TF::createConvertTfControlFlowToScfPass()";
    }
    
    def LaunchOutliningPass : Pass<"tf-device-launch-outlining", "ModuleOp"> {
      let summary = "Outlines regions of tf_device.launch operations";
    
      let description = [{
        This pass outlines the body of a `tf_device.launch` into a function and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top