chore(common): fix remaining numpy links

This commit is contained in:
aquint-zama
2023-04-13 09:56:46 +02:00
committed by Quentin Bourgerie
parent 56d2d3e40d
commit c7689b6c78
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ Since writing FHE program is hard, Concrete, based on LLVM, make this process ea
## Main features
- Ability to compile Python functions (that may use NumPy within) to their FHE equivalents, to operate on encrypted data
- Support for [large collection of operators](https://docs.zama.ai/concrete-numpy/getting-started/compatibility)
- Support for [large collection of operators](https://docs.zama.ai/concrete/getting-started/compatibility)
- Partial support for floating points
- Support for table lookups on integers
- Support for integration with Client / Server architectures

View File

@@ -112,7 +112,7 @@ class Graph:
if pred_node.operation != Operation.Input:
dtype = node.inputs[index].dtype
if isinstance(dtype, Integer):
# see https://github.com/zama-ai/concrete-numpy/blob/main/docs/_static/p_error_simulation.pdf # noqa: E501 # pylint: disable=line-too-long
# see https://github.com/zama-ai/concrete/blob/main/docs/_static/p_error_simulation.pdf # noqa: E501 # pylint: disable=line-too-long
# to learn more about the distribution of error
if p_error not in P_ERROR_PER_ERROR_SIZE_CACHE: