__init__.py 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# import all class inside framework into fluid module
import framework
from framework import *
# import all class inside executor into fluid module
import executor
from executor import *

import io
import evaluator
import initializer
import layers
import nets
import optimizer
import backward
import regularizer
Y
Yu Yang 已提交
16
from param_attr import ParamAttr
Y
Yu Yang 已提交
17
from data_feeder import DataFeeder
18
from core import LoDTensor, CPUPlace, GPUPlace
Y
Yu Yang 已提交
19
import clip
20 21 22 23

Tensor = LoDTensor
__all__ = framework.__all__ + executor.__all__ + [
    'io', 'initializer', 'layers', 'nets', 'optimizer', 'backward',
Y
Yu Yang 已提交
24
    'regularizer', 'LoDTensor', 'CPUPlace', 'GPUPlace', 'Tensor', 'ParamAttr'
Y
Yu Yang 已提交
25
    'DataFeeder', 'clip'
26 27 28 29 30 31
]


def __read_gflags_from_env__():
    """
    Enable reading gflags from environment variables.
Y
Yu Yang 已提交
32

33 34 35 36 37 38 39 40
    Returns:
        None
    """
    import sys
    import core
    read_env_flags = ['use_pinned_memory']
    if core.is_compile_gpu():
        read_env_flags.append('fraction_of_gpu_memory_to_use')
Q
QI JUN 已提交
41 42
    core.init_gflags([sys.argv[0]] +
                     ["--tryfromenv=" + ",".join(read_env_flags)])
43 44 45


__read_gflags_from_env__()