Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MergeControlFlowPass (0.3 sec)

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

    #define GEN_PASS_DEF_MERGECONTROLFLOWPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    struct MergeControlFlowPass
        : public impl::MergeControlFlowPassBase<MergeControlFlowPass> {
      void runOnOperation() override;
    };
    
    // Gets the IfRegion op and all of ops in the then and else branches.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        to 12 feature dimension, which has better performance on TPU.
      }];
    
      let constructor = "TFTPU::CreateTPUSpaceToDepthPass()";
    }
    
    def MergeControlFlowPass : Pass<"tf-merge-control-flow", "ModuleOp"> {
      let summary = "Merges IfRegion ops together with a common predicate.";
    
      let description = [{
    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