Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ReduceWhileOperands (0.32 sec)

  1. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

    //    (except for constant) are explicitly passed in.
    // 2. no side effect: Every operation inside whileOp can be safely
    //    remove when it is useEmpty().
    // 3. no call func inside while.
    bool ReduceWhileOperands(TFL::WhileOp while_op) {
      std::vector<uint64_t> explicitly_consumed_ids;
      Block &cond = while_op.getCond().front();
      Block &body = while_op.getBody().front();
    
      auto n = while_op.getNumOperands();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top