Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

add announcement for migration #420

Merged
merged 3 commits into from
Oct 13, 2023
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

PaddleSOT 是一个 Opcode-Based 的动转静孵化项目,借助 Symbolic Opcode Translator(简称:SOT)在运行时将 PaddlePaddle 动态图组网代码转换为静态图组网代码,具体设计参见:[PaddleSOT 项目介绍](https://github.com/PaddlePaddle/community/tree/master/pfcc/paddle-code-reading/symbolic_opcode_translator)

> **Note**
>
> PaddleSOT 代码目前已经迁移到 Paddle 主框架 repo,请前往 [`Paddle/python/paddle/jit/sot`](https://github.com/PaddlePaddle/Paddle/tree/develop/python/paddle/jit/sot) 访问最新代码

## Install

```bash
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ paddle-test = [
"opencv-python",
"scipy",
"pyyaml",
"gym==0.25.2",
"gym==0.26.2",
]

[tool.setuptools.packages]
Expand Down
3 changes: 3 additions & 0 deletions tests/run_all_paddle_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ disabled_tests=(
${PADDLE_TEST_BASE}/test_lac.py # disabled by paddle
${PADDLE_TEST_BASE}/test_sentiment.py # disabled unitcase by paddle
${PADDLE_TEST_BASE}/test_pylayer.py # This ut cannot directly run
${PADDLE_TEST_BASE}/test_build_strategy.py # test it on Paddle CI only
${PADDLE_TEST_BASE}/test_resnet.py # test it on Paddle CI only
${PADDLE_TEST_BASE}/test_resnet_v2.py # test it on Paddle CI only
)

for file in ${PADDLE_TEST_BASE}/*.py; do
Expand Down
Loading