Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

remove IsingXY support #140

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pennylane_lightning_gpu/lightning_gpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ def _mebibytesToBytes(mebibytes):
"IsingXX",
"IsingYY",
"IsingZZ",
"IsingXY",
"SingleExcitation",
"SingleExcitationPlus",
"SingleExcitationMinus",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_gates.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def op(op_name):
"CSWAP": [qml.CSWAP, [], {"wires": [0, 1, 2]}],
"PauliRot": [qml.PauliRot, [0.123], {"pauli_word": "Y", "wires": [0]}],
"IsingXX": [qml.IsingXX, [], {"phi": 0.123, "wires": [0, 1]}],
"IsingXY": [qml.IsingXY, [], {"phi": 0.123, "wires": [0, 1]}],
#"IsingXY": [qml.IsingXY, [], {"phi": 0.123, "wires": [0, 1]}],
"IsingYY": [qml.IsingYY, [], {"phi": 0.123, "wires": [0, 1]}],
"IsingZZ": [qml.IsingZZ, [], {"phi": 0.123, "wires": [0, 1]}],
"Identity": [qml.Identity, [], {"wires": [0]}],
Expand Down
Loading