-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Compiler redo * Compiler redo * More changes * Linting * Linting * Update qiskit/compiler/synthesizer.py Co-Authored-By: jaygambetta <[email protected]> * Update qiskit/compiler/assembler.py Co-Authored-By: jaygambetta <[email protected]> * Update qiskit/compiler/assembler.py Co-Authored-By: jaygambetta <[email protected]> * Update qiskit/runner_wrapper.py Co-Authored-By: jaygambetta <[email protected]> * Renaming for ali * Cleaning up * Listing. And doc * Making compile work with pass manager. * Style fixes * Moving around * Limiting and passing * naming * Doctoring * rename assemble() to assemble_circuits(), update warning messages * add a changelog * add qobj_header as an arg to execute() as well * move schema to models folder like other qiskit components * add tests for assembler * qiskit.compiler.transpile -> qiskit.compiler.transpiler * update teleport example * update rippleadd example * fix misleading try-except statements in the examples * update level 1 example to be transpile then assemble * bring run_config arg to second position in assemble_circuits() * remove compile from tests and a bunch of pylint ignores
- Loading branch information
1 parent
2403985
commit 89ceb19
Showing
39 changed files
with
830 additions
and
401 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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright 2019, IBM. | ||
# | ||
# This source code is licensed under the Apache License, Version 2.0 found in | ||
# the LICENSE.txt file in the root directory of this source tree. | ||
|
||
"""Helper module for Qiskit compiler. | ||
""" | ||
|
||
from .run_config import RunConfig | ||
from .transpile_config import TranspileConfig | ||
from .assembler import assemble_circuits | ||
from .transpiler import transpile |
Oops, something went wrong.