You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a memory leak in the C++ Implementation of DMatrix.
The C++ destructor of DMatrix should delete every element of the SparseRow vector:
std::vector<SparseRow*> row;
A call to this->Reset() in the DMatrix destructor should suffice to fix the leak.
See data_structure.h line 147.
Best
The text was updated successfully, but these errors were encountered:
Hello,
There is a memory leak in the C++ Implementation of DMatrix.
The C++ destructor of DMatrix should delete every element of the SparseRow vector:
std::vector<SparseRow*> row;
A call to this->Reset() in the DMatrix destructor should suffice to fix the leak.
See data_structure.h line 147.
Best
The text was updated successfully, but these errors were encountered: