Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pipelining (0.19 sec)

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

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-embedding-pipelining | FILECHECK_OPTS="" FileCheck %s
    
    // This test verifies the handling of TPU replicated inputs and outputs as well as the extraction of the four main functions.
    module {
      func.func @main() {
        %cst_main = "tf.Const"() {value = dense<1> : 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/tf2xla/internal/clustering_bridge_passes.cc

      // 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
      // no effect. If the pipelining pass doesn't run, embedding attributes are
      // preserved and the sequencing rewrite will trigger.
      pm.addPass(mlir::TFDevice::CreateEmbeddingPipeliningPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

    // separate functions for proper sequencing of TF2 TPU Embedding (see
    // tpu_embedding_v3.py). This pass is a precursor for pipelining (see
    // embedding_pipelining.cc) and DOES NOT permit parallel execution across SC and
    // TC. This pass is a temporary fallback to use while developing full pipelining
    // capabilities.
    //
    // Ops are broken up into:
    //   1. SC forward pass
    //   2. TC forward/backward pass
    //   3. SC backward pass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.h

      // guarantee that tests are run on XLA and not on TF's CPU implementation.
      bool tf_xla_disable_constant_folding;
    
      // 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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/flags.cc

                "compilation."),
           Flag("tf_xla_disable_full_embedding_pipelining",
                &build_ops_flags->tf_xla_disable_full_embedding_pipelining,
                "If true then disables full embedding pipelining and instead use "
                "strict SparseCore / TensorCore sequencing."),
           Flag("tf_xla_embedding_parallel_iterations",
                &build_ops_flags->tf_xla_embedding_parallel_iterations,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/mlrt/async_while.mlir

      // CHECK-NEXT:  return %3, %2 : tensor<3x3xf32>, tensor<*xf32>
      return %1#4, %1#3 : tensor<3x3xf32>, tensor<*xf32>
    }
    
    // -----
    // This case test the re-ordering of the while body function to maximize pipelining between iterations.
    
    // CHECK-LABEL: func.func private @"sort_map/while_cond"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top