mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
chore: lowercase for filenames
This commit is contained in:
committed by
Benoit Chevallier
parent
6b3adc217f
commit
bdb1140bee
@@ -10,7 +10,7 @@ import concrete.numpy as hnp
|
||||
|
||||
## Defining a function to compile
|
||||
|
||||
You need to have a python function that follows the [limits](../explanation/FHE_AND_FRAMEWORK_LIMITS.md) of the **Concrete Framework**. Here is a simple example:
|
||||
You need to have a python function that follows the [limits](../explanation/fhe_and_framework_limits.md) of the **Concrete Framework**. Here is a simple example:
|
||||
|
||||
<!--python-test:cont-->
|
||||
```python
|
||||
@@ -101,6 +101,6 @@ FIXME(benoit): explain the API to encrypt, run_inference, decrypt, keygen etc wh
|
||||
|
||||
## Further reading
|
||||
|
||||
- [Working With Floating Points Tutorial](../tutorial/WORKING_WITH_FLOATING_POINTS.md)
|
||||
- [Table Lookup Tutorial](../tutorial/TABLE_LOOKUP.md)
|
||||
- [Compiling a torch model](../tutorial/COMPILING_TORCH_MODEL.md)
|
||||
- [Working With Floating Points Tutorial](../tutorial/working_with_floating_points.md)
|
||||
- [Table Lookup Tutorial](../tutorial/table_lookup.md)
|
||||
- [Compiling a torch model](../tutorial/compiling_torch_model.md)
|
||||
@@ -4,7 +4,7 @@ Getting Started
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
INTRO.md
|
||||
INSTALLING.md
|
||||
COMPILING_AND_EXECUTING.md
|
||||
intro.md
|
||||
installing.md
|
||||
compiling_and_executing.md
|
||||
benchmarks.md
|
||||
|
||||
@@ -33,14 +33,14 @@ Basically, we have divided our documentation into several parts:
|
||||
## A work in progress
|
||||
|
||||
```{note}
|
||||
Concrete is a work in progress, and is currently limited to a certain number of operators and features. In the future, there will be improvements as described in this [section](../explanation/FUTURE_FEATURES.md).
|
||||
Concrete is a work in progress, and is currently limited to a certain number of operators and features. In the future, there will be improvements as described in this [section](../explanation/future_features.md).
|
||||
```
|
||||
|
||||
The main _current_ limits are:
|
||||
- **Concrete** is only supporting unsigned integers
|
||||
- **Concrete** needs the integer to be less than 7 bits (included)
|
||||
|
||||
These limits can be taken care of with the use of quantization, as explained a bit further in [this](../explanation/QUANTIZATION.md) and [this](../howto/REDUCE_NEEDED_PRECISION.md) parts of the documentation.
|
||||
These limits can be taken care of with the use of quantization, as explained a bit further in [this](../explanation/quantization.md) and [this](../howto/reduce_needed_precision.md) parts of the documentation.
|
||||
|
||||
```{warning}
|
||||
FIXME(Jordan): speak about our quantization framework
|
||||
Reference in New Issue
Block a user