From 238799816204c0f3995b3d64bd6ac2deebe32fc4 Mon Sep 17 00:00:00 2001 From: Christopher Date: Fri, 5 Nov 2021 14:46:55 +0800 Subject: [PATCH 1/2] Detailed Biginner tutorial Detailed Biginner tutorial for easy use --- docs/how-to-build-and-run/run-in-15-minutes.zh.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/how-to-build-and-run/run-in-15-minutes.zh.md b/docs/how-to-build-and-run/run-in-15-minutes.zh.md index 81f46ce..fccb955 100644 --- a/docs/how-to-build-and-run/run-in-15-minutes.zh.md +++ b/docs/how-to-build-and-run/run-in-15-minutes.zh.md @@ -50,12 +50,19 @@ megvii ## Python“开机自检” +### 下载 MegFlow 源码(需要使用到flow-python/examples中文件) +```bash +git clone https://github.com/MegEngine/Models.git +``` + +### 运行“开机自检” ```bash $ cd ${MegFlow_PATH}/flow-python/examples # 这行必须 $ run_with_plugins -p logical_test ``` `logical_test` 是 examples 下最基础的计算图测试用例,运行能正常结束表示 MegFlow 编译成功、基本语义无问题。 +目前版本输出为 logical_test pass 即为正确 此处常见问题:`error while loading shared libraries: libpython3.8.xxx`。如果使用 conda 只需要 ```bash From 33c03ebbf9ce7b088a771a8206942ab1b56ce634 Mon Sep 17 00:00:00 2001 From: tpoisonooo Date: Mon, 8 Nov 2021 17:32:51 +0800 Subject: [PATCH 2/2] Update run-in-15-minutes.zh.md add '$' in bash --- docs/how-to-build-and-run/run-in-15-minutes.zh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to-build-and-run/run-in-15-minutes.zh.md b/docs/how-to-build-and-run/run-in-15-minutes.zh.md index fccb955..fd4f314 100644 --- a/docs/how-to-build-and-run/run-in-15-minutes.zh.md +++ b/docs/how-to-build-and-run/run-in-15-minutes.zh.md @@ -52,7 +52,7 @@ megvii ### 下载 MegFlow 源码(需要使用到flow-python/examples中文件) ```bash -git clone https://github.com/MegEngine/Models.git +$ git clone https://github.com/MegEngine/Models.git ``` ### 运行“开机自检”