aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Bohlin <jacob.bohlin@arm.com>2020-07-09 11:16:30 +0200
committertim.hall <tim.hall@arm.com>2020-07-10 12:59:48 +0000
commit0b9ca78dbde3f5c29f368577de1f621845e711a2 (patch)
tree8f768e7a5ec5b850d770822270cc7cdb4b7d5bdc
parent5ff994417eae32175b5c72dc433edc4a9f12a8cc (diff)
downloadethos-u-vela-0b9ca78dbde3f5c29f368577de1f621845e711a2.tar.gz
Minor black code clean-up
Automatically generated, no functional changes. Signed-off-by: Jacob Bohlin <jacob.bohlin@arm.com> Change-Id: Ia6a791f7dbadc352bc8a7b528afa070e8540b4d0
-rw-r--r--ethosu/vela/register_command_stream_generator.py38
1 files changed, 24 insertions, 14 deletions
diff --git a/ethosu/vela/register_command_stream_generator.py b/ethosu/vela/register_command_stream_generator.py
index 3b294983..4bbea01e 100644
--- a/ethosu/vela/register_command_stream_generator.py
+++ b/ethosu/vela/register_command_stream_generator.py
@@ -1,4 +1,3 @@
-
# Copyright (C) 2020 Arm Limited or its affiliates. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
@@ -47,7 +46,6 @@ from .numeric_util import clamp_tanh
from .numeric_util import full_shape
from .numeric_util import quantise_float32
from .numeric_util import round_away_zero
-from .numeric_util import round_up
from .numeric_util import round_up_to_int
from .operation import NpuBlockType
from .shared_buffer_allocation import SharedBufferAllocation
@@ -392,7 +390,7 @@ def generate_register_command_stream(nng, sg, arch, verbose=False):
emit.cmd_wait(cmd0.NPU_OP_DMA_WAIT, param, absolute_dep[CommandType.DMA][0])
if arch.is_yoda_system:
- emit.cmd0_with_param(cmd0.NPU_SET_PARALLEL_MODE, arch.ncores-1)
+ emit.cmd0_with_param(cmd0.NPU_SET_PARALLEL_MODE, arch.ncores - 1)
for cmd in cmd_stream:
if cmd.cmdtype == CommandType.DMA:
@@ -694,18 +692,24 @@ def generate_register_command_stream(nng, sg, arch, verbose=False):
# this command's weights from the larger tensor.
stream_index = cmd.weight_tensor.compressed_stream_index_from_coord(cmd.weight_box.start_coord)
weight_substream_offsets = cmd.weight_tensor.compressed_values_substream_offsets[stream_index]
- substreams = len( weight_substream_offsets ) - 1 # Offset list must terminate with full stream length
+ substreams = len(weight_substream_offsets) - 1 # Offset list must terminate with full stream length
# Extract weight substream offsets and calculate their lengths
assert len(weight_substream_offsets) > 1 and (weight_substream_offsets[0] == 0)
weight_addr = cmd.weight_tensor.address_for_coordinate(cmd.weight_box.start_coord)
# Set weights sources for active and present cores
- for core, param in enumerate( [(cmd1.NPU_SET_WEIGHT_BASE, cmd1.NPU_SET_WEIGHT_LENGTH),
- (cmd1.NPU_SET_WEIGHT1_BASE, cmd1.NPU_SET_WEIGHT1_LENGTH)] ):
+ for core, param in enumerate(
+ [
+ (cmd1.NPU_SET_WEIGHT_BASE, cmd1.NPU_SET_WEIGHT_LENGTH),
+ (cmd1.NPU_SET_WEIGHT1_BASE, cmd1.NPU_SET_WEIGHT1_LENGTH),
+ ]
+ ):
if core < substreams:
- emit.cmd1_with_offset(param[0], weight_addr + weight_substream_offsets[core] )
- emit.cmd1_with_offset(param[1], weight_substream_offsets[core+1] - weight_substream_offsets[core])
+ emit.cmd1_with_offset(param[0], weight_addr + weight_substream_offsets[core])
+ emit.cmd1_with_offset(
+ param[1], weight_substream_offsets[core + 1] - weight_substream_offsets[core]
+ )
elif core < arch.ncores:
emit.cmd1_with_offset(param[0], weight_addr)
emit.cmd1_with_offset(param[1], 0)
@@ -717,18 +721,24 @@ def generate_register_command_stream(nng, sg, arch, verbose=False):
# the weight tensors.
if cmd.scale_tensor is not None:
scale_substream_offsets = cmd.scale_tensor.compressed_values_substream_offsets[stream_index]
- substreams = len( scale_substream_offsets ) - 1 # Offset list must terminate with full stream length
+ substreams = len(scale_substream_offsets) - 1 # Offset list must terminate with full stream length
# Extract scale substream offsets and calculate their lengths
assert len(scale_substream_offsets) > 1 and (scale_substream_offsets[0] == 0)
- scale_addr = cmd.scale_tensor.address_for_coordinate( cmd.weight_box.start_coord[-1:] )
+ scale_addr = cmd.scale_tensor.address_for_coordinate(cmd.weight_box.start_coord[-1:])
# Set scale sources for active and present cores
- for core, param in enumerate( [(cmd1.NPU_SET_SCALE_BASE, cmd1.NPU_SET_SCALE_LENGTH),
- (cmd1.NPU_SET_SCALE1_BASE, cmd1.NPU_SET_SCALE1_LENGTH)] ):
+ for core, param in enumerate(
+ [
+ (cmd1.NPU_SET_SCALE_BASE, cmd1.NPU_SET_SCALE_LENGTH),
+ (cmd1.NPU_SET_SCALE1_BASE, cmd1.NPU_SET_SCALE1_LENGTH),
+ ]
+ ):
if core < substreams:
- emit.cmd1_with_offset(param[0], scale_addr + scale_substream_offsets[core] )
- emit.cmd1_with_offset(param[1], scale_substream_offsets[core+1] - scale_substream_offsets[core])
+ emit.cmd1_with_offset(param[0], scale_addr + scale_substream_offsets[core])
+ emit.cmd1_with_offset(
+ param[1], scale_substream_offsets[core + 1] - scale_substream_offsets[core]
+ )
elif core < arch.ncores:
emit.cmd1_with_offset(param[0], scale_addr)
emit.cmd1_with_offset(param[1], 0)