gen_doc.sh 1.7 KB
Newer Older
W
Wang,Jeff 已提交
1
#!/bin/bash
Z
Zeng Jinle 已提交
2

L
summary  
LielinJiang 已提交
3 4 5 6 7
# for module in layers dataset clip metrics executor initializer io nets optimizer profiler regularizer transpiler backward profiler unique_name dygraph framework
# do
#   python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name fluid --to_multiple_files True
#   python gen_module_index.py ${module}  fluid.${module}
# done
W
Wang,Jeff 已提交
8

L
summary  
LielinJiang 已提交
9 10
# python gen_doc.py --module_name "" --module_prefix "" --output fluid --output_name fluid --to_multiple_files True
# python gen_module_index.py fluid  fluid
Z
Zeng Jinle 已提交
11

L
summary  
LielinJiang 已提交
12 13 14 15 16 17
# # tensor
# for module in math random stat linalg search
# do
#   python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name tensor --to_multiple_files True --output_dir tensor
#   python gen_module_index.py tensor.${module} ${module}
# done
18

L
summary  
LielinJiang 已提交
19
# python gen_module_index.py tensor paddle.tensor
20

L
summary  
LielinJiang 已提交
21 22 23 24 25
# for module in math manipulation linalg
# do
#   python gen_doc.py --module_name tensor.${module} --module_prefix tensor.${module} --output tensor/${module} --output_name complex --to_multiple_files True --output_dir complex
#   python gen_module_index.py complex.tensor.${module} ${module}
# done
26

L
summary  
LielinJiang 已提交
27 28 29
# python gen_module_index.py complex.tensor tensor
# python gen_module_index.py complex paddle.complex
# python gen_module_index.py framework paddle.framework
0
0YuanZhang0 已提交
30

31

T
tianshuo78520a 已提交
32
# nn
L
summary  
LielinJiang 已提交
33
for module in layer #loss activation
T
tianshuo78520a 已提交
34 35 36 37 38 39 40 41 42
do
  python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name nn --to_multiple_files True --output_dir nn
  python gen_module_index.py nn.${module} ${module}
done

python gen_doc.py --module_name "" --module_prefix "" --output nn --output_name nn --to_multiple_files True
python gen_module_index.py nn paddle.nn

# index.rst
Z
Zeng Jinle 已提交
43
python gen_index.py
Z
Zeng Jinle 已提交
44