-
Notifications
You must be signed in to change notification settings - Fork 368
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
support cu1 fusion #334
Merged
Merged
support cu1 fusion #334
Changes from 1 commit
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 |
---|---|---|
|
@@ -15,6 +15,8 @@ | |
#ifndef _aer_transpile_fusion_hpp_ | ||
#define _aer_transpile_fusion_hpp_ | ||
|
||
//#define DEBUG | ||
|
||
#include "transpile/circuitopt.hpp" | ||
|
||
namespace AER { | ||
|
@@ -116,6 +118,7 @@ const std::vector<std::string> Fusion::supported_gates({ | |
// Two-qubit gates | ||
"CX", // Controlled-X gate (CNOT) | ||
"cx", // Controlled-X gate (CNOT) | ||
"cu1", // Controlled-U1 gate | ||
"cz", // Controlled-Z gate | ||
"swap" // SWAP gate | ||
// Three-qubit gates | ||
|
@@ -514,21 +517,21 @@ bool Fusion::only_u1(const std::vector<op_t>& ops, | |
const uint_t until) const { | ||
|
||
for (uint_t i = from; i <= until; ++i) { | ||
if (ops[i].name == "u1") | ||
continue; | ||
if (from < i && (i + 2) <= until | ||
&& ops[i - 1].name == "u1" | ||
&& ops[i ].name == "cx" | ||
&& ops[i + 1].name == "u1" | ||
&& ops[i + 2].name == "cx" | ||
&& ops[i - 1].qubits[0] == ops[i ].qubits[1] | ||
&& ops[i ].qubits[1] == ops[i + 1].qubits[0] | ||
&& ops[i + 1].qubits[0] == ops[i + 2].qubits[1] | ||
&& ops[i ].qubits[0] == ops[i + 2].qubits[0] ) | ||
if ((i + 3) <= until | ||
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. it would be great if we can add a comment in this method to explain what is trying to do, something like: // This method will seek for this pattern of gates in the circuit:
// ---[u1]---|---[u1]---|---
// --------[cx]-------[cx]--
// And optimize it by blablabla... |
||
&& ops[i ].name == "u1" | ||
&& ops[i + 1].name == "cx" | ||
&& ops[i + 2].name == "u1" | ||
&& ops[i + 3].name == "cx" | ||
&& ops[i ].qubits[0] == ops[i + 1].qubits[1] | ||
&& ops[i + 1].qubits[1] == ops[i + 2].qubits[0] | ||
&& ops[i + 2].qubits[0] == ops[i + 3].qubits[1] | ||
&& ops[i + 1].qubits[0] == ops[i + 3].qubits[0] ) | ||
{ | ||
i += 2; | ||
i += 3; | ||
continue; | ||
} | ||
if (ops[i].name == "u1" || ops[i].name == "cu1") | ||
continue; | ||
return false; | ||
} | ||
return true; | ||
|
@@ -579,6 +582,13 @@ cmatrix_t Fusion::matrix(const op_t& op) const { | |
{ {1, 0}, {0, 0} }, | ||
{ {0, 0}, std::exp( complex_t(0, 1.) * std::real(op.params[0])) }} | ||
); | ||
} else if (op.name == "cu1") { // zero-X90 pulse waltz gate | ||
return Utils::make_matrix<complex_t>( { | ||
{ {1, 0}, {0, 0}, {0, 0}, {0, 0} }, | ||
{ {0, 0}, {1, 0}, {0, 0}, {0, 0} }, | ||
{ {0, 0}, {0, 0}, {1, 0}, {0, 0} }, | ||
{ {0, 0}, {0, 0}, {0, 0}, std::exp( complex_t(0, 1.) * std::real(op.params[0])) }} | ||
); | ||
} else if (op.name == "u2") { // single-X90 pulse waltz gate | ||
return Utils::Matrix::u3( M_PI / 2., std::real(op.params[0]), std::real(op.params[1])); | ||
} else if (op.name == "u3" || op.name == "U") { // two X90 pulse waltz gate | ||
|
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.
You might have unintentionally left this commented line I guess.. :)