Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsCompatibleTypeWithTFLCastOp (0.21 sec)

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

          auto value = std::get<0>(it);
          auto type = std::get<1>(it);
          if (value.getType() == type) {
            args.push_back(value);
          } else {
            if (IsCompatibleTypeWithTFLCastOp(value.getType()) &&
                IsCompatibleTypeWithTFLCastOp(type)) {
              auto cast = b.create<CastOp>(yield_op->getLoc(), type, value);
              args.push_back(cast);
            } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top