Searched defs:ShapeAndType (Results 1 – 2 of 2) sorted by relevance
133 struct ShapeAndType { struct134 ShapeAndType() {} in ShapeAndType() function135 ShapeAndType(ShapeHandle s, DataType t) : shape(s), dtype(t) {} in ShapeAndType() argument136 ShapeAndType(ShapeHandle s, DataType t, SpecializedType specialized_t) in ShapeAndType() argument139 ShapeHandle shape;140 DataType dtype = DT_INVALID;143 SpecializedType specialized_type = ST_INVALID;
35 typedef std::pair<string, DataType> ShapeAndType; typedef