https://github.com/GPflow/GPflow
Revision 6c0f3672958b3fc15f853f5045067df5680f272c authored by Artem Artemev on 16 November 2017, 10:36:27 UTC, committed by Artem Artemev on 16 November 2017, 10:36:27 UTC
2 parent s 36043d7 + 05a7127
Raw File
Tip revision: 6c0f3672958b3fc15f853f5045067df5680f272c authored by Artem Artemev on 16 November 2017, 10:36:27 UTC
Merge branch 'master' into artemav/fixing-notebooks
Tip revision: 6c0f367
test_util.py
# Copyright 2017 Artem Artemev @awav
#
# 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.


import contextlib
import tensorflow as tf


class GPflowTestCase(tf.test.TestCase):
    """
    Wrapper for TensorFlow TestCase to avoid massive duplication of resetting
    Tensorflow Graph.
    """

    _multiprocess_can_split_ = True

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.test_graph = tf.Graph()

    @contextlib.contextmanager
    def test_context(self, graph=None):
        graph = self.test_graph if graph is None else graph
        if graph is None:
            graph = tf.Graph()
        with graph.as_default(), self.test_session(graph=graph) as session:
            yield session
back to top