docs: remove virtual from documentation

This commit is contained in:
Umut
2023-03-02 10:49:43 +01:00
parent 7985906a72
commit e36c7d2e03
7 changed files with 44 additions and 65 deletions

View File

@@ -94,9 +94,6 @@ Additional kwarg to `compile` function have higher precedence. So if you set an
* **enable\_unsafe\_features**: bool = False
* Whether to enable unsafe features.
* **virtual**: bool = False _(Unsafe)_
* Whether to create a virtual circuit.
* **use\_insecure\_key\_cache**: bool = False _(Unsafe)_
* Whether to use the insecure key cache.

View File

@@ -96,7 +96,7 @@ This file contains information about the error you received.
```
Traceback (most recent call last):
File "/home/default/Documents/Projects/Zama/hdk/concrete/numpy/compilation/compiler.py", line 320, in compile
mlir = GraphConverter.convert(self.graph, virtual=self.configuration.virtual)
mlir = GraphConverter.convert(self.graph)
File "/home/default/Documents/Projects/Zama/hdk/concrete/numpy/mlir/graph_converter.py", line 298, in convert
GraphConverter._check_graph_convertibility(graph)
File "/home/default/Documents/Projects/Zama/hdk/concrete/numpy/mlir/graph_converter.py", line 175, in _check_graph_convertibility