Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for clustering_passes (0.43 sec)

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

    #define GEN_PASS_DECL_TPUSHARDINGIDENTIFICATIONPASS
    #define GEN_PASS_DECL_VERIFYCLUSTERINGPASS
    #define GEN_PASS_DECL_XLACLUSTERFORMATIONPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h.inc"
    
    }  // namespace internal
    }  // namespace tf2xla
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tf_mlir_opt_main.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/mlprogram_util.h"
    #include "tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h"
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h"
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/mlir_to_graph_passes.h"
    #include "tensorflow/compiler/mlir/tf2xla/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tosa/tf_passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

    using mlir::WalkResult;
    using mlir::func::FuncOp;
    using mlir::TF::ReadVariableOp;
    using mlir::tf_device::ReplicateOp;
    
    #define GEN_PASS_DEF_HOISTBROADCASTREADPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h.inc"
    
    constexpr char kFuncDeviceAttr[] = "tf.device";
    constexpr char kCpuDeviceType[] = "CPU";
    
    struct HoistBroadcastRead
        : public impl::HoistBroadcastReadPassBase<HoistBroadcastRead> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top