Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Python API is not working properly for complex arrays (see issue #31).
There is also an issue in
benchmark/reference.cpp
when floating point are passed tostd::conj
.std::conj
tries to convert floating point to complex number, raising an error at lines 60 and 67. Fixed by creating a newconj
function that return the same object if not a complex number (otherwise, it callsstd::conj
).For the handles
cTensorTranspose
andzTensorTranspose
removed the__Complex
keyword (variables are re-casted to eitherFloatComplex
andDoubleComplex
anyway).