Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ForwardThroughTFOperation (0.38 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.cc

          ResourceConstructingOps>::TensorflowDataflowAnalysis;
      void visitOperation(Operation *op, ArrayRef<const StateT *> operands,
                          ArrayRef<StateT *> results) override {
        if (ForwardThroughTFOperation(op, operands, results)) return;
        setAllToEntryStates(results);
      }
      ~ResourceDataflowAnalysis() override = default;
    };
    
    class IsCompositeDataflowAnalysis
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/tf_dataflow.h

          StateT>::SparseForwardDataFlowAnalysis;
      using dataflow::SparseForwardDataFlowAnalysis<StateT>::getLatticeElement;
      ~TensorflowDataflowAnalysis() override = default;
    
      bool ForwardThroughTFOperation(Operation *op,
                                     ArrayRef<const StateT *> operands,
                                     ArrayRef<StateT *> results) {
        if (auto cast = dyn_cast<TF::CastOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top