Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsMustNotBeXlaOp (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

    }
    
    // Check if the op cannot be XLA compiled. If the op does not satisfy this
    // criteria, then it is possible for the op to be XLA and non-XLA. But this
    // function specifically checks if the op must be non-xla.
    bool IsMustNotBeXlaOp(Operation* op) {
      for (auto& input : op->getOpOperands()) {
        if (TypeMustBeNonXLA(input.get().getType())) return true;
      }
      for (auto output_types : op->getResultTypes()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top