aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/api.py
diff options
context:
space:
mode:
authorAlexander Hansson <Alexander.Hansson@arm.com>2023-06-22 16:01:27 +0000
committertim.hall <tim.hall@arm.com>2023-07-11 08:51:15 +0000
commitca9cc420984eba39b85885bf0d2d7b48bb920da9 (patch)
treea938cfe68a16cbe38574eed6b8726af38c073a67 /ethosu/vela/api.py
parent8df91f5b0ef5f270cbe848d8cebb5bf31ac4a088 (diff)
downloadethos-u-vela-ca9cc420984eba39b85885bf0d2d7b48bb920da9.tar.gz
MLBEDSW-7728: Fix DMA_WAITs in register_command_stream_generator
* Fix bug in register_command_stream_generator where certain high-level command streams resulted in missing DMA_WAIT commands * Add unit-tests for DMA_WAIT and KERNEL_WAIT commands Signed-off-by: Alexander Hansson <Alexander.Hansson@arm.com> Change-Id: Iabb3ea3e95fa1ef933c50356d047b6b3f5aeafe3
Diffstat (limited to 'ethosu/vela/api.py')
-rw-r--r--ethosu/vela/api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethosu/vela/api.py b/ethosu/vela/api.py
index cacadf61..589a2834 100644
--- a/ethosu/vela/api.py
+++ b/ethosu/vela/api.py
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: Copyright 2020-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+# SPDX-FileCopyrightText: Copyright 2020-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
#
# SPDX-License-Identifier: Apache-2.0
#
@@ -27,7 +27,7 @@ import numpy
API_VERSION_MAJOR = 1
-API_VERSION_MINOR = 3
+API_VERSION_MINOR = 4
API_VERSION = f"{API_VERSION_MAJOR}.{API_VERSION_MINOR}"