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

Disambiguate tensor specializations in Python bindings #15

Merged
merged 6 commits into from
May 27, 2021

Conversation

Mandrenkov
Copy link
Collaborator

Context:
Each template specialization of the Tensor class requires a unique name for its Python binding. Previously, the convention was to add a 32 suffix for complex<float> specializations and a 64 suffix for complex<double> specializations; however, this is easy to confuse with the (yet-to-be implemented) float and double specializations.

Description of the Change:

  • The suffixes of the Python binding classes are now C64 and C128 instead of 32 and 64, respectively.

Benefits:

  • Users are less likely to be confused about the size of the underlying data type of a tensor.

Possible Drawbacks:

  • An extra keystroke or two is needed to specify the name of a tensor class.

Related GitHub Issues:
None.

@github-actions
Copy link

github-actions bot commented May 25, 2021

Test Report (C++) on Ubuntu

    1 files  ±0      1 suites  ±0   0s ⏱️ ±0s
239 tests ±0  239 ✔️ ±0  0 💤 ±0  0 ❌ ±0 
519 runs  ±0  519 ✔️ ±0  0 💤 ±0  0 ❌ ±0 

Results for commit c3148ab. ± Comparison against base commit 477f548.

♻️ This comment has been updated with latest results.

@github-actions
Copy link

github-actions bot commented May 25, 2021

Test Report (C++) on MacOS

    1 files  ±0      1 suites  ±0   0s ⏱️ ±0s
239 tests ±0  239 ✔️ ±0  0 💤 ±0  0 ❌ ±0 
519 runs  ±0  519 ✔️ ±0  0 💤 ±0  0 ❌ ±0 

Results for commit c3148ab. ± Comparison against base commit 477f548.

♻️ This comment has been updated with latest results.

@Mandrenkov Mandrenkov added the code quality 🎓 Improvements to code quality label May 25, 2021
Copy link
Member

@mlxd mlxd left a 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:

@Mandrenkov Mandrenkov requested a review from mlxd May 26, 2021 16:22
Copy link
Contributor

@brownj85 brownj85 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good!

Copy link

@thisac thisac left a 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])

@Mandrenkov
Copy link
Collaborator Author

Just a small comment. In python/src/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!

@Mandrenkov Mandrenkov merged commit 0f7e295 into python-wheel May 27, 2021
@Mandrenkov Mandrenkov deleted the rename-tensor-specializations branch May 27, 2021 18:38
Mandrenkov added a commit that referenced this pull request May 27, 2021
* 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]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
code quality 🎓 Improvements to code quality
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants