Skip to content

Commit

Permalink
bug fix with conf.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragav Venkatesan committed Feb 27, 2017
1 parent 3b1c9cb commit f49007c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
from mock import Mock

# Don't build or import any modules.
MOCK_MODULES = ['numpy', 'scipy', 'networkx', 'theano', 'progressbar', 'skdata', 'pillow',
MOCK_MODULES = ['numpy', 'scipy', 'networkx', 'theano', 'progressbar', 'skdata', 'pillow',
'matplotlib']
for mod_name in MOCK_MODULES:
sys.modules[mod_name] = mock.Mock()
for mod_name in MOCK_MODULES:
sys.modules[mod_name] = mock.Mock()

theano.config = Mock(device='gpu')
# theano.sandbox.cuda.cuda_enabled = True
Expand Down

0 comments on commit f49007c

Please sign in to comment.