Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateEmbeddingPipeliningPass (0.36 sec)

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

    // This is a strictly sequential and formally correct fallback option for the
    // embedding pipelining pass intended for debugging during pipelining
    // development.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingPipeliningPass();
    
    // Passes in the program key to embedding ops, by moving the embedding ops
    // after the _TPUCompileMlir op.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateEmbeddingProgramKeyPass();
    
    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/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
      // TPUClusterCleanup and OutsideCompiledToHostLaunch need every function to be
    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/sparsecore_passes.td

    include "mlir/Pass/PassBase.td"
    
    def EmbeddingPipeliningPass : Pass<"tf-embedding-pipelining", "mlir::ModuleOp"> {
      let summary = "Rewrite graph for embedding pipelining";
      let constructor = "TFDevice::CreateEmbeddingPipeliningPass()";
        let description = [{
        For architectures that support accelerated embedding lookups, this pass will
        rewrite the graph to use pipelining for better device utilization.
      }];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

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