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);
77 TensorShapeRep() = default;
146 void SlowCopyFrom(const TensorShapeRep& b);
164 class TensorShapeBase : public TensorShapeRep {
691 inline TensorShapeRep::TensorShapeRep(const TensorShapeRep& b) { in TensorShapeRep() function
[all …]
Dtensor_shape.cc31 static_assert(sizeof(TensorShapeRep) == sizeof(TensorShape),
33 static_assert(sizeof(TensorShapeRep) == sizeof(PartialTensorShape),
310 void TensorShapeRep::DestructorOutOfLine() { in DestructorOutOfLine()
315 void TensorShapeRep::SlowCopyFrom(const TensorShapeRep& b) { in SlowCopyFrom()
356 void TensorShapeRep::Clear() { in Clear()
361 void TensorShapeRep::ClearAllButDataType() { in ClearAllButDataType()
737 string TensorShapeRep::DebugString() const { in DebugString()
754 string TensorShapeRep::DebugString(const TensorShapeProto& proto) { in DebugString()
940 const TensorShapeRep* rep = this; in AsTensorShape()