forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram_patch.py
More file actions
49 lines (39 loc) · 1.55 KB
/
program_patch.py
File metadata and controls
49 lines (39 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from paddle.base.wrapped_decorator import signature_safe_contextmanager
from . import Program
_already_patch_program = False
global_prog_seed = 0
def monkey_patch_program():
def global_seed(self, seed=0):
global global_prog_seed
global_prog_seed = seed
self._seed = global_prog_seed
@signature_safe_contextmanager
def _lr_schedule_guard(self, is_with_opt=False):
# TODO(dev): Currently there has not equivalent of op_role in PIR
# mode, so we simply remove _lr_schedule_guard here, this should
# be fixed in the future.
yield
global global_prog_seed
program_attrs = {
"global_seed": global_seed,
"_seed": global_prog_seed,
"_lr_schedule_guard": _lr_schedule_guard,
}
global _already_patch_program
if not _already_patch_program:
for attr, value in program_attrs.items():
setattr(Program, attr, value)
_already_patch_program = True