Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ClusterOutliningPass (0.17 sec)

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

    namespace {
    
    constexpr char kFuncAttr[] = "func";
    
    #define GEN_PASS_DEF_CLUSTEROUTLININGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    struct ClusterOutliningPass
        : public impl::ClusterOutliningPassBase<ClusterOutliningPass> {
      void runOnOperation() override;
    };
    
    #define GEN_PASS_DEF_LAUNCHOUTLININGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    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/utils/attribute_utils.h

    // compilation device type.
    inline constexpr llvm::StringRef kCompileDeviceTypeAttr =
        "_xla_compile_device_type";
    // The attribute value speicifes the preferred outlined function name in
    // ClusterOutliningPass.
    inline constexpr llvm::StringRef kClusterOutlinedFunctionNameAttr =
        "_cluster_outlined_function_name";
    // Marks a node for replication. The attribute value indicates the replication
    // metadata op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          }) : () -> (tensor<i32>)
          return %cluster : tensor<i32>
        }
        ```
      }];
    
      let constructor = "TFDevice::CreateClusterConstantSinkingPass()";
    }
    
    def ClusterOutliningPass : Pass<"tf-device-cluster-outlining", "ModuleOp"> {
      let summary = "Outlines regions of tf_device.cluster operations";
    
      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