Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/framework/
Dtensor_shape.h42 class TensorShapeRep {
44 ~TensorShapeRep();
47 TensorShapeRep(const TensorShapeRep& b);
48 void operator=(const TensorShapeRep& b);
54 TensorShapeRep(TensorShapeRep&& b);
55 void operator=(TensorShapeRep&& b);
79 TensorShapeRep() = default;
148 void SlowCopyFrom(const TensorShapeRep& b);
166 class TensorShapeBase : public TensorShapeRep {
490 inline TensorShapeRep::TensorShapeRep(const TensorShapeRep& b) { in TensorShapeRep() function
[all …]
Dtensor_shape.cc30 static_assert(sizeof(TensorShapeRep) == sizeof(TensorShape),
32 static_assert(sizeof(TensorShapeRep) == sizeof(PartialTensorShape),
242 void TensorShapeRep::DestructorOutOfLine() { in DestructorOutOfLine()
247 void TensorShapeRep::SlowCopyFrom(const TensorShapeRep& b) { in SlowCopyFrom()
289 void TensorShapeRep::Clear() { in Clear()
294 void TensorShapeRep::ClearAllButDataType() { in ClearAllButDataType()
477 void TensorShapeRep::DumpRep() const { in DumpRep()
510 string TensorShapeRep::DebugString() const { in DebugString()
527 string TensorShapeRep::DebugString(const TensorShapeProto& proto) { in DebugString()
683 const TensorShapeRep* rep = this; in AsTensorShape()