Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PropagateInputToOutput (0.28 sec)

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

            for (auto operand : op->getOperands()) {
              PropagateInputToOutput(operand, result);
            }
          }
        } else if (llvm::isa<IdentityNOp, IdentityOp, CastOp>(op)) {
          for (auto result : filter_resources(op->getResults()))
            PropagateInputToOutput(op->getOperand(result.getResultNumber()),
                                   result);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

      const llvm::SmallSetVector<Value, 8>& GetUniqueIdResources(int64_t id) const;
    
      // Propagates the resource IDs from an input operand to a result. Returns
      // true of the mapping has changed.
      bool PropagateInputToOutput(const Value& operand, const OpResult& result);
    
      // Analyzes while loops to compute resource IDs for the loop results.
      // `body_info` is the backtrack analysis info for the loop body.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top