Skip to content
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

feat: add phirc CLI driver and setuptools scm for auto versioning #31

Merged
merged 2 commits into from
Nov 10, 2023
Merged
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
10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[build-system]
requires = ["setuptools", "wheel"]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"

# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
[project]
name = "pytket-phir"
version = "0.0.1"
description = "A circuit analyzer and translator from pytket to PHIR"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -23,13 +22,17 @@ classifiers = [
"Typing :: Typed",
]

dynamic = ["version"]
dependencies = ["phir>=0.1.6", "pytket"]

[project.optional-dependencies]
tests = ["pytest"]

docs = ["sphinx", "sphinx-rtd-theme"]

[project.scripts]
phirc = "pytket.phir.cli:main"

[project.urls]
Repository = "https://github.com/CQCL/pytket-phir.git"

Expand All @@ -49,3 +52,6 @@ log_cli_level = "INFO"
filterwarnings = ["ignore:::lark.s*"]
log_format = "%(asctime)s.%(msecs)03d %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"

[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
59 changes: 59 additions & 0 deletions pytket/phir/cli.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# mypy: disable-error-code="misc"

from argparse import ArgumentParser
from importlib.metadata import version

from pecos.engines.hybrid_engine import HybridEngine # type:ignore [import-not-found]

from phir.model import PHIRModel
from pytket.qasm.qasm import (
circuit_from_qasm,
circuit_from_qasm_str,
circuit_to_qasm_str,
)

from .api import pytket_to_phir
from .qtm_machine import QtmMachine
from .rebasing.rebaser import rebase_to_qtm_machine


def main() -> None:
"""pytket-phir compiler CLI."""
parser = ArgumentParser(
prog="phirc",
description="Simulates QASM file via PECOS",
)
parser.add_argument(
"qasm_files", nargs="+", default=None, help="One or more QASM files to simulate"
)
parser.add_argument(
"-m",
"--machine",
choices=["H1-1", "H1-2"],
default="H1-1",
help="machine name, H1-1 by default",
)
parser.add_argument(
"-v",
"--version",
action="version",
version=f'{version("pytket-phir")}',
)
args = parser.parse_args()

for file in args.qasm_files:
print(f"Processing {file}") # noqa: T201
c = circuit_from_qasm(file)
rc = rebase_to_qtm_machine(c, args.machine)
qasm = circuit_to_qasm_str(rc, header="hqslib1")
circ = circuit_from_qasm_str(qasm)

match args.machine:
case "H1-1":
machine = QtmMachine.H1_1
case "H1-2":
machine = QtmMachine.H1_2
phir = pytket_to_phir(circ, machine)
PHIRModel.model_validate_json(phir)

HybridEngine(qsim="state-vector").run(program=phir, shots=10)