-
Notifications
You must be signed in to change notification settings - Fork 79
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
Add support for more elements in qir for cirq #175
Draft
JettChenT
wants to merge
2
commits into
tencent-quantum-lab:master
Choose a base branch
from
JettChenT:cirq-transp
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -182,6 +182,20 @@ def _circuit_diagram_info_(self) -> List[str]: | |
ci_name = gate_info["name"] | ||
cgate = CustomizedCirqGate(gatem, ci_name, len(index)) | ||
cmd.append(cgate.on(*index)) | ||
elif gate_name == "measure": | ||
cmd.append(cirq.MeasurementGate(key=gate_info["name"]).on(*index)) | ||
elif gate_name == "reset": | ||
cmd.append(cirq.ResetChannel().on(*index)) | ||
elif gate_name in ["ox", "oy", "oz"]: | ||
cmd.append(getattr(cirq, gate_name[1:])().controlled().on(*index)) | ||
elif gate_name in ["orx", "ory", "orz"]: | ||
cmd.append( | ||
getattr(cirq, gate_name[1:])(_get_float(parameters, "theta")) | ||
.controlled() | ||
.on(*index) | ||
) | ||
elif gate_name == "phase": | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this gate has parameters |
||
cmd.append(cirq.PhaseGate) | ||
else: | ||
# Add Customized Gate if there is no match | ||
gatem = np.reshape( | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import tensorcircuit as tc | ||
|
||
|
||
def test_qis_to_cirq(): | ||
# TODO | ||
c = tc.Circuit(5) | ||
c.rx(0, theta=0.1) | ||
c.ry(1, theta=0.2) | ||
pass |
Oops, something went wrong.
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.
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.
if no value specified,
controlled
is for cx cy cz gates?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.
Hi! Theoretically that would be the case, as
Gate.controlled()
turns a gate (x,y,z
in this case) into a controlled gate according to cirq's documentation.Though I am still having some trouble trying to set up the development environment on my mac M2 machine, and haven't been able to test the gates yet.
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.
for m2, I guess this may help https://tensorcircuit.readthedocs.io/en/latest/contribs/development_Mac.html