layer.py 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 2021 NVIDIA Corporation. 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.

16
from paddle.fluid import core
17 18 19 20 21 22 23 24 25 26 27 28
from paddle.fluid.core import Load


class Layer(object):
    def __init__(self):
        self.cpp_layer = None
        # {name: Function}
        self.functions = {}

    def load(self, load_path, place):
        self.cpp_layer = Load(load_path, place)

29 30 31 32
        for name in self.cpp_layer.function_names():
            function = self.cpp_layer.function(name)
            info = self.cpp_layer.function_info(name)
            self.functions[name] = Function(function, info)
33 34 35
            setattr(self, name, self.functions[name])


36
class Function:
37
    def __init__(self, function, info):
38
        self.function = function
39
        self.info = FunctionInfo(info)
40 41

    def __call__(self, *args):
42
        return core.eager.jit_function_call(self.function, args)
43 44


45
class FunctionInfo:
46 47 48 49 50
    def __init__(self, info):
        self.info = info

    def name(self):
        return self.info.name()