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)
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)
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)
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)
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)
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)