Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

segfault when creating empty DenseMatrix #315

Open
rikardn opened this issue Apr 2, 2020 · 6 comments
Open

segfault when creating empty DenseMatrix #315

rikardn opened this issue Apr 2, 2020 · 6 comments

Comments

@rikardn
Copy link
Contributor

rikardn commented Apr 2, 2020

The following python code segfaults in ipython using the latest version of symengine from PyPI.

import symengine

symengine.DenseMatrix(4, 4)

Please let me know if I should have filed this issue to the python bindings instead.

@isuruf isuruf transferred this issue from symengine/symengine Apr 2, 2020
@isuruf
Copy link
Member

isuruf commented Apr 2, 2020

I think that the constructor with just the rows and cols should be made private. I assume that you want a zero matrix right? There's a zeros method for that.

@certik
Copy link
Contributor

certik commented Apr 2, 2020

I think it's useful to be able to create an empty matrix also, like NumPy's empty. But either way it should not segfault, thanks @rikardn for reporting it.

@isuruf
Copy link
Member

isuruf commented Apr 2, 2020

You can create an empty matrix, but you can't print it.

@isuruf
Copy link
Member

isuruf commented Apr 2, 2020

Adding a check to all function calls to check if it's empty can be done in the python wrapper. Doing it in C++ to each function might be too costly.

@certik
Copy link
Contributor

certik commented Apr 2, 2020

Yes, we should not be doing it in C++.

@rikardn
Copy link
Contributor Author

rikardn commented Jul 21, 2021

The constructor for the empty DenseMatrix is as follows:

DenseMatrix::DenseMatrix(unsigned row, unsigned col) : row_(row), col_(col)
{
    m_ = std::vector<RCP<const Basic>>(row * col);
}

It creates the vector and the RCPs, but they don't point to anything. We can assign to them in python with:

import symengine

A = symengine.DenseMatrix(2, 2)
A[0, 1] = 2

but we cannot print the entire matrix until all elements have been assigned. I assume RCP will default to nullptr so I guess checking for nullptrs before printing in the python wrapper is the solution here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants