This repository was archived by the owner on Jan 12, 2024. It is now read-only.
Verify runtime capabilities of callables defined in referenced libraries#600
Merged
bettinaheim merged 66 commits intomainfrom Oct 22, 2020
Merged
Verify runtime capabilities of callables defined in referenced libraries#600bettinaheim merged 66 commits intomainfrom
bettinaheim merged 66 commits intomainfrom
Conversation
This was referenced Sep 10, 2020
Closed
4 tasks
Contributor
Author
|
Build failing on qsharp-runtime: This is actually working as intended, because operation Reset (target : Qubit) : Unit {
if (M(target) == One)
{
X(target);
}
}which is not supported on IonQ. I suspect IonQ has a custom implementation of reset that does not use a measurement branch. It might need a capability override, or for the IonQExe test to use the IonQ-specific |
Contributor
Author
|
After adding an |
added 18 commits
October 14, 2020 14:20
bettinaheim
reviewed
Oct 20, 2020
bettinaheim
reviewed
Oct 20, 2020
…nto samarsha/capability-inference
bamarsha
commented
Oct 22, 2020
bettinaheim
approved these changes
Oct 22, 2020
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This merges
feature/capability-inferencetomain(via a user branch).TODO:
mainand rebase this branchCapabilityattribute in the standard library (Add RequiresCapability attribute qsharp-runtime#372)Closes #586.