bugfix for grad_dict

This commit is contained in:
James Hensman 2014-03-14 10:29:14 +00:00
parent f50b121d4d
commit da4303f71b
4 changed files with 4 additions and 4 deletions

View file

@ -48,7 +48,7 @@ class Cacher(object):
if k in kw and kw[k] is not None:
return self.operation(*args, **kw)
# TODO: WARNING !!! Cache OFFSWITCH !!! WARNING
return self.operation(*args)
#return self.operation(*args)
#if the result is cached, return the cached computation
state = [all(a is b for a, b in itertools.izip_longest(args, cached_i)) for cached_i in self.cached_inputs]