mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Summary: Closes https://github.com/caffe2/caffe2/pull/1260 Differential Revision: D5906739 Pulled By: Yangqing fbshipit-source-id: e482ba9ba60b5337d9165f28f7ec68d4518a0902
134 lines
3.9 KiB
Python
134 lines
3.9 KiB
Python
# Copyright (c) 2016-present, Facebook, Inc.
|
|
#
|
|
# 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.
|
|
##############################################################################
|
|
|
|
## @package context
|
|
# Module caffe2.python.context
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
import threading
|
|
import six
|
|
|
|
|
|
class ContextInfo(object):
|
|
def __init__(self, cls, allow_default, arg_name):
|
|
self.cls = cls
|
|
self.allow_default = allow_default
|
|
self.arg_name = arg_name
|
|
self._local_stack = threading.local()
|
|
|
|
@property
|
|
def _stack(self):
|
|
if not hasattr(self._local_stack, 'obj'):
|
|
self._local_stack.obj = []
|
|
return self._local_stack.obj
|
|
|
|
def enter(self, value):
|
|
self._stack.append(value)
|
|
|
|
def exit(self, value):
|
|
assert len(self._stack) > 0, 'Context %s is empty.' % self.cls
|
|
assert self._stack.pop() == value
|
|
|
|
def get_active(self, required=True):
|
|
if len(self._stack) == 0:
|
|
if not required:
|
|
return None
|
|
assert self.allow_default, (
|
|
'Context %s is required but none is active.' % self.cls)
|
|
self.enter(self.cls())
|
|
return self._stack[-1]
|
|
|
|
|
|
class ContextManager(object):
|
|
def __init__(self):
|
|
self._ctxs = {}
|
|
|
|
def register(self, ctx_info):
|
|
assert isinstance(ctx_info, ContextInfo)
|
|
assert (ctx_info.cls not in self._ctxs), (
|
|
'Context %s already registered' % ctx_info.cls)
|
|
self._ctxs[ctx_info.cls] = ctx_info
|
|
|
|
def get(self, cls):
|
|
assert cls in self._ctxs, 'Context %s not registered.' % cls
|
|
return self._ctxs[cls]
|
|
|
|
|
|
_CONTEXT_MANAGER = ContextManager()
|
|
|
|
|
|
def context_manager():
|
|
global _CONTEXT_MANAGER
|
|
return _CONTEXT_MANAGER
|
|
|
|
|
|
def __enter__(self):
|
|
if self._prev_enter is not None:
|
|
self._prev_enter()
|
|
context_manager().get(self._ctx_class).enter(self)
|
|
return self
|
|
|
|
|
|
def __exit__(self, *args):
|
|
context_manager().get(self._ctx_class).exit(self)
|
|
if self._prev_exit is not None:
|
|
self._prev_exit(*args)
|
|
|
|
|
|
def __call__(self, func):
|
|
@six.wraps(func)
|
|
def wrapper(*args, **kwargs):
|
|
with self:
|
|
return func(*args, **kwargs)
|
|
return wrapper
|
|
|
|
|
|
@classmethod
|
|
def current(cls, value=None, required=True):
|
|
return get_active_context(cls, value, required)
|
|
|
|
|
|
class define_context(object):
|
|
def __init__(self, arg_name=None, allow_default=False):
|
|
self.arg_name = arg_name
|
|
self.allow_default = allow_default
|
|
|
|
def __call__(self, cls):
|
|
assert not hasattr(cls, '_ctx_class'), (
|
|
'%s parent class (%s) already defines context.' % (
|
|
cls, cls._ctx_class))
|
|
context_manager().register(
|
|
ContextInfo(cls, self.allow_default, self.arg_name))
|
|
cls._prev_enter = cls.__enter__ if hasattr(cls, '__enter__') else None
|
|
cls._prev_exit = cls.__exit__ if hasattr(cls, '__exit__') else None
|
|
cls._ctx_class = cls
|
|
cls.__enter__ = __enter__
|
|
cls.__exit__ = __exit__
|
|
cls.__call__ = __call__
|
|
cls.current = current
|
|
return cls
|
|
|
|
|
|
def get_active_context(cls, val=None, required=True):
|
|
ctx_info = context_manager().get(cls)
|
|
if val is not None:
|
|
assert isinstance(val, cls), (
|
|
'Wrong context type. Expected: %s, got %s.' % (cls, type(val)))
|
|
return val
|
|
return ctx_info.get_active(required=required)
|