aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/vela.py
diff options
context:
space:
mode:
authorTim Hall <tim.hall@arm.com>2023-05-17 13:19:12 +0100
committerTim Hall <tim.hall@arm.com>2023-05-17 16:38:59 +0100
commitfd27111b17fe57163cd82bfe52fac2ba1aec1013 (patch)
tree5f84141a9604bcecbd93998f6374be9015039bcd /ethosu/vela/vela.py
parente8fc214481bdbe1c80613b3f3a471c135038560e (diff)
downloadethos-u-vela-fd27111b17fe57163cd82bfe52fac2ba1aec1013.tar.gz
MLBEDSW-7494: Update release notes3.8.0.rc2
- Added release information - Minor changes to SUPPORTED_OPS.md including version info Change-Id: I91fae4c40c6c1f25b874268b18d077a9babd4875 Signed-off-by: Tim Hall <tim.hall@arm.com>
Diffstat (limited to 'ethosu/vela/vela.py')
-rw-r--r--ethosu/vela/vela.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/ethosu/vela/vela.py b/ethosu/vela/vela.py
index 0e5e6eba..078f4a41 100644
--- a/ethosu/vela/vela.py
+++ b/ethosu/vela/vela.py
@@ -19,7 +19,6 @@
#
# Provides command line interface, options parsing, and network loading. Before calling the compiler driver.
import argparse
-import datetime
import glob
import os
import sys
@@ -179,8 +178,7 @@ def print_subgraph_io_summary(nng):
def generate_license():
lines = [
"<!--",
- f"SPDX-FileCopyrightText: Copyright 2020-{datetime.date.today().year} "
- "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",
"",
@@ -196,6 +194,7 @@ def generate_license():
"See the License for the specific language governing permissions and",
"limitations under the License.",
"-->",
+ "",
]
return lines