From 544227ef40dc226707d2c97b41cf0ee0b6111d39 Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Mon, 13 Feb 2023 16:19:34 -0800 Subject: Add enumerations to TOSA specification Currently used by RESIZE and AVG_POOL2D Change-Id: I4f401ac092fcf426e6d57b3729943135f634a31e Signed-off-by: Eric Kunze --- tools/get_descriptions.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tools/get_descriptions.py') diff --git a/tools/get_descriptions.py b/tools/get_descriptions.py index 0a39a19..2f29879 100755 --- a/tools/get_descriptions.py +++ b/tools/get_descriptions.py @@ -49,5 +49,7 @@ for name in args.filenames: # skip comments elif re.match(r"\w*\/\/", text): continue + elif re.match(r"include::", text): + continue else: print(text) -- cgit v1.2.1