From 44a13479195a591b436d28efada8953b3cff36ba Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Thu, 12 Aug 2021 11:01:14 -0700 Subject: Add FFT operators to MI/MT profiles Adds FFT2D for complex->complex FFT Adds RFFT2D for real->complex FFT Change-Id: Id50f96b8f66f17c3020767c002f0c1f41a76d62e Signed-off-by: Eric Kunze --- tools/get_descriptions.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools/get_descriptions.py') diff --git a/tools/get_descriptions.py b/tools/get_descriptions.py index 3f2ee05..beded87 100755 --- a/tools/get_descriptions.py +++ b/tools/get_descriptions.py @@ -49,5 +49,8 @@ for name in args.filenames: # not useful there if re.match(r'[\[\*]', text): in_description = False + # skip comments + elif re.match(r'\w*\/\/', text): + continue else: print(text) -- cgit v1.2.1