Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
- id: remove-tabs
types: [text]
- repo: https://github.com/PFCCLab/typos-pre-commit-mirror.git
rev: v1.39.2
rev: v1.40.0
hooks:
- id: typos
args: [--force-exclude]
Expand Down
10 changes: 4 additions & 6 deletions _typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ extend-ignore-words-re = ["^[a-zA-Z]{1,3}$"]
# refer to https://github.com/crate-ci/typos/blob/master/docs/reference.md#example-configurations
extend-ignore-re = [
# Ignore lines by `# typos: disable-line`
"(?Rm)^.*(#|//)\\s*typos:\\s*disable-line$",
"(?Rm)^.*(#|//|<!--)\\s*typos:\\s*disable-line\\s*(?:-->)?$",
# Ignore block by `# typos: off` and `# typos: on`
"(?s)(#|//)\\s*typos:\\s*off.*?\\n\\s*(#|//)\\s*typos:\\s*on"
"(?s)(#|//)\\s*typos:\\s*off.*?\\n\\s*(#|//)\\s*typos:\\s*on",
# Next-line ignore # typos:ignore-next-line
"(#|//|<!--)\\s*typos:ignore-next-line\\s*(?:-->)?\\n.*"
]

[default.extend-words]
Expand All @@ -23,10 +25,6 @@ CANN = "CANN"
Clas = "Clas"
arange = "arange"
unsupport = "unsupport"
Nervana = "Nervana"
datas = "datas"
feeded = "feeded"

# These words need to be fixed
softwares = "softwares"
splitted = "splitted"
2 changes: 1 addition & 1 deletion docs/design/motivation/fluid.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.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. <!-- typos: disable-line -->

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.
2 changes: 1 addition & 1 deletion docs/install/pip/windows-pip.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@

* 请确认需要安装 PaddlePaddle 的 Python 是您预期的位置,因为您计算机可能有多个 Python。根据您的环境您可能需要将说明中所有命令行中的 python 替换为具体的 Python 路径。

* 上述命令默认安装`avx`、`mkl`的包。判断你的机器是否支持`avx`,可以安装[CPU-Z](https://www.cpuid.com/softwares/cpu-z.html)工具查看“处理器-指令集”。飞桨不再支持`noavx`指令集的安装包。
* 上述命令默认安装`avx`、`mkl`的包。判断你的机器是否支持`avx`,可以安装 [CPU-Z](https://www.cpuid.com/softwares/cpu-z.html) 工具查看“处理器-指令集”。飞桨不再支持`noavx`指令集的安装包。


## **三、验证安装**
Expand Down