Searched defs:GetTypeArray (Results 1 – 1 of 1) sorted by relevance
986 struct GetTypeArray { struct987 static ArrayAttr getInputTypes(OpT op) { return op.TinAttr(); } in getInputTypes()988 static ArrayAttr getOutputTypes(OpT op) { return op.ToutAttr(); } in getOutputTypes()991 struct GetTypeArray<OpT, true> { struct992 static ArrayAttr getInputTypes(OpT op) { return op.TAttr(); } in getInputTypes()993 static ArrayAttr getOutputTypes(OpT op) { return op.TAttr(); } in getOutputTypes()1002 using GetTypeArray = typename detail::GetTypeArray<OpT>; in VerifyTypeArrayAttributes() typedef