Home
last modified time | relevance | path

Searched refs:first_ty (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/compiler/mlir/hlo/include/mlir-hlo/Dialect/mhlo/IR/
Dinfer_fusibility_op_interface.td128 auto first_ty = first.getType().dyn_cast<RankedTensorType>();
130 if (!first_ty || !first_ty.hasStaticShape() ||
132 first_ty.getRank() != second_ty.getRank()) {
135 return first_ty.getShape() == second_ty.getShape();
/external/rust/crates/syn/src/
Ditem.rs2491 let mut first_ty: Type = input.parse()?; in parse_impl() localVariable
2498 let mut first_ty_ref = &first_ty; in parse_impl()
2503 while let Type::Group(ty) = first_ty { in parse_impl()
2504 first_ty = *ty.elem; in parse_impl()
2506 if let Type::Path(TypePath { qself: None, path }) = first_ty { in parse_impl()
2518 first_ty in parse_impl()