-
Notifications
You must be signed in to change notification settings - Fork 14
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
Disambiguate tensor specializations in Python bindings #15
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. Just 1 question:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! 🎉
Just a small comment. In python/source/Tensor.hpp
, line 246-247 Tensor64
is still used in a docstring. Should this be updated to TensorC128
or just Tensor
instead?
A = jet.Tensor64(["i", "j"], [2, 3])
B = jet.Tensor64(["i", "j"], [2, 3])
Ah, yes. Thanks for catching that! |
* add ir * move tests * run black * Rename ir/ directories to xir/ * Apply formatter and update import paths * Clarify that top-level makefile is for C++ code * Rename Python bindings package to 'bindings' * Move Python bindings tests to subdirectory * Update import path to Python bindings module * Rename 'requirements_test.txt' to 'requirements.txt' * Add Python wheel dependencies * Add Python distribution directory to .gitignore * Create top-level Jet Python package * Create setup.py to build quantum-jet Python wheels * Move setup.py to python/ directory * Make cleaned directory prefixes consistent * Add 'build' help documentation and clean build/ and dist/ * Change source directory to parent directory * Import all bindings directly into the 'jet' package * Exclude tests from package * Fix wheel build error for lark * Remove deprecated Python bindings build steps * Update changelog * Adjust PR number * Flatten jet.bindings package and apply formatter * Change 'lark' requirement to 'lark-parser' * Disambiguate tensor specializations in Python bindings (#15) * Rename 'Foo64' to 'FooC128' and 'Bar32' to 'BarC64' * Update changelog * Clarify that specializations are for complex types in changelog * Replace 'c_fp32' with 'c_fp64' with 'c64' and 'c128', respectively * Update Python comment explaining default Jet types * Replace 'Tensor64' with 'Tensor' in example docstrings Co-authored-by: Theodor Isacsson <[email protected]>
Context:
Each template specialization of the
Tensor
class requires a unique name for its Python binding. Previously, the convention was to add a32
suffix forcomplex<float>
specializations and a64
suffix forcomplex<double>
specializations; however, this is easy to confuse with the (yet-to-be implemented)float
anddouble
specializations.Description of the Change:
C64
andC128
instead of32
and64
, respectively.Benefits:
Possible Drawbacks:
Related GitHub Issues:
None.