From d85750702229af97c0b0bbda6e397a23254b6144 Mon Sep 17 00:00:00 2001 From: Jonas Ohlsson Date: Wed, 30 Mar 2022 10:30:25 +0200 Subject: Update version of Black to 22.3.0 Update version of Black to 22.3.0 due to updated dependencies. Updates to fix reported issues due to new version. Signed-off-by: Jonas Ohlsson Change-Id: I60056aae452093ce8dcea1f499ecced22b25eef1 --- ethosu/vela/compiler_driver.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'ethosu/vela/compiler_driver.py') diff --git a/ethosu/vela/compiler_driver.py b/ethosu/vela/compiler_driver.py index cf26eb3b..2715c8fe 100644 --- a/ethosu/vela/compiler_driver.py +++ b/ethosu/vela/compiler_driver.py @@ -44,10 +44,9 @@ from .tensor import Tensor class CompilerOptions: """Set of options to change compiler behaviour - verbosity, targets, turning off passes. -Note the difference between ArchitectureFeatures and CompilerOptions -- ArchitectureFeatures is for changing the Ethos-U and system architecture -- CompilerOptions is for changing the behaviour of the compiler -""" + Note the difference between ArchitectureFeatures and CompilerOptions + - ArchitectureFeatures is for changing the Ethos-U and system architecture + - CompilerOptions is for changing the behaviour of the compiler""" def __init__( self, @@ -194,7 +193,10 @@ def compiler_driver(nng, arch, options, scheduler_options, network_type): # Calculate live ranges for all constant Npu tensors, in permanent storage for sg in npu_subgraphs: lr_graph_flash = live_range.create_linear_live_range_graph( - sg, permanent_storage, MemType.Permanent_NPU, lr_graph=lr_graph_flash, + sg, + permanent_storage, + MemType.Permanent_NPU, + lr_graph=lr_graph_flash, ) if npu_subgraphs: -- cgit v1.2.1