From 6fa6915c2a8d3433f76706b3e9f5024d55ecf96a Mon Sep 17 00:00:00 2001 From: dongdaxiang Date: Mon, 17 Aug 2020 15:18:14 +0800 Subject: [PATCH] add distributed --- doc/fluid/api/gen_doc.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/fluid/api/gen_doc.sh b/doc/fluid/api/gen_doc.sh index e41d1094a..838ab4e0e 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 -- GitLab