Skip to content

Commit

Permalink
Merge pull request Theano#6735 from timgates42/bugfix/typo_variable->…
Browse files Browse the repository at this point in the history
…size

Fix simple typo: varible->size -> variable->size
  • Loading branch information
nouiz authored Dec 12, 2019
2 parents 630974a + b104e31 commit cdeb9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theano/compile/profiling.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ def summary_globals(self, file):
def summary_memory(self, file, N=None):
fct_memory = {} # fgraph->dict(node->[outputs size])
fct_shapes = {} # fgraph->dict(node->[outputs shapes]))
var_mem = {} # varible->size in bytes; don't include input variables
var_mem = {} # variable->size in bytes; don't include input variables
node_mem = {} # node->total outputs size (only dense outputs)

for node in self.apply_callcount:
Expand Down

0 comments on commit cdeb9af

Please sign in to comment.