Skip to content

Commit

Permalink
removing debug prints from BLAS branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jaberg committed Jan 25, 2012
1 parent bc57896 commit 994250c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions theano/tensor/blas_c.py
Expand Up @@ -204,16 +204,13 @@ def c_code_cache_version(self):
@local_optimizer([ger, ger_destructive])
def use_c_ger(node):
if node.op == ger:
print "inserting C_GER"
return [CGer(False)(*node.inputs)]
if node.op == ger_destructive:
print "inserting dstruc C_GER"
return [CGer(True)(*node.inputs)]

@local_optimizer([CGer(False)])
def make_c_ger_destructive(node):
if node.op == CGer(False):
print "inserting destructive C_GER"
return [CGer(True)(*node.inputs)]


Expand Down

0 comments on commit 994250c

Please sign in to comment.