Home
last modified time | relevance | path

Searched defs:GetTypeArray (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/core/ir/
H A Dops.cc986 struct GetTypeArray { struct
987 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> { struct
992 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