tracer.py 1.7 KB
Newer Older
M
minqiyang 已提交
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
# Copyright (c) 2018 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 __future__ import print_function

import six

from collections import defaultdict
from paddle.fluid import core
from paddle.fluid import framework


class Tracer(core.Tracer):
    """
26 27
    :api_attr: imperative
    
28 29 30 31 32 33 34
    Tracer is used to execute and record the operators executed, to construct the 
    computation graph in dygraph model. Tracer has two mode, :code:`train_mode`
    and :code:`eval_mode`. In :code:`train_mode`, Tracer would add backward network 
    automatically and perform AutoGrad by method :code:`loss.backward()`. 
    In :code:`eval_mode`, Tracer would not add backward network.

    This is a low level API, users don't need to use it directly.
M
minqiyang 已提交
35 36
    """

J
Jiabin Yang 已提交
37 38
    def __init__(self):
        super(Tracer, self).__init__()
M
minqiyang 已提交
39

M
minqiyang 已提交
40
        self._train_mode = True
M
minqiyang 已提交
41

J
Jiabin Yang 已提交
42 43
    def trace_op(self, type, inputs, outputs, attrs, stop_gradient=False):
        self.trace(type, inputs, outputs, attrs,
44
                   framework._current_expected_place(), self._has_grad and
J
Jiabin Yang 已提交
45
                   not stop_gradient)
M
minqiyang 已提交
46

M
minqiyang 已提交
47
    def train_mode(self):
M
minqiyang 已提交
48 49
        self._train_mode = True

M
minqiyang 已提交
50
    def eval_mode(self):
M
minqiyang 已提交
51
        self._train_mode = False