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

Subclassing Basic #194

Open
ellisonbg opened this issue Sep 28, 2017 · 4 comments
Open

Subclassing Basic #194

ellisonbg opened this issue Sep 28, 2017 · 4 comments

Comments

@ellisonbg
Copy link

@certik hi, hope you are well! Looks like symengine is going well. I am looking at symengine for the sympy.physics.quantum stuff. Some questions:

  • In sympy.physics.quantum we subclass Basic here (https://github.com/sympy/sympy/blob/master/sympy/physics/quantum/qexpr.py). Is it possible to do that type of thing on top of the python bindings to symengine? Is there an examples like that?
  • Is it even worth rebuilding the quantum stuff on top of symengine at a deep level?
  • How would you go about beginning to use symengine for that type of thing where we have lots of custom subclasses of Basic.
  • How are assumptions handled in symengine?
@ellisonbg
Copy link
Author

I see this PR that begins to use symengine in physics.quantum, but it isn't obvious how much benefit there will be...

https://github.com/sympy/sympy/pull/13189/files

@certik
Copy link
Contributor

certik commented Sep 28, 2017

Hi @ellisonbg, I am doing great, I hope you are well too. Thanks for the interest. To answer your questions:

In general, I would add, that even though you were initially reserved about using C++ for symengine, it worked really well. The main library (https://github.com/symengine/symengine) is just C++, no Python, and it's pretty clean, and as you can see, lots of people have contributed to it, and students in general have no problems getting up to speed. The modern subset of C++ that we use allows us to be pretty much safe in Debug mode, just like in Python, for all practical purposes. In Release mode there doesn't seem to be any sacrifices in speed that we had to make. It is also completely multiplatform, it works with all major compilers. The main thing however is the speed (in Release mode). I want to implement more systematic benchmarks (symengine/symengine#1318), but from what we ran by hand, it looks like we are one of the fastest, if not the fastest.

So if you need speed, symengine is the way to go. For quantum, do you have some test cases which you want to make faster? One can implement that in C++, then one can concentrate on the speed, data structures, algorithms, and nail it. It's work, but if speed is what you want, I think that's the best way to go. If you only need fast symbolics, then use symengine from Python, and build the rest on top in Python. That's much easier, and delivers most of the time.

@ellisonbg
Copy link
Author

ellisonbg commented Sep 28, 2017 via email

@certik
Copy link
Contributor

certik commented Sep 28, 2017

@ellisonbg I see. Your main motivation is to ensure that the SymEngine design allows the incorporation of the quantum stuff, if that was ever needed in the future, so that we don't run into a dead end.

It seems most of the stuff is with relation to the Python wrappers. Few of it requires interaction on the C++ level. The C++ level allows to accept any "unknown" function implemented for example in Python, here is a test which takes SymPy's spherical harmonics (not yet implemented in C++) and passes it to the C++ symbolic expression:

@unittest.skipUnless(have_sympy, "SymPy not installed")

On the C++ level, that is tested here:

https://github.com/symengine/symengine/blob/fdf132fcb4425589b69b40d60a90234944870b28/symengine/tests/basic/test_functions.cpp#L3702

where you can see that we defined MySin, implemented in that test file, and pass it to a SymEngine C++ expression.

And we use something similar with Lambdify I believe.

So we should go over the list from your last comment, and write tests for each of these things, to ensure that our API and our design supports these idioms (both in C++ and in the Python wrappers), if they were ever needed in the future.

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

2 participants