未验证 提交 0bf10c91 编写于 作者: W whs 提交者: GitHub

Change in_dygraph_mode to in_dynamic_mode (#1764)

上级 cb4c11a4
...@@ -20,7 +20,6 @@ import paddle ...@@ -20,7 +20,6 @@ import paddle
from ...common import get_logger from ...common import get_logger
from .utils.utils import compute_start_end, get_same_padding, convert_to_list from .utils.utils import compute_start_end, get_same_padding, convert_to_list
from .layers_base import * from .layers_base import *
from paddle.framework import in_dygraph_mode
__all__ = [ __all__ = [
'SuperConv2D', 'SuperConv2DTranspose', 'SuperSeparableConv2D', 'SuperConv2D', 'SuperConv2DTranspose', 'SuperSeparableConv2D',
...@@ -985,7 +984,7 @@ class SuperBatchNorm2D(paddle.nn.BatchNorm2D): ...@@ -985,7 +984,7 @@ class SuperBatchNorm2D(paddle.nn.BatchNorm2D):
"use_global_stats", self._use_global_stats, "use_global_stats", self._use_global_stats,
"trainable_statistics", trainable_statistics) "trainable_statistics", trainable_statistics)
if in_dygraph_mode(): if paddle.in_dynamic_mode():
paddle_compile = os.environ.get("paddle_compile") paddle_compile = os.environ.get("paddle_compile")
if feature_dim != self._mean.shape[0]: if feature_dim != self._mean.shape[0]:
if not paddle_compile or "Develop" in paddle_compile: if not paddle_compile or "Develop" in paddle_compile:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册