__init__.py 1021 字节
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
17 18 19 20 21 22

from core import LoDTensor, CPUPlace, GPUPlace

Tensor = LoDTensor
__all__ = framework.__all__ + executor.__all__ + [
    'io', 'initializer', 'layers', 'nets', 'optimizer', 'backward',
Y
Yu Yang 已提交
23
    'regularizer', 'LoDTensor', 'CPUPlace', 'GPUPlace', 'Tensor', 'ParamAttr'
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
]


def __read_gflags_from_env__():
    """
    Enable reading gflags from environment variables.
    
    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')
    core.init_gflags(sys.argv + ["--tryfromenv=" + ",".join(read_env_flags)])


__read_gflags_from_env__()