# HG changeset patch # User James Bergstra # Date 1211497726 14400 # Node ID 44dd9b6448c56a0a7540f446ef9b2228a384eb0f # Parent 4b7e89b75e2be3ffc04c48e0fef9764d1f9fa1e8 harmless typo in ScalarSoftplus.c_code diff -r 4b7e89b75e2b -r 44dd9b6448c5 nnet_ops.py --- a/nnet_ops.py Thu May 22 19:07:51 2008 -0400 +++ b/nnet_ops.py Thu May 22 19:08:46 2008 -0400 @@ -44,7 +44,7 @@ return ScalarSoftplus.static_impl(x) def grad(self, (x,), (gz,)): return [gz * scalar_sigmoid(x)] - def c_code(self, name, node, (x,), (z,), sub): + def c_code(self, node, name, (x,), (z,), sub): if node.inputs[0].type in [scalar.float32, scalar.float64]: return """%(z)s = %(x)s < -30.0