예제 #1
0
    def make_thunk(self, node, storage_map, compute_map, no_recycling):
        if not convnet_available():
            raise RuntimeError('Could not compile cuda_convnet')

        return super(WeightedMaxPool,
                     self).make_thunk(node, storage_map, compute_map,
                                      no_recycling)
예제 #2
0
파일: pool.py 프로젝트: zizu1985/pylearn2
    def make_thunk(self, *args, **kwargs):
        """
        .. todo::

            WRITEME
        """
        if not convnet_available():
            raise RuntimeError('Could not compile cuda_convnet')

        return super(MaxPool, self).make_thunk(*args, **kwargs)
예제 #3
0
파일: pool.py 프로젝트: czotti/pylearn2
    def make_thunk(self, *args, **kwargs):
        """
        .. todo::

            WRITEME
        """
        if not convnet_available():
            raise RuntimeError('Could not compile cuda_convnet')

        return super(MaxPool, self).make_thunk(*args, **kwargs)
    def make_thunk(self, node, storage_map, compute_map, no_recycling):
        """
        .. todo::
            WRITEME
        """
        if not convnet_available():
            raise RuntimeError('Could not compile cuda_convnet')

        return super(ProbMaxPoolGrad, self).make_thunk(
                node, storage_map, compute_map, no_recycling)
예제 #5
0
파일: pool.py 프로젝트: zizu1985/pylearn2
    def make_thunk(self, node, storage_map, compute_map, no_recycling):
        """
        .. todo::

            WRITEME
        """
        if not convnet_available():
            raise RuntimeError('Could not compile cuda_convnet')

        return super(MaxPoolGrad, self).make_thunk(node, storage_map,
                                                   compute_map, no_recycling)
예제 #6
0
    def make_thunk(self, node, storage_map, compute_map, no_recycling):
        if not convnet_available():
            raise RuntimeError('Could not compile cuda_convnet')

        return super(BaseActs, self).make_thunk(
                node, storage_map, storage_map, no_recycling)
예제 #7
0
    def make_thunk(self, node, storage_map, compute_map, no_recycling):
        if not convnet_available():
            raise RuntimeError("Could not compile cuda_convnet")

        return super(WeightedMaxPool, self).make_thunk(node, storage_map, compute_map, no_recycling)
예제 #8
0
    def make_thunk(self, *args, **kwargs):
        if not convnet_available():
            raise RuntimeError('Could not compile cuda_convnet')

        return super(BaseActs, self).make_thunk(*args, **kwargs)
예제 #9
0
    def make_thunk(self, *args, **kwargs):
        if not convnet_available():
            raise RuntimeError('Could not compile cuda_convnet')

        return super(BaseActs, self).make_thunk(*args, **kwargs)