-
Notifications
You must be signed in to change notification settings - Fork 2
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
Samples and Counts output debugging #7
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.
Minor comments, but LGTM!
@@ -2,4 +2,4 @@ pennylane>=0.32 | |||
pennylane-catalyst>=0.6 | |||
pyqrack>=0.13.0 | |||
numpy~=1.16 | |||
scikit-build | |||
scikit-build>=0.1.0 |
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.
Do we need to specify these requirements in both the setup and requirements? I believe there's a way to define them in one spot and then use them in both.
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.
There is, but many projects do it either way. For now, I prefer this to piping in the requirements.txt.
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.
I looked into it a bit, for due diligence: setup.py
needs installation dependencies; requirements.txt
needs development build dependencies. Except in the case these two dependency lists are identical, perhaps they should be kept distinct.
This PR fixes the conversion from Qrack integer bit string sample histograms to the expected output formats of PennyLane Catalyst
Samples()
andCounts()
.