__init__.py 4.3 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# 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
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# 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.

Y
Yang Yu 已提交
15
from __future__ import print_function
16
# import all class inside framework into fluid module
Y
Update  
Yang Yu 已提交
17 18
import framework
from framework import *
Y
Yang Yu 已提交
19 20
# import all class inside executor into fluid module
import executor
Y
Update  
Yang Yu 已提交
21 22
from executor import *

H
Helin Wang 已提交
23
import trainer
H
Helin Wang 已提交
24 25 26 27 28
from trainer import Trainer
from trainer import BeginEpochEvent
from trainer import EndEpochEvent
from trainer import BeginStepEvent
from trainer import EndStepEvent
T
tangwei12 已提交
29
from trainer import CheckpointConfig
H
Helin Wang 已提交
30 31 32 33

import inferencer
from inferencer import Inferencer

Y
Yang Yu 已提交
34
import io
Y
Update  
Yang Yu 已提交
35 36
import evaluator
import initializer
37
import layers
Q
Qingsheng Li 已提交
38
import contrib
39 40
import nets
import optimizer
Y
Update  
Yang Yu 已提交
41
import backward
42
import regularizer
F
fengjiayi 已提交
43
import average
D
dzhwinter 已提交
44
import metrics
45
import transpiler
G
guosheng 已提交
46
from param_attr import ParamAttr, WeightNormParamAttr
Y
Yu Yang 已提交
47
from data_feeder import DataFeeder
S
sneaxiy 已提交
48
from core import LoDTensor, LoDTensorArray, CPUPlace, CUDAPlace, CUDAPinnedPlace, Scope
49
from transpiler import DistributeTranspiler, InferenceTranspiler, \
G
gongweibao 已提交
50
    memory_optimize, release_memory, DistributeTranspilerConfig
51
from concurrency import (Go, make_channel, channel_send, channel_recv,
T
Thuan Nguyen 已提交
52
                         channel_close, Select)
53
from lod_tensor import create_lod_tensor, create_random_int_lodtensor
Y
Update  
Yang Yu 已提交
54
import clip
Y
Yang Yu 已提交
55
import profiler
Y
Yu Yang 已提交
56
import unique_name
Y
Yu Yang 已提交
57
import recordio_writer
Y
yuyang18 已提交
58 59
import parallel_executor
from parallel_executor import *
X
Xin Pan 已提交
60
from paddle.fluid.layers.math_op_patch import monkey_patch_variable
61 62

Tensor = LoDTensor
Y
Yang Yu 已提交
63

Y
yuyang18 已提交
64
__all__ = framework.__all__ + executor.__all__ + concurrency.__all__ + \
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
    trainer.__all__ + inferencer.__all__ + transpiler.__all__ + \
    parallel_executor.__all__ + lod_tensor.__all__ + [
        'io',
        'initializer',
        'layers',
        'contrib',
        'transpiler',
        'nets',
        'optimizer',
        'learning_rate_decay',
        'backward',
        'regularizer',
        'LoDTensor',
        'LoDTensorArray',
        'CPUPlace',
        'CUDAPlace',
        'CUDAPinnedPlace',
        'Tensor',
        'ParamAttr',
        'WeightNormParamAttr',
        'DataFeeder',
        'clip',
        'profiler',
        'unique_name',
        'recordio_writer',
        'Scope',
    ]
92 93


Y
Yang Yu 已提交
94
def __bootstrap__():
95 96
    """
    Enable reading gflags from environment variables.
Y
Yu Yang 已提交
97

98 99 100 101 102
    Returns:
        None
    """
    import sys
    import core
Y
Yang Yu 已提交
103 104
    import os

X
Xin Pan 已提交
105 106
    in_test = 'unittest' in sys.modules

Y
Yang Yu 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
    try:
        num_threads = int(os.getenv('OMP_NUM_THREADS', '1'))
    except ValueError:
        num_threads = 1

    if num_threads > 1:
        print(
            'WARNING: OMP_NUM_THREADS set to {0}, not 1. The computation '
            'speed will not be optimized if you use data parallel. It will '
            'fail if this PaddlePaddle binary is compiled with OpenBlas since'
            ' OpenBlas does not support multi-threads.'.format(num_threads),
            file=sys.stderr)
        print('PLEASE USE OMP_NUM_THREADS WISELY.', file=sys.stderr)

    os.environ['OMP_NUM_THREADS'] = str(num_threads)

123
    read_env_flags = [
Y
Yu Yang 已提交
124
        'use_pinned_memory', 'check_nan_inf', 'benchmark', 'warpctc_dir',
125
        'eager_delete_scope', 'use_mkldnn', 'initial_cpu_memory_in_mb',
126
        'init_allocated_mem', 'free_idle_memory'
127
    ]
Y
update  
Yancey1989 已提交
128 129 130
    if core.is_compiled_with_dist():
        read_env_flags.append('rpc_deadline')

131
    if core.is_compiled_with_cuda():
132
        read_env_flags += [
D
dzhwinter 已提交
133
            'fraction_of_gpu_memory_to_use', 'cudnn_deterministic'
134
        ]
Q
QI JUN 已提交
135 136
    core.init_gflags([sys.argv[0]] +
                     ["--tryfromenv=" + ",".join(read_env_flags)])
Y
Yang Yu 已提交
137
    core.init_glog(sys.argv[0])
X
Xin Pan 已提交
138 139
    # don't init_p2p when in unittest to save time.
    core.init_devices(not in_test)
D
dzhwinter 已提交
140

141

X
Xin Pan 已提交
142 143
# TODO(panyx0718): Avoid doing complex initialization logic in __init__.py.
# Consider paddle.init(args) or paddle.main(args)
X
Xin Pan 已提交
144
monkey_patch_variable()
Y
Yang Yu 已提交
145
__bootstrap__()