diff --git a/paddle/math/RowBuffer.h b/paddle/math/RowBuffer.h index 0edcefd7562460c1a366d2cc24edd2db6e0433ea..dbb829c4e24a659e4a97c0a3ba4c5c78b68815d3 100644 --- a/paddle/math/RowBuffer.h +++ b/paddle/math/RowBuffer.h @@ -126,6 +126,8 @@ public: inline size_t getWidth() const { return width_; } private: + //! TODO(yuyang18): Add resize method to CpuMemHandlePtr, then we can get rid + //! of std::vector here. CpuMemHandlePtr preallocatedBuf_; std::vector> rowStore_; size_t width_;