diff --git a/doc/fluid/api/gen_doc.sh b/doc/fluid/api/gen_doc.sh index e41d1094adb5d8881c3dbd3ebc354a4ecf7864e6..838ab4e0e2400c7f98922bfbaf13ce4d0e16b6a6 100644 --- a/doc/fluid/api/gen_doc.sh +++ b/doc/fluid/api/gen_doc.sh @@ -9,6 +9,15 @@ done python gen_doc.py --module_name "" --module_prefix "" --output fluid --output_name fluid --to_multiple_files True python gen_module_index.py fluid fluid +for module in fleet +do + python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name distributed --to_multiple_files True + python gen_module_index.py ${module} distributed.${module} +done + +python gen_doc.py --module_name "" --module_prefix "" --output distributed --output_name distributed --to_multiple_files True +python gen_module_index.py distributed distributed + for module in meta_optimizers metrics dataset runtime utils do python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name fleet --to_multiple_files True