Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EmbeddingPipeliningPass (0.31 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      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
      // no effect. If the pipelining pass doesn't run, embedding attributes are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        if (mlir::isa<TF::ResourceType>(tensor_type.getElementType())) {
          return true;
        }
      }
      return false;
    }
    
    struct EmbeddingPipeliningPass
        : public ::impl::EmbeddingPipeliningPassBase<EmbeddingPipeliningPass> {
      void getDependentDialects(mlir::DialectRegistry& registry) const override {
        registry.insert<TF::TensorFlowDialect>();
      }
    
      void runOnOperation() override;
    };
    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