Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateEmbeddingSequencingPass (0.39 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h

    namespace TFDevice {
    
    // For architectures that support accelerated embedding lookups, this pass will
    // rewrite the graph to use pipelining for better device utilization.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingSequencingPass();
    
    // This is a strictly sequential and formally correct fallback option for the
    // embedding pipelining pass intended for debugging during pipelining
    // development.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.td

      }];
    }
    
    def EmbeddingSequencingPass : Pass<"tf-embedding-sequencing", "mlir::ModuleOp"> {
      let summary = "Rewrite graph for sequential execution of embeddings";
      let constructor = "TFDevice::CreateEmbeddingSequencingPass()";
        let description = [{
        This is a strictly sequential and formally correct fallback option for the
        embedding pipelining pass intended for debugging during pipelining
        development.
      }];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // preserved and the sequencing rewrite will trigger.
      pm.addPass(mlir::TFDevice::CreateEmbeddingPipeliningPass());
      pm.addPass(mlir::TFDevice::CreateEmbeddingSequencingPass());
      pm.addPass(tensorflow::tf2xla::internal::CreateTPUClusterFormationPass(
          strict_clusters));
      // CreateEmbeddingPipeliningPass may have created more functions, but
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      metadata_op->erase();
      compilation_op->erase();
    
      LOG(INFO) << "EmbeddingSequencingPass::runOnOperation done.";
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<mlir::ModuleOp>> CreateEmbeddingSequencingPass() {
      return std::make_unique<EmbeddingSequencingPass>();
    }
    
    }  // namespace TFDevice
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top