Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClusterFormationPass (0.18 sec)

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

    namespace mlir {
    namespace TFDevice {
    
    namespace {
    
    #define GEN_PASS_DEF_CLUSTERFORMATIONPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    struct ClusterFormationPass
        : public impl::ClusterFormationPassBase<ClusterFormationPass> {
      void runOnOperation() override;
    };
    
    void ReplaceLiveOutExternalUses(llvm::ArrayRef<Value> live_outs,
                                    tf_device::LaunchOp launch_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Unroll TF BatchMatMul op into Reshape, Slice, MatMul, Pack ops.";
      let constructor = "TF::CreateUnrollBatchMatMulPassPass()";
    }
    
    def ClusterFormationPass : Pass<"tf-device-cluster-formation", "mlir::ModuleOp"> {
      let summary = "Form clusters from instructions assigned to same device";
      let constructor = "TFDevice::CreateClusterFormationPass()";
    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