From e8a10454eba4c7392cb301fbfbe796e5bfb2b729 Mon Sep 17 00:00:00 2001 From: Diego Russo Date: Tue, 21 Apr 2020 17:39:10 +0100 Subject: Add reorder-python-import pre-commit hook Also updated README.md Change-Id: I118309c61f4d00e8508d6b888c606995490fba39 Signed-off-by: Diego Russo --- ethosu/vela/tensor.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'ethosu/vela/tensor.py') diff --git a/ethosu/vela/tensor.py b/ethosu/vela/tensor.py index 5cebf4d0..19258b52 100644 --- a/ethosu/vela/tensor.py +++ b/ethosu/vela/tensor.py @@ -13,19 +13,16 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - - # Description: # Internal representation of a Neural Network Tensor. - import enum import uuid import numpy as np from . import numeric_util -from .range_set import MemoryRangeSet from .numeric_util import round_up_divide +from .range_set import MemoryRangeSet class MemArea(enum.IntFlag): -- cgit v1.2.1