Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getInitArgs (0.09 sec)

  1. tensorflow/compiler/mlir/tfr/passes/canonicalize.cc

        Block *single_block = for_op.getBody();
        IRMapping mapping;
        Value iv = for_op.getInductionVar();
        for (auto iter_op :
             llvm::zip(for_op.getRegionIterArgs(), for_op.getInitArgs())) {
          mapping.map(std::get<0>(iter_op), std::get<1>(iter_op));
        }
        mapping.map(iv, for_op.getLowerBound());
        for (auto i = 0; i < trip_count; ++i) {
          if (!iv.use_empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top