Skip to content

Commit

Permalink
data: cnot basis gate on heavy-hex
Browse files Browse the repository at this point in the history
  • Loading branch information
evmckinney9 committed Oct 12, 2023
1 parent 275708b commit c5f2115
Show file tree
Hide file tree
Showing 21 changed files with 3,917 additions and 442 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
args: [--fix, --exit-non-zero-on-fix]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
Expand Down
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ init: venv-setup
$(PIP) install -e .[core]

# Setup development environment
# includes a temporary fix for pytket-qiskit (https://github.com/CQCL/tket/issues/1023)
dev-init: venv-setup install-dev-deps pre-commit-setup transpile_benchy monodromy
$(PIP) install --upgrade pytket && $(PIP) install --upgrade pytket-qiskit

install-dev-deps:
$(PIP) install -e .[dev] --quiet
Expand All @@ -31,10 +33,10 @@ pre-commit-setup:
transpile_benchy:
if [ -d "../transpile_benchy" ]; then \
echo "Repository already exists. Updating with latest changes."; \
cd ../transpile_benchy && git pull; \
cd ../transpile_benchy && git pull && git checkout main; \
else \
cd .. && git clone https://github.com/evmckinney9/transpile_benchy.git --recurse-submodules; \
cd transpile_benchy; \
cd transpile_benchy && git checkout main; \
fi
$(PIP) install -e ../transpile_benchy --quiet

Expand Down
Loading

0 comments on commit c5f2115

Please sign in to comment.