Skip to content

Commit 4bfaf80

Browse files
Now installing submodules in tests
1 parent 484779d commit 4bfaf80

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/test_install.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ jobs:
2626

2727
- name: Run Install
2828
run: |
29+
git submodule update --init --recursive -q
2930
pip install .

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
[![Test libs_qrem Install](https://github.com/PhaseCraft/libs_qrem/actions/workflows/test_install.yml/badge.svg)](https://github.com/PhaseCraft/libs_qrem/actions/workflows/test_install.yml)
44

5+
This is the Phasecraft fork of the following package, updating the install:
6+
57
`libs_qrem` is a python package which executes efficient quantum readout error mitigation (QREM) written in C++/Cython.
68
This package mitigates the readout errors in 65 qubit measurement result of GHZ state from ibmq_brooklyn in few seconds.
79
- Time Complexity: $O(ns^2)$
@@ -15,17 +17,17 @@ This package mitigates the readout errors in 65 qubit measurement result of GHZ
1517

1618
## Install via pip
1719
```sh
18-
pip install git+https://github.com/BOBO1997/libs_qrem
20+
pip install git+ssh://git@github.com/PhaseCraft/libs_qrem.git
1921
```
2022

2123
c.f.) Reinstall via pip
2224
```sh
23-
pip install --upgrade --force-reinstall git+https://github.com/BOBO1997/libs_qrem
25+
pip install --upgrade --force-reinstall git+ssh://git@github.com/PhaseCraft/libs_qrem.git
2426
```
2527

2628
## Install manually
2729
```sh
28-
git clone https://github.com/BOBO1997/libs_qrem.git
30+
git clone https://github.com/Phasecraft/libs_qrem.git
2931
cd libs_qrem
3032
python setup.py install --record install_record.txt
3133
```

0 commit comments

Comments
 (0)