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:
Arthur Meyre
2021-07-28 15:58:10 +02:00
parent c91ee858c5
commit be391ca388
15 changed files with 15 additions and 15 deletions

View File

@@ -1,2 +1,2 @@
"""HDK's top import"""
"""Package top import"""
from . import common, hnumpy

View File

@@ -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

View File

@@ -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

View File

@@ -1,2 +1,2 @@
"""HDK's module for debugging"""
"""Module for debugging"""
from .draw_graph import draw_graph, get_printable_graph

View File

@@ -1,2 +1,2 @@
"""HDK's representation module to represent source programs"""
"""Representation module to represent source programs"""
from . import intermediate

View File

@@ -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

View File

@@ -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,

View File

@@ -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

View File

@@ -1,4 +1,4 @@
"""Test file for HDK's data types helpers"""
"""Test file for data types helpers"""
import pytest

View File

@@ -1,4 +1,4 @@
"""Test file for HDK's common/data_types/integers.py"""
"""Test file for integers data types"""
import random

View File

@@ -1,4 +1,4 @@
"""Test file for HDK's common/data_types/values.py"""
"""Test file for values classes"""
import pytest

View File

@@ -1,4 +1,4 @@
"""Test file for HDK's common/representation/intermediate.py"""
"""Test file for intermediate representation"""
import pytest

View File

@@ -1,4 +1,4 @@
"""Test file for HDK's common tracing helpers"""
"""Test file for common tracing helpers"""
from typing import Any, Dict, List

View File

@@ -1,4 +1,4 @@
"""Test file for HDK's hnumpy debugging functions"""
"""Test file for hnumpy debugging functions"""
import pytest

View File

@@ -1,4 +1,4 @@
"""Test file for HDK's hnumpy tracing"""
"""Test file for hnumpy tracing"""
import networkx as nx
import pytest