You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
背景
我们在模拟执行的时候,会判断一个函数是否是 Paddle 组网 API,将组网 API 放入 SIR 中,而非组网 API 则会 inline call 模拟执行字节码
但由于我们现在用于判读一个 API 是否是组网 API 的逻辑仍然不够 robust,总有一些情况会导致部分组网 API 误走模拟执行逻辑
我们的组网 API 基本都是动静统一的,这些 API 长这个样子:
我们模拟执行的时候一定会走动态图分支,即运行到
_C_ops
,而模拟执行到_C_ops
我们也是可以跑的,但会导致一些难以定位的问题,因此希望能够检测这一问题任务描述
当模拟执行遇到
_C_ops
、_legacy_C_ops
时候报错,即添加断言不允许模拟执行_C_ops
逻辑,提前暴露问题The text was updated successfully, but these errors were encountered: