提交 127aa70c authored 作者: Frederic Bastien's avatar Frederic Bastien

Modifications for 0.8.2 release

上级 63ed6b58
...@@ -3,6 +3,16 @@ Release Notes ...@@ -3,6 +3,16 @@ Release Notes
============= =============
Theano 0.8.2 (21th of April, 2016)
==================================
This is a point release with only the support for cudnn v5 convolution
and minor fixes.
Highlight:
- cuDNN v5 convolution support (cuDNN v3 isn't supported anymore)
- A few crash fix
Theano 0.8.1 (29th of March, 2016) Theano 0.8.1 (29th of March, 2016)
================================== ==================================
......
...@@ -59,7 +59,7 @@ copyright = '2008--2016, LISA lab' ...@@ -59,7 +59,7 @@ copyright = '2008--2016, LISA lab'
# The short X.Y version. # The short X.Y version.
version = '0.8' version = '0.8'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.8.0' release = '0.8.2'
# There are two options for replacing |today|: either, you set today to some # There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used: # non-false value, then it is used:
......
...@@ -489,7 +489,7 @@ import theano and print the config variable, as in: ...@@ -489,7 +489,7 @@ import theano and print the config variable, as in:
.. attribute:: config.warn.ignore_bug_before .. attribute:: config.warn.ignore_bug_before
String value: 'None', 'all', '0.3', '0.4', '0.4.1', '0.5', '0.6', '0.7', '0.8', '0.8.1' String value: 'None', 'all', '0.3', '0.4', '0.4.1', '0.5', '0.6', '0.7', '0.8', '0.8.1', '0.8.2'
Default: '0.7' Default: '0.7'
......
...@@ -52,7 +52,7 @@ AUTHOR_EMAIL = "theano-dev@googlegroups.com" ...@@ -52,7 +52,7 @@ AUTHOR_EMAIL = "theano-dev@googlegroups.com"
PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"] PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
MAJOR = 0 MAJOR = 0
MINOR = 8 MINOR = 8
MICRO = 1 MICRO = 2
SUFFIX = "" # Should be blank except for rc's, betas, etc. SUFFIX = "" # Should be blank except for rc's, betas, etc.
ISRELEASED = False ISRELEASED = False
......
...@@ -635,7 +635,7 @@ AddConfigVar('warn.ignore_bug_before', ...@@ -635,7 +635,7 @@ AddConfigVar('warn.ignore_bug_before',
"Warning for specific bugs can be configured with specific " "Warning for specific bugs can be configured with specific "
"[warn] flags."), "[warn] flags."),
EnumStr('0.7', 'None', 'all', '0.3', '0.4', '0.4.1', '0.5', '0.7', EnumStr('0.7', 'None', 'all', '0.3', '0.4', '0.4.1', '0.5', '0.7',
'0.8', '0.8.1', '0.8', '0.8.1', '0.8.2',
allow_override=False), allow_override=False),
in_c_key=False) in_c_key=False)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论