aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/dictionary.dic6
-rwxr-xr-xtools/get_descriptions.py3
2 files changed, 9 insertions, 0 deletions
diff --git a/tools/dictionary.dic b/tools/dictionary.dic
index 94ef782..29be61e 100644
--- a/tools/dictionary.dic
+++ b/tools/dictionary.dic
@@ -20,10 +20,14 @@ CPUs
denormalizing
DEPTHWISE
Elementwise
+FFT
+fft
foreach
Fulbourn
GPUs
Hadamard
+Hermitian
+imag
INTDIV
licence
Licence
@@ -49,12 +53,14 @@ README
Rescale
RESCALE
rescaled
+RFFT
RSQRT
sigmoid
Sigmoid
SIGMOID
SIMD
subtensor
+svg
tanh
TANH
TensorFlow
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)