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
{{ message }}
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
MXNet would work great as a framework for Physics simulations. Unfortunately, you don't support complex numbers!!! I would happily add support for this, assuming it isn't going to be incredibly hard.
What would be the most straightforward means of adding Complex number support?
The text was updated successfully, but these errors were encountered:
I would say it is not easy to add complex number support. basically you need to define how to do + - * / ... for the new type ComplexNumber, and let NDArray aware of ComplexNumber. And what make it more complicated is for operators defined in mshadow, make sure the functions defined by c++ template can handle it. Also for calculation in operators, some codes cast dtype by DType(input) where DType is a template.
MXNet would work great as a framework for Physics simulations. Unfortunately, you don't support complex numbers!!! I would happily add support for this, assuming it isn't going to be incredibly hard.
What would be the most straightforward means of adding Complex number support?
The text was updated successfully, but these errors were encountered: