Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CanBeRefined (0.16 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

            continue;
          }
          if (mlir::TF::CanBeRefined(use.get().getType())) return true;
        }
      }
      return false;
    }
    
    bool HasDynamicExternalValues(Operation* op) {
      return op
          ->walk([](Operation* walked_op) {
            for (Value v : walked_op->getOperands()) {
              if (mlir::TF::CanBeRefined(v.getType())) {
                return WalkResult::interrupt();
              }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top