aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/compiler_driver.py
diff options
context:
space:
mode:
authorPatrik Gustavsson <patrik.gustavsson@arm.com>2020-11-03 13:07:40 +0100
committerPatrik Gustavsson <patrik.gustavsson@arm.com>2020-11-06 08:34:25 +0100
commitfad90c2db9e1b3f19f3a3700b17cf69ed08aea04 (patch)
tree5fbdec33e86721fea95efbf8236052fdf0c0c88d /ethosu/vela/compiler_driver.py
parent65fd99830a762b2c59aaa446b55cbfa43a92f8ba (diff)
downloadethos-u-vela-fad90c2db9e1b3f19f3a3700b17cf69ed08aea04.tar.gz
MLBEDSW-3212 Remove CLI opt ifm-ofm-overlap
Removed the CLI opt ifm-ofm-overlap Signed-off-by: Patrik Gustavsson <patrik.gustavsson@arm.com> Change-Id: I23faa0d10c3e71972c543e22e8155086fce73556
Diffstat (limited to 'ethosu/vela/compiler_driver.py')
-rw-r--r--ethosu/vela/compiler_driver.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/ethosu/vela/compiler_driver.py b/ethosu/vela/compiler_driver.py
index 1d7521b1..9263305a 100644
--- a/ethosu/vela/compiler_driver.py
+++ b/ethosu/vela/compiler_driver.py
@@ -194,7 +194,6 @@ def compiler_driver(nng, arch, options, scheduler_options):
arch,
permanent_storage,
set((MemType.Permanent_NPU,)),
- use_ifm_ofm_overlap=scheduler_options.use_ifm_ofm_overlap,
tensor_allocator=TensorAllocator.LinearAlloc,
verbose_allocation=options.verbose_allocation,
show_minimum_possible_allocation=options.show_minimum_possible_allocation,
@@ -232,7 +231,6 @@ def compiler_driver(nng, arch, options, scheduler_options):
arch,
mem_area,
mem_type_set,
- use_ifm_ofm_overlap=scheduler_options.use_ifm_ofm_overlap,
tensor_allocator=options.tensor_allocator,
verbose_allocation=options.verbose_allocation,
show_minimum_possible_allocation=options.show_minimum_possible_allocation,
@@ -259,7 +257,6 @@ def compiler_driver(nng, arch, options, scheduler_options):
mem_type_set,
max_size=arch.sram_size,
dry_test=dry_test,
- use_ifm_ofm_overlap=scheduler_options.use_ifm_ofm_overlap,
tensor_allocator=options.tensor_allocator,
verbose_allocation=options.verbose_allocation,
show_minimum_possible_allocation=options.show_minimum_possible_allocation,
@@ -305,7 +302,6 @@ def compiler_driver(nng, arch, options, scheduler_options):
arch,
permanent_storage,
set((MemType.Permanent_CPU,)),
- use_ifm_ofm_overlap=scheduler_options.use_ifm_ofm_overlap,
tensor_allocator=TensorAllocator.LinearAlloc,
verbose_allocation=options.verbose_allocation,
show_minimum_possible_allocation=options.show_minimum_possible_allocation,