Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix _no_check_dy2st_diff path #55864

Merged
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
1 change: 1 addition & 0 deletions python/paddle/fluid/framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
'device_guard',
'set_flags',
'get_flags',
'_stride_in_no_check_dy2st_diff',
]

EMPTY_VAR_NAME = core.kEmptyVarName()
Expand Down
3 changes: 3 additions & 0 deletions python/paddle/framework/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,8 @@
from ..fluid.framework import Block, Program # noqa: F401
from ..fluid.framework import IrGraph # noqa: F401
from ..fluid.framework import deprecate_stat_dict
from ..fluid.framework import (
_stride_in_no_check_dy2st_diff as _no_check_dy2st_diff,
) # noqa: F401

__all__ = []