You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+14-13
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,23 @@ TensorCircuit is built on top of modern machine learning frameworks, and has the
6
6
7
7
## Basic Usage
8
8
9
+
Please begin with [Quick Start](/docs/source/quickstart.rst) and [Jupyter Tutorials](https://github.com/quclub/tensorcircuit-tutorials/tree/master/tutorials).
10
+
11
+
For more information and introductions, please refer to helpful scripts [examples](/examples) and [documentations](/docs/source). API docstrings (incomplete for now) and test cases in [tests](/tests) are also informative.
Please begin with [Quick Start](/docs/source/quickstart.rst) and [Jupyter Tutorials](https://github.com/quclub/tensorcircuit-tutorials/tree/master/tutorials).
42
-
43
-
For more information and introductions, please refer to examples and docs/source in this repo. API docstrings (incomplete for now) and test cases in tests are also helpful and informative.
44
-
45
50
## Contributing
46
51
47
-
### Guidelines
52
+
For contribution guidelines and notes, see [CONTRIBUTING](/CONTRIBUTING.md).
53
+
54
+
### Cautions
48
55
49
56
Please open issues or PRs.
50
57
@@ -56,8 +63,6 @@ Keep the codebase private!
56
63
57
64
For development workflow, we suggest to first configure a good conda environment. The versions of dependecy package may vary in terms of development requirements. The minimum requirement is the [TensorNetwork](https://github.com/google/TensorNetwork) package (pip install suggested).
58
65
59
-
For git workflow of contribution, see [CONTRIBUTING](/CONTRIBUTING.md).
60
-
61
66
### Docs
62
67
63
68
```bash
@@ -97,10 +102,6 @@ For now, we introduce one for all checker for development:
97
102
./check_all.sh
98
103
```
99
104
100
-
### CI
101
-
102
-
We currently use GitHub Action for test CI, but it has limited quota for free private repo.
Copy file name to clipboardexpand all lines: docs/source/quickstart.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -169,11 +169,11 @@ The related API design in TensorCircuit closely follows the functional programmi
169
169
170
170
**AD support:**
171
171
172
-
gradients, vjps, jvps, natural gradients, Jacobians and Hessians
172
+
Gradients, vjps, jvps, natural gradients, Jacobians and Hessians
173
173
174
174
**JIT support:**
175
175
176
-
parameterized quantum circuit can run in a blink. Always use jit if the circuit will get evaluations multiple times, it greatly boost the simulation efficiency with two or three order time reduction. But also be caution, you need to be an expert on jit, otherwise the jitted function may return unexpected results or recompiling on every hit (wasting lots of time).
176
+
Parameterized quantum circuit can run in a blink. Always use jit if the circuit will get evaluations multiple times, it greatly boost the simulation efficiency with two or three order time reduction. But also be caution, you need to be an expert on jit, otherwise the jitted function may return unexpected results or recompiling on every hit (wasting lots of time).
0 commit comments