From ba58e635696541b7a561f9daf4dc3e71ea81e01e Mon Sep 17 00:00:00 2001 From: dongdaxiang Date: Mon, 17 Aug 2020 14:48:10 +0800 Subject: [PATCH] add fleet doc tree --- 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 f30d55608..e41d1094a 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 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 + python gen_module_index.py ${module} fleet.${module} +done + +python gen_doc.py --module_name "" --module_prefix "" --output fleet --output_name fleet --to_multiple_files True +python gen_module_index.py fleet fleet + # tensor for module in math random stat linalg search do -- GitLab