mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 20:25:34 -05:00
chore: remove reference to package name and file paths
- avoids desync with the package name and file paths (which are unstable)
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
"""HDK's top import"""
|
||||
"""Package top import"""
|
||||
from . import common, hnumpy
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
"""HDK's module for shared data structures and code"""
|
||||
"""Module for shared data structures and code"""
|
||||
from . import data_types, debugging, representation
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
"""HDK's module for data types code and data structures"""
|
||||
"""Module for data types code and data structures"""
|
||||
from . import dtypes_helpers, integers, values
|
||||
from .values import BaseValue
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
"""HDK's module for debugging"""
|
||||
"""Module for debugging"""
|
||||
from .draw_graph import draw_graph, get_printable_graph
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
"""HDK's representation module to represent source programs"""
|
||||
"""Representation module to represent source programs"""
|
||||
from . import intermediate
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""File containing HDK's intermdiate representation of source programs operations"""
|
||||
"""File containing code to represent source programs operations"""
|
||||
|
||||
from abc import ABC, abstractmethod
|
||||
from copy import deepcopy
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""HDK's module for basic tracing facilities"""
|
||||
"""Module for basic tracing facilities"""
|
||||
from .base_tracer import BaseTracer
|
||||
from .tracing_helpers import (
|
||||
create_graph_from_output_tracers,
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
"""HDK's module for compiling numpy functions to homomorphic equivalents"""
|
||||
"""Module for compiling numpy functions to homomorphic equivalents"""
|
||||
from . import tracing
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""Test file for HDK's data types helpers"""
|
||||
"""Test file for data types helpers"""
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""Test file for HDK's common/data_types/integers.py"""
|
||||
"""Test file for integers data types"""
|
||||
|
||||
import random
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""Test file for HDK's common/data_types/values.py"""
|
||||
"""Test file for values classes"""
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""Test file for HDK's common/representation/intermediate.py"""
|
||||
"""Test file for intermediate representation"""
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""Test file for HDK's common tracing helpers"""
|
||||
"""Test file for common tracing helpers"""
|
||||
|
||||
from typing import Any, Dict, List
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""Test file for HDK's hnumpy debugging functions"""
|
||||
"""Test file for hnumpy debugging functions"""
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""Test file for HDK's hnumpy tracing"""
|
||||
"""Test file for hnumpy tracing"""
|
||||
|
||||
import networkx as nx
|
||||
import pytest
|
||||
|
||||
Reference in New Issue
Block a user