Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for embedding_pipelining (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/embedding_pipelining.mlir

        // backward_ops
        %res_b1 = "tf.Identity"(%res_t) {_embedding_pipelining = "backward", _replication_info = "repl_info"} : (tensor<i32>) -> tensor<i32>
        %res_b2 = "tf.Identity"(%res_t) {_embedding_pipelining = "backward", _replication_info = "repl_info"} : (tensor<i32>) -> tensor<i32>
        %res_b3 = "tf.Identity"(%res_t) {_embedding_pipelining = "backward", _replication_info = "repl_info"} : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    #define GEN_PASS_DEF_EMBEDDINGPIPELININGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h.inc"
    
    static constexpr char kEmbeddingPipelining[] = "_embedding_pipelining";
    static constexpr char kEmbeddingPipeliningInlineAttr[] =
        "_embedding_pipelining_inline";
    static constexpr char kEmbeddingForward[] = "forward";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/BUILD

        ],
        deps = [
            ":embedding_pipelining",
            ":embedding_program_key",
            ":embedding_sequencing",
            ":sparsecore_passes_inc_gen",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Pass",
        ],
    )
    
    cc_library(
        name = "embedding_pipelining",
        srcs = ["embedding_pipelining.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/embedding_sequencing.mlir

        // forward_ops
        %res_f = "tf.Const"() {_embedding_pipelining = "forward", _replication_info = "repl_info", value = dense<2> : tensor<i32>} : () -> tensor<i32>
    
        // core_tpu ops:
        %res_t = "tf.Identity"(%res_f) {_replication_info = "repl_info"} : (tensor<i32>) -> tensor<i32>
    
        // backward_ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 01 21:27:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/flags.h

      // Disables full embedding pipelining when true. Instead, strict SparseCore
      // TensorCore sequencing will be used.
      bool tf_xla_disable_full_embedding_pipelining;
    
      // Force the WhileOps in embedding_pipelining and embedding_sequencing to use
      // this many parallel_iterations
      int tf_xla_embedding_parallel_iterations;
    };
    
    // Flags for common MLIR configurations.
    struct MlirCommonFlags {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/flags.cc

           Flag("tf_xla_embedding_parallel_iterations",
                &build_ops_flags->tf_xla_embedding_parallel_iterations,
                "If >0 then use this many parallel iterations in "
                "embedding_pipelining and embedding_sequency. By default, use the "
                "parallel_iterations on the original model WhileOp."),
    
           Flag("tf_xla_compile_on_demand", &device_flags->tf_xla_compile_on_demand,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

    #define GEN_PASS_DEF_EMBEDDINGSEQUENCINGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h.inc"
    
    static constexpr char kEmbeddingPipelining[] = "_embedding_pipelining";
    static constexpr char kEmbeddingForward[] = "forward";
    static constexpr char kEmbeddingBackward[] = "backward";
    static constexpr char kDevice[] = "device";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      pm.addNestedPass<FuncOp>(
          mlir::TFTPU::CreateTPUReorderReplicateAndPartitionedInputsPass());
      pm.addNestedPass<FuncOp>(mlir::TF::CreateDecomposeReduceDatasetPass());
      // Only one of EmbeddingSequencing and EmbeddingPipelining will actually
      // run and the logic is in EmbeddingPipeliningPass. If the pipelining pass
      // runs, embedding attributes are stripped and the sequencing pass will have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top