From b26077542b5c652d4e281d45d6ad43af2bac44e4 Mon Sep 17 00:00:00 2001 From: LMNP <2976975407@qq.com> Date: Thu, 26 Mar 2026 21:09:21 +0800 Subject: [PATCH 1/2] fix: update broken links for tasks #25 and #55 in issue #7735 --- docs/design/motivation/fluid.md | 2 +- docs/faq/index_cn.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/design/motivation/fluid.md b/docs/design/motivation/fluid.md index b4b0c1f3612..67a0a0cc7da 100644 --- a/docs/design/motivation/fluid.md +++ b/docs/design/motivation/fluid.md @@ -135,6 +135,6 @@ Fluid is moving towards the direction of a compiler, which is explain in [fluid_ ## Backward Compatibility of Fluid -Given all the advantages from the removal of the concept of a *model*, hardware manufacturers might still prefer the existence of the concept of a model, so it would be easier for them to support multiple frameworks all at once and could run a trained model during inference. For example, Nervana, a startup company acquired by Intel, has been working on an XPU that reads the models in the format known as [n-graph](https://github.com/NervanaSystems/ngraph). Similarly, [Movidius](https://www.movidius.com/) is producing a mobile deep learning chip that reads and runs graphs of operators. The well-known [ONNX](https://github.com/onnx/onnx) is also a file format of graphs of operators. +Given all the advantages from the removal of the concept of a *model*, hardware manufacturers might still prefer the existence of the concept of a model, so it would be easier for them to support multiple frameworks all at once and could run a trained model during inference. For example, Nervana, a startup company acquired by Intel, has been working on an XPU that reads the models in the format known as [n-graph](https://github.com/NervanaSystems/ngraph). Similarly, [Movidius](https://www.intel.com/content/www/us/en/products/details/processors/core-ultra.html) is producing a mobile deep learning chip that reads and runs graphs of operators. The well-known [ONNX](https://github.com/onnx/onnx) is also a file format of graphs of operators. For Fluid, we can write a converter that extracts the parts in the `ProgramDesc` protobuf message, converts them into a graph of operators, and exports the graph into the ONNX or n-graph format. diff --git a/docs/faq/index_cn.rst b/docs/faq/index_cn.rst index 5ca36d0f7c2..66978bc4aa8 100644 --- a/docs/faq/index_cn.rst +++ b/docs/faq/index_cn.rst @@ -4,7 +4,7 @@ 本栏目以问答对的形式收录了用户开发过程中遇到的高频咨询类问题,包含了 2.0 版本的变化、安装、数据与数据处理、模型组网、训练、预测、模型保存与加载、参数调整、分布式等几类常见问题。 -除此之外,你也可以查看 `官网 API 文档 `_ 、 `历史 Issues `_ 、 `飞桨论坛 `_ 来寻求解答。 +除此之外,你也可以查看 `官网 API 文档 `_ 、 `历史 Issues `_ 、 `飞桨论坛 `_ 来寻求解答。 同时,你也可以在 `Github Issues `_ 中进行提问,飞桨会有专门的技术人员解答。 From 99aa9e6b100e48058632b313e091b7b5ff490fc0 Mon Sep 17 00:00:00 2001 From: LMNP <2976975407@qq.com> Date: Fri, 27 Mar 2026 23:57:39 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix=20#7735:=20=E4=BF=AE=E5=A4=8D=E5=A4=B1?= =?UTF-8?q?=E6=95=88=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/design/motivation/fluid.md | 4 ++-- docs/faq/index_cn.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/design/motivation/fluid.md b/docs/design/motivation/fluid.md index 67a0a0cc7da..3326e8f672b 100644 --- a/docs/design/motivation/fluid.md +++ b/docs/design/motivation/fluid.md @@ -123,7 +123,7 @@ We have more examples of the [`if-then-else`](https://github.com/PaddlePaddle/do ## Turing Completeness -In computability theory, a system of data-manipulation rules, such as a programming language, is said to be Turing complete if it can be used to simulate any Turing machine. For a programming language, if it provides if-then-else and loop, it is Turing complete. From the above examples, Fluid seems to be Turing complete; however, it is noteworthy to notice that there is a slight difference between the `if-then-else` of Fluid and that of a programming language. The difference being that the former runs both of its branches and splits the input mini-batch into two -- one for the True condition and another for the False condition. This hasn't been researched in depth if this is equivalent to the `if-then-else` in programming languages that makes them Turing-complete. Based on a conversation with [Yuang Yu](https://research.google.com/pubs/104812.html), it seems to be the case but this needs to be looked into in-depth. +In computability theory, a system of data-manipulation rules, such as a programming language, is said to be Turing complete if it can be used to simulate any Turing machine. For a programming language, if it provides if-then-else and loop, it is Turing complete. From the above examples, Fluid seems to be Turing complete; however, it is noteworthy to notice that there is a slight difference between the `if-then-else` of Fluid and that of a programming language. The difference being that the former runs both of its branches and splits the input mini-batch into two -- one for the True condition and another for the False condition. This hasn't been researched in depth if this is equivalent to the `if-then-else` in programming languages that makes them Turing-complete. Based on a conversation with Yuang Yu, it seems to be the case but this needs to be looked into in-depth. ## The Execution of a Fluid Program @@ -135,6 +135,6 @@ Fluid is moving towards the direction of a compiler, which is explain in [fluid_ ## Backward Compatibility of Fluid -Given all the advantages from the removal of the concept of a *model*, hardware manufacturers might still prefer the existence of the concept of a model, so it would be easier for them to support multiple frameworks all at once and could run a trained model during inference. For example, Nervana, a startup company acquired by Intel, has been working on an XPU that reads the models in the format known as [n-graph](https://github.com/NervanaSystems/ngraph). Similarly, [Movidius](https://www.intel.com/content/www/us/en/products/details/processors/core-ultra.html) is producing a mobile deep learning chip that reads and runs graphs of operators. The well-known [ONNX](https://github.com/onnx/onnx) is also a file format of graphs of operators. +Given all the advantages from the removal of the concept of a *model*, hardware manufacturers might still prefer the existence of the concept of a model, so it would be easier for them to support multiple frameworks all at once and could run a trained model during inference. For example, Nervana, a startup company acquired by Intel, has been working on an XPU that reads the models in the format known as [n-graph](https://github.com/NervanaSystems/ngraph). Similarly, [Movidius](https://www.intel.com/content/www/us/en/developer/topic-technology/edge-5g/hardware/vision-accelerator-movidius-vpu.html) is producing a mobile deep learning chip that reads and runs graphs of operators. The well-known [ONNX](https://github.com/onnx/onnx) is also a file format of graphs of operators. For Fluid, we can write a converter that extracts the parts in the `ProgramDesc` protobuf message, converts them into a graph of operators, and exports the graph into the ONNX or n-graph format. diff --git a/docs/faq/index_cn.rst b/docs/faq/index_cn.rst index 66978bc4aa8..49730f8fe36 100644 --- a/docs/faq/index_cn.rst +++ b/docs/faq/index_cn.rst @@ -4,7 +4,7 @@ 本栏目以问答对的形式收录了用户开发过程中遇到的高频咨询类问题,包含了 2.0 版本的变化、安装、数据与数据处理、模型组网、训练、预测、模型保存与加载、参数调整、分布式等几类常见问题。 -除此之外,你也可以查看 `官网 API 文档 `_ 、 `历史 Issues `_ 、 `飞桨论坛 `_ 来寻求解答。 +除此之外,你也可以查看 `官网 API 文档 `_ 、 `历史 Issues `_ 、 `飞桨论坛 `_ 来寻求解答。 同时,你也可以在 `Github Issues `_ 中进行提问,飞桨会有专门的技术人员解答。