Skip to content

Commit 54b99d6

Browse files
update quick start doc
1 parent 18ff63a commit 54b99d6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/source/quickstart.rst

+18
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ and the other part is implemented in `TensorCircuit package <modules.html#module
318318
'expm',
319319
'eye',
320320
'from_dlpack',
321+
'g',
321322
'gather1d',
322323
'get_random_state',
323324
'gmres',
@@ -345,6 +346,7 @@ and the other part is implemented in `TensorCircuit package <modules.html#module
345346
'max',
346347
'mean',
347348
'min',
349+
'minor',
348350
'mod',
349351
'multiply',
350352
'name',
@@ -353,6 +355,7 @@ and the other part is implemented in `TensorCircuit package <modules.html#module
353355
'one_hot',
354356
'onehot',
355357
'ones',
358+
'optimizer',
356359
'outer_product',
357360
'pivot',
358361
'power',
@@ -419,6 +422,7 @@ and the other part is implemented in `TensorCircuit package <modules.html#module
419422
'vvag',
420423
'zeros']
421424
425+
422426
423427
Switch the Dtype
424428
--------------------
@@ -687,6 +691,20 @@ As we have mentioned in the backend section, the PyTorch backend may lack advanc
687691
688692
For a GPU/CPU, torch/tensorflow, quantum/classical hybrid machine learning pipeline enabled by tensorcircuit, see `example script <https://github.com/tencent-quantum-lab/tensorcircuit/blob/master/examples/hybrid_gpu_pipeline.py>`__.
689693
694+
There is also a more flexible torch interface that support static non-tensor inputs as keyword arguments, which can be utilized as below:
695+
696+
.. code-block:: python
697+
698+
def f(a, i):
699+
s = 0.
700+
for _ in range(i):
701+
s += a
702+
return s
703+
704+
f_torch = tc.interfaces.torch_interface_kws(f)
705+
f_torch(torch.ones([2]), i=3)
706+
707+
690708
We also provider wrapper of quantum function for torch module as :py:meth:`tensorcircuit.TorchLayer` alias to :py:meth:`tensorcircuit.torchnn.QuantumNet`.
691709
692710
For ``TorchLayer``, ``use_interface=True`` is by default, which natively allow the quantum function defined on other tensorcircuit backends, such as jax or tf for speed consideration.

0 commit comments

Comments
 (0)