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

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

9
python gen_doc.py --module_name "" --module_prefix "" --output fluid --output_name fluid --to_multiple_files True
T
tianshuo78520a 已提交
10
python gen_module_index.py fluid  fluid
Z
Zeng Jinle 已提交
11

Y
Yibing Liu 已提交
12
for module in math random stat
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
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

python gen_module_index.py tensor paddle.tensor

for module in loss
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_module_index.py nn paddle.nn

28
for module in math manipulation
29 30 31 32 33 34 35 36
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

python gen_module_index.py complex.tensor tensor
python gen_module_index.py complex paddle.complex

Z
Zeng Jinle 已提交
37
python gen_index.py
Z
Zeng Jinle 已提交
38