diff --git a/docs/source_en/architecture.md b/docs/source_en/architecture.md index dd36332354e44a74e27eeb4e60232cfad9bd03c8..42acdd6c3b35bd0947dbd14c9e3ee49a2b4072c8 100644 --- a/docs/source_en/architecture.md +++ b/docs/source_en/architecture.md @@ -8,6 +8,8 @@ This document describes the overall architecture of MindSpore. +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_en/architecture.md) + The MindSpore framework consists of the Frontend Expression layer, Graph Engine layer, and Backend Runtime layer. ![architecture](./images/architecture.png) diff --git a/docs/source_en/benchmark.md b/docs/source_en/benchmark.md index b1de5b03aaaf5e872964ae9843718e666fdae505..312ee914a7a4544b0b7897150203e41a503c71e2 100644 --- a/docs/source_en/benchmark.md +++ b/docs/source_en/benchmark.md @@ -1,5 +1,7 @@ # Benchmarks +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_en/benchmark.md) + This document describes the MindSpore benchmarks. For details about the MindSpore pre-trained model, see [Model Zoo](https://gitee.com/mindspore/mindspore/tree/master/mindspore/model_zoo). diff --git a/docs/source_en/constraints_on_network_construction.md b/docs/source_en/constraints_on_network_construction.md index 85f41e6af49ecc594befdec0d63a62737d6a1b29..a2c8ec8b450135bfd0256dd844b054bd18bae918 100644 --- a/docs/source_en/constraints_on_network_construction.md +++ b/docs/source_en/constraints_on_network_construction.md @@ -23,6 +23,8 @@ +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_en/constraints_on_network_construction.md) + ## Overview MindSpore can compile user source code based on the Python syntax into computational graphs, and can convert common functions or instances inherited from nn.Cell into computational graphs. Currently, MindSpore does not support conversion of any Python source code into computational graphs. Therefore, there are constraints on source code compilation, including syntax constraints and network definition constraints. As MindSpore evolves, the constraints may change. diff --git a/docs/source_en/glossary.md b/docs/source_en/glossary.md index 703328b85a6b336b306db9a1b24dfa45621ce11e..fe20c0efa06cc570d45434de4a34a1083782e9f1 100644 --- a/docs/source_en/glossary.md +++ b/docs/source_en/glossary.md @@ -6,6 +6,8 @@ +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_en/glossary.md) + | Acronym and Abbreviation | Description | | ----- | ----- | | Ascend | Name of Huawei Ascend series chips. | diff --git a/docs/source_en/operator_list.md b/docs/source_en/operator_list.md index 57f614ef36d050030b945439e868f02d9e074a19..0239aeee3ca97b89da3fcb212549c29e8cfce3e8 100644 --- a/docs/source_en/operator_list.md +++ b/docs/source_en/operator_list.md @@ -8,6 +8,8 @@ +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_en/operator_list.md) + ## mindspore.nn | Operation | Ascend | GPU | CPU |Operator Type diff --git a/docs/source_en/roadmap.md b/docs/source_en/roadmap.md index 3f0ef7f1f02af4129935cea3e2e40d9c01dd76ed..2bf7935fc8c2b90404db26ab88ab6b899239ba2b 100644 --- a/docs/source_en/roadmap.md +++ b/docs/source_en/roadmap.md @@ -14,6 +14,8 @@ MindSpore's top priority plans in the year are displayed as follows. We will con +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_en/roadmap.md) + In general, we will make continuous improvements in the following aspects: 1. Support more preset models. diff --git a/docs/source_zh_cn/architecture.md b/docs/source_zh_cn/architecture.md index dc3446797a136cc45e05398485f2099a792748d0..8ed56ccc79125507b6d493835bdcd3ef4989cead 100644 --- a/docs/source_zh_cn/architecture.md +++ b/docs/source_zh_cn/architecture.md @@ -8,6 +8,8 @@ +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_zh_cn/architecture.md) + MindSpore框架架构总体分为MindSpore前端表示层、MindSpore计算图引擎和MindSpore后端运行时三层。 ![architecture](./images/architecture.png) diff --git a/docs/source_zh_cn/benchmark.md b/docs/source_zh_cn/benchmark.md index 0b486617ec6bf0e6ffe5bb34af2a61fdcfb71748..267c8e84659c7594a16bcaa329976c000df57111 100644 --- a/docs/source_zh_cn/benchmark.md +++ b/docs/source_zh_cn/benchmark.md @@ -1,5 +1,7 @@ # 基准性能 +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_zh_cn/benchmark.md) + 本文介绍MindSpore的基准性能。MindSpore预训练模型可参考[Model Zoo](https://gitee.com/mindspore/mindspore/tree/master/mindspore/model_zoo)。 ## 训练性能 diff --git a/docs/source_zh_cn/constraints_on_network_construction.md b/docs/source_zh_cn/constraints_on_network_construction.md index 4377e0cb6b1286cbe1a9100f08dd8e4648a59074..4dcf37fdd70e6c0be2eb01da91d3a6f6ea354746 100644 --- a/docs/source_zh_cn/constraints_on_network_construction.md +++ b/docs/source_zh_cn/constraints_on_network_construction.md @@ -23,6 +23,8 @@ +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_zh_cn/constraints_on_network_construction.md) + ## 概述 MindSpore完成从用户源码到计算图的编译,用户源码基于Python语法编写,当前MindSpore支持将普通函数或者继承自nn.Cell的实例转换生成计算图,暂不支持将任意Python源码转换成计算图,所以对于用户源码支持的写法有所限制,主要包括语法约束和网络定义约束两方面。随着MindSpore的演进,这些约束可能会发生变化。 diff --git a/docs/source_zh_cn/glossary.md b/docs/source_zh_cn/glossary.md index d5fb6ef6d87796e71696d6b8fc55c54c4ff5f33b..265ff2d67d1aa48f894a7fc4cd32e7f530de584d 100644 --- a/docs/source_zh_cn/glossary.md +++ b/docs/source_zh_cn/glossary.md @@ -6,6 +6,8 @@ +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_zh_cn/glossary.md) + | 术语/缩略语 | 说明 | | ----- | ----- | | Ascend | 华为昇腾系列芯片的系列名称。 | diff --git a/docs/source_zh_cn/operator_list.md b/docs/source_zh_cn/operator_list.md index 356378f8fcb03a9be8686c1c4f955e286af1675b..eecbb8cf804fac24e07f42bb02a7bf829ac42b90 100644 --- a/docs/source_zh_cn/operator_list.md +++ b/docs/source_zh_cn/operator_list.md @@ -8,6 +8,8 @@ +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_zh_cn/operator_list.md) + ## mindspore.nn | 操作名 | Ascend | GPU | CPU |算子类别 diff --git a/docs/source_zh_cn/roadmap.md b/docs/source_zh_cn/roadmap.md index f5669ccbd2407cc0f4ac0676e83ea9ce3c214707..9cad947bb0cde3cec1b14be7c6523d1ca442f4cc 100644 --- a/docs/source_zh_cn/roadmap.md +++ b/docs/source_zh_cn/roadmap.md @@ -23,6 +23,8 @@ +[![source](/resource/logo_source.png)](https://gitee.com/mindspore/docs/blob/master/docs/source_zh_cn/roadmap.md) + ## 预置模型 * CV:目标检测、GAN、图像分割、姿态识别等场景经典模型。 * NLP:RNN、Transformer类型神经网络,拓展基于Bert预训练模型的应用。 diff --git a/resource/logo_source.png b/resource/logo_source.png new file mode 100644 index 0000000000000000000000000000000000000000..7240ef4e5e49b975bb70dd3d27ae9f273f7e2172 Binary files /dev/null and b/resource/logo_source.png differ