Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateFusedKernelMatcherPass (0.46 sec)

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

      patterns.add<FuseConv2DBiasAdd, FuseMatMulBiasAdd>(&getContext());
    
      (void)applyPatternsAndFoldGreedily(func, std::move(patterns));
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateFusedKernelMatcherPass() {
      return std::make_unique<FusedKernelMatcherPass>();
    }
    
    }  // namespace TF
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // generally used beyond exporting to runtimes that supports these ops. In the
    // future these fusions may be codegen'd automatically.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateFusedKernelMatcherPass();
    
    // Creates function pass to select device index/fold tf.DeviceIndex.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDeviceIndexSelectorPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      ];
    }
    
    def FusedKernelMatcherPass : Pass<"tf-fused-kernel-matcher", "mlir::func::FuncOp"> {
      let summary = "Matches computations corresponding to optimized fused kernels";
      let constructor = "TF::CreateFusedKernelMatcherPass()";
    }
    
    def TFDataOptimizationPass : Pass<"tf-data-optimization", "mlir::func::FuncOp"> {
      let summary = "Performs tf.data optimizations";
      let constructor = "TF::CreateTFDataOptimizationPass()";
    }
    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