aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/test
diff options
context:
space:
mode:
authorTim Hall <tim.hall@arm.com>2021-08-06 13:51:34 +0100
committertim.hall <tim.hall@arm.com>2021-08-11 12:22:46 +0000
commit53c6245a2b07dbe972d664b65faea61acd6a5980 (patch)
tree419250d1c0dc9515e04ea696cb495eec0f504a40 /ethosu/vela/test
parentd15866c06c88b9ec2e6313cc19f89ea65b528f8a (diff)
downloadethos-u-vela-53c6245a2b07dbe972d664b65faea61acd6a5980.tar.gz
vela: Fix Ethos-U65 maximum address range
- Changed Ethos-65 AXI port address width from 48 to 40-bits - Fixed the use of arena_cache_size in mem_type_size() to cover the arena as well as the cache memory area Signed-off-by: Tim Hall <tim.hall@arm.com> Change-Id: I826462a0cbd0c061cccbc7c83dde446778a2b1ca
Diffstat (limited to 'ethosu/vela/test')
-rw-r--r--ethosu/vela/test/extapi/test_extapi_generate_commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethosu/vela/test/extapi/test_extapi_generate_commands.py b/ethosu/vela/test/extapi/test_extapi_generate_commands.py
index ee134300..a520789b 100644
--- a/ethosu/vela/test/extapi/test_extapi_generate_commands.py
+++ b/ethosu/vela/test/extapi/test_extapi_generate_commands.py
@@ -380,11 +380,11 @@ def test_check_mem_limits():
npu_generate_register_command_stream([conv_op], NpuAccelerator.Ethos_U65_512)
# weights with end address out of range
conv_op = create_fully_connected_op()
- conv_op.weights = [NpuAddressRange(region=0, address=(1 << 48) - 960, length=1000)]
+ conv_op.weights = [NpuAddressRange(region=0, address=(1 << 40) - 960, length=1000)]
with pytest.raises(VelaError):
npu_generate_register_command_stream([conv_op], NpuAccelerator.Ethos_U65_256)
# bias with high end address, but still within range
- addr = (1 << 48) - 1024
+ addr = (1 << 40) - 1024
conv_op = create_fully_connected_op()
conv_op.biases = [NpuAddressRange(region=0, address=addr, length=1000)]
cmds = npu_generate_register_command_stream([conv_op], NpuAccelerator.Ethos_U65_512)