diff --git a/tutorials/lite/source_en/use/build.md b/tutorials/lite/source_en/use/build.md index 626e69d8b7bad67f4991c7ee961b7e0cae4457bb..500d878854bf32169fc194c4db6a84c019eda008 100644 --- a/tutorials/lite/source_en/use/build.md +++ b/tutorials/lite/source_en/use/build.md @@ -196,17 +196,22 @@ The inference framework can be obtained under `-I x86_64`, `-I arm64` and `-I ar The image processing library is only available under the `-I arm64 -n lite_cv` compilation option, and the content includes the following parts: -``` +```text | -├── mindspore-lite-{version}-minddata-{os}-{device} -│ └── benchmark # Benchmarking Tool -│ └── include # Head file(Only show files related to image processing) -│ ├── lite_cv # Image processing library header file -│ ├── image_process.h # Image processing function header file -│ ├── lite_mat.h # Image data class structure header file -│ └── lib # Dynamic library(Only show files related to image processing) -│ ├── libminddata-lite.so # Image processing dynamic library +├── mindspore-lite-{version}-runtime-{os}-cpu +│ └── benchmark # Benchmarking Tool +│ └── include # Header files (Image processing files are not involved here, and will not be displayed) +│ └── lib # Inference framework dynamic library +│ ├── libmindspore-lite.so # Dynamic library of infernece framework in MindSpore Lite +│ ├── libmindspore-lite-fp16.so # Operator performance optimization library supports float16 in MindSpore Lite +│ ├── libmindspore-lite-optimize.so # Operator performance optimization library supports dotprod instruction in MindSpore Lite +│ └── minddata # Image processing dynamic library +│ └── include # Header files +│ └── lite_cv # The Header files of image processing dynamic library +│ ├── image_process.h # The Header files of image processing function +│ ├── lite_mat.h # The Header files of image data class structure +│ └── lib # Image processing dynamic library +│ ├── libminddata-lite.so # The files of image processing dynamic library │ └── third_party # Third-party Iibrary header files and libraries -│ ├── flatbuffers # Header files of FlatBuffers -│ └── time_profiler # Model network layer time-consuming analysis tool +│ ├── flatbuffers # The Header files of FlatBuffers ``` diff --git a/tutorials/lite/source_zh_cn/use/build.md b/tutorials/lite/source_zh_cn/use/build.md index 1e52d193d77b0f7b29015dd59b37491ba3a10c40..a0480d874304a3205d17964d7dc9c84dd163bcc0 100644 --- a/tutorials/lite/source_zh_cn/use/build.md +++ b/tutorials/lite/source_zh_cn/use/build.md @@ -197,17 +197,22 @@ tar -xvf mindspore-lite-{version}-minddata-{os}-{device}.tar.gz 图像处理库在`-I arm64 -n lite_cv`编译选项下获得,内容包括以下几部分: -``` +```text | -├── mindspore-lite-{version}-minddata-{os}-{device} -│ └── benchmark # 基准测试工具 -│ └── include # 头文件(此处只展示和图像处理相关的文件) -│ ├── lite_cv # 图像处理库头文件 -│ ├── image_process.h # 图像处理函数头文件 -│ ├── lite_mat.h # 图像数据类结构头文件 -│ └── lib # 动态库(此处只展示和图像处理相关的文件) -│ ├── libminddata-lite.so # 图像处理动态库 +├── mindspore-lite-{version}-runtime-{os}-cpu +│ └── benchmark # 基准测试工具 +│ └── include # 头文件(此处不涉及图像处理文件,不做展示) +│ └── lib # 推理框架态库 +│ ├── libmindspore-lite.so # MindSpore Lite推理框架的动态库 +│ ├── libmindspore-lite-fp16.so # MindSpore Lite Float16算子性能优化库 +│ ├── libmindspore-lite-optimize.so # MindSpore Lite量化算子性能优化库 +│ └── minddata # 图像处理动态库 +│ └── include # 头文件 +│ └── lite_cv # 图像处理库头文件 +│ ├── image_process.h # 图像处理函数头文件 +│ ├── lite_mat.h # 图像数据类结构头文件 +│ └── lib # 图像处理动态库 +│ ├── libminddata-lite.so # 图像处理动态库文件 │ └── third_party # 第三方库头文件和库 │ ├── flatbuffers # Flatbuffers的动态库 -│ └── time_profiler # 模型网络层耗时分析工具 ```