generated from XanaduAI/pennylane-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable qpu.backend for IonQ backends (#81)
* add to changelog * add custom backends to qpu class * use any backend * update changelog * add backend classes * make qpu classes visible * add docstrings and remove os import * include both backend methods in readme * add backends to test * remove byte 0xe2 * only use backend field + update docs and tests * fix line length * run black formatter
- Loading branch information
Showing
7 changed files
with
59 additions
and
21 deletions.
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
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
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
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
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 |
---|---|---|
|
@@ -33,13 +33,11 @@ | |
"maintainer_email": "[email protected]", | ||
"url": "http://xanadu.ai", | ||
"license": "Apache License 2.0", | ||
"packages": [ | ||
"pennylane_ionq" | ||
], | ||
"packages": ["pennylane_ionq"], | ||
"entry_points": { | ||
"pennylane.plugins": [ | ||
"ionq.simulator = pennylane_ionq:SimulatorDevice", | ||
"ionq.qpu = pennylane_ionq:QPUDevice" | ||
"ionq.qpu = pennylane_ionq:QPUDevice", | ||
] | ||
}, | ||
"description": "PennyLane plugin for IonQ", | ||
|
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
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