Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsOpLegalizedWithMlir (0.2 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

    }
    
    }  // namespace
    
    bool HasTf2XlaFallback(const TypeID& type_id) {
      return IsOpTypeAllowedTf2XlaFallback(type_id) ||
             IsOpTypeAllowedTf2XlaPreferred(type_id);
    }
    
    bool IsOpLegalizedWithMlir(Operation& op) {
      auto abstractOp = op.getRegisteredInfo();
      if (!abstractOp) return false;
      return IsTypeLegalizedWithMlir(abstractOp->getTypeID());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top