Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for clustering_passes (0.23 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

    Mason Chang <******@****.***> 1714440931 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

            "//tensorflow/compiler/mlir/tf2xla/internal:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "clustering_passes",
        hdrs = [
            "clustering_passes.h",
        ],
        textual_hdrs = [
            "clustering_passes.h.inc",
        ],
        deps = [
            ":extract_head_tail_outside_compilation",
            ":extract_outside_compilation",
            ":hoist_broadcast_read",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h"
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    using mlir::OpPassManager;
    using mlir::func::FuncOp;
    
    // Adds replicated Bridge clustering pipeline passes to the given pass_manager.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

    using mlir::tf_device::LaunchOp;
    using mlir::tf_device::ParallelExecuteOp;
    using mlir::tf_device::ReplicateOp;
    
    #define GEN_PASS_DEF_XLABROADCASTPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h.inc"
    
    const char kICIWeightDistributionMlirBridgeMarker[] =
        "ici_weight_distribution_mlir_bridge_marker";
    
    struct XlaBroadcast : public impl::XlaBroadcastPassBase<XlaBroadcast> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

        std::get<0>(result).replaceAllUsesWith(std::get<1>(result));
    
      cluster.erase();
    }
    
    #define GEN_PASS_DEF_EXTRACTHEADTAILOUTSIDECOMPILATIONPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h.inc"
    
    struct ExtractHeadTailOutsideCompilationPass
        : public impl::ExtractHeadTailOutsideCompilationPassBase<
              ExtractHeadTailOutsideCompilationPass> {
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

            "Tracks if auto outside compilation is enabled");
    
    #define GEN_PASS_DEF_MARKOPSFOROUTSIDECOMPILATIONPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h.inc"
    
    struct MarkOpsForOutsideCompilation
        : public impl::MarkOpsForOutsideCompilationPassBase<
              MarkOpsForOutsideCompilation> {
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

    constexpr char kAliasingAttr[] = "tf.aliasing_output";
    constexpr char kNumCoresPerReplicaAttr[] = "num_cores_per_replica";
    
    #define GEN_PASS_DEF_TPUSHARDINGIDENTIFICATIONPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h.inc"
    
    struct TPUShardingIdentificationPass
        : public impl::TPUShardingIdentificationPassBase<
              TPUShardingIdentificationPass> {
      void runOnOperation() final;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    using ClusterMap = llvm::SmallDenseMap<llvm::StringRef, OpSetVector, 8>;
    
    #define GEN_PASS_DEF_TPUCLUSTERFORMATIONPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h.inc"
    
    class TPUClusterFormationPass
        : public impl::TPUClusterFormationPassBase<TPUClusterFormationPass> {
     public:
      explicit TPUClusterFormationPass(bool strict_clusters)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
Back to top