diff --git a/concrete/__init__.py b/concrete/__init__.py index 02191637c..616df0b7f 100644 --- a/concrete/__init__.py +++ b/concrete/__init__.py @@ -1,5 +1,5 @@ """ -Declaration of `concrete` namespace. +Setup concrete module to be enlarged with numpy module. """ # Do not modify, this is to have a compatible namespace package diff --git a/concrete/numpy/__init__.py b/concrete/numpy/__init__.py index ca2da4a7f..1c03d6191 100644 --- a/concrete/numpy/__init__.py +++ b/concrete/numpy/__init__.py @@ -1,5 +1,5 @@ """ -Declaration of `concrete.numpy` namespace. +Export everything that users might need. """ from .compilation import ( diff --git a/concrete/numpy/compilation/__init__.py b/concrete/numpy/compilation/__init__.py index 43bf554a5..b01e3bc31 100644 --- a/concrete/numpy/compilation/__init__.py +++ b/concrete/numpy/compilation/__init__.py @@ -1,5 +1,5 @@ """ -Declaration of `concrete.numpy.compilation` namespace. +Glue the compilation process together. """ from .artifacts import CompilationArtifacts diff --git a/concrete/numpy/dtypes/__init__.py b/concrete/numpy/dtypes/__init__.py index 7a019414d..1dbd8e7bd 100644 --- a/concrete/numpy/dtypes/__init__.py +++ b/concrete/numpy/dtypes/__init__.py @@ -1,5 +1,5 @@ """ -Declaration of `concrete.numpy.dtypes` namespace. +Define available data types and their semantics. """ from .base import BaseDataType diff --git a/concrete/numpy/extensions/__init__.py b/concrete/numpy/extensions/__init__.py index ea87a6c1d..c139ea437 100644 --- a/concrete/numpy/extensions/__init__.py +++ b/concrete/numpy/extensions/__init__.py @@ -1,5 +1,5 @@ """ -Declaration of `concrete.numpy.extensions` namespace. +Provide additional features that are not present in numpy. """ from .convolution import conv2d diff --git a/concrete/numpy/internal/__init__.py b/concrete/numpy/internal/__init__.py index 065af833e..c09f84c42 100644 --- a/concrete/numpy/internal/__init__.py +++ b/concrete/numpy/internal/__init__.py @@ -1,3 +1,3 @@ """ -Declaration of `concrete.numpy.internal` namespace. +Export functions that are used internally by other modules for common things (e.g., assertions). """ diff --git a/concrete/numpy/mlir/__init__.py b/concrete/numpy/mlir/__init__.py index 262d3d042..648c3ec11 100644 --- a/concrete/numpy/mlir/__init__.py +++ b/concrete/numpy/mlir/__init__.py @@ -1,5 +1,5 @@ """ -Declaration of `concrete.numpy.mlir` namespace. +Provide `computation graph` to `mlir` functionality. """ from .graph_converter import GraphConverter diff --git a/concrete/numpy/representation/__init__.py b/concrete/numpy/representation/__init__.py index 9664afd99..cc67d1504 100644 --- a/concrete/numpy/representation/__init__.py +++ b/concrete/numpy/representation/__init__.py @@ -1,5 +1,5 @@ """ -Declaration of `concrete.numpy.representation` namespace. +Define structures used to represent computation. """ from .graph import Graph diff --git a/concrete/numpy/tracing/__init__.py b/concrete/numpy/tracing/__init__.py index dd9712f1a..02ed788a5 100644 --- a/concrete/numpy/tracing/__init__.py +++ b/concrete/numpy/tracing/__init__.py @@ -1,5 +1,5 @@ """ -Declaration of `concrete.numpy.tracing` namespace. +Provide `function` to `computation graph` functionality. """ from .tracer import Tracer diff --git a/concrete/numpy/values/__init__.py b/concrete/numpy/values/__init__.py index 6bfc47e85..c47bbbd84 100644 --- a/concrete/numpy/values/__init__.py +++ b/concrete/numpy/values/__init__.py @@ -1,5 +1,5 @@ """ -Declaration of `concrete.numpy.values` namespace. +Define the available values and their semantics. """ from .scalar import ClearScalar, EncryptedScalar