Unverified 提交 b505977d authored 作者: abergeron's avatar abergeron 提交者: GitHub

Merge pull request #6642 from twiecki/master

Modifications for 1.0.3 release
......@@ -17,6 +17,7 @@ abalkin <abalkin@enlnt.com> Alexander Belopolsky <abalkin@enlnt.com>
abalkin <abalkin@enlnt.com> Alexander Belopolsky <a@enlnt.com>
Adam Becker <junkkhaotik@gmail.com> khaotik <aruhanb@gmail.com>
Adam Becker <junkkhaotik@gmail.com> khaotik <junkkhaotik@gmail.com>
Adrian Seyboldt <aseyboldt@gmail.com> aseyboldt <aseyboldt@gmail.com>
Aleksandar Botev <botevmg@gmail.com> botev <botevmg@gmail.com>
Alex Lamb <alex6200@gmail.com> AlexLamb <alex6200@gmail.com>
Alex Lamb <alex6200@gmail.com> DeathMonster666 <alex6200@gmail.com>
......@@ -242,6 +243,7 @@ Steven Bocco <stevenbocco@gmail.com> Seton Steven Bocco <boccoset@leto15.iro.umo
Steven Bocco <stevenbocco@gmail.com> Seton Steven Bocco <boccoset@leto51.iro.umontreal.ca>
Steven Pigeon <pigeon@iro.umontreal.ca> steven-pigeon <pigeon@iro.umontreal.ca>
Thomas George <tfjgeorge@gmail.com> Thomas George <georgeth@helios1.helios>
Thomas Wiecki <thomas.wiecki@gmail.com> twiecki <thomas.wiecki@gmail.com>
Valentin Bisson <valentin.bisson@umontreal.ca> onze <onzeonline@gmail.com>
Xavier Bouthillier <xavier.bouthillier@gmail.com> Xavier Bouthillier <xavier.bouthillier@umontreal.ca>
Xavier Bouthillier <xavier.bouthillier@gmail.com> Xavier Bouthillier/ <xavier.bouthillier@gmail.com>
......
......@@ -5,6 +5,39 @@
Old Release Notes
=================
Theano 1.0.2 (23rd of May, 2018)
====================================
This is a maintenance release of Theano, version ``1.0.2``, with no
new features, but some important bug fixes.
We recommend that everybody update to this version.
Highlights (since 1.0.1):
- Theano should work under PyPy now (this is experimental).
- Update for cuDNN 7.1 RNN API changes.
- Fix for a crash related to mixed dtypes with cuDNN convolutions.
- MAGMA should work in more cases without manual config.
- Handle reductions with non-default accumulator dtype better on the GPU.
- Improvements to the test suite so that it fails less often due to
random chance.
A total of 6 people contributed to this release since ``1.0.1``:
- Frederic Bastien
- Steven Bocco
- Jon Haygood
- Arnaud Bergeron
- Jordan Melendez
- Desiree Vogt-Lee
- Garming Sam
- Pascal Lamblin
- Vincent Dumoulin
- Glexin
- Simon Lefrancois
Theano 1.0.1 (6th of December, 2017)
====================================
......
......@@ -2,34 +2,24 @@
Release Notes
=============
Theano 1.0.2 (23rd of May, 2018)
====================================
Theano 1.0.3 (20th of September 2018)
=====================================
This is a maintenance release of Theano, version ``1.0.2``, with no
This is a maintenance release of Theano, version ``1.0.3``, with no
new features, but some important bug fixes.
We recommend that everybody update to this version.
Highlights (since 1.0.1):
Highlights (since 1.0.2):
- Theano should work under PyPy now (this is experimental).
- Update for cuDNN 7.1 RNN API changes.
- Fix for a crash related to mixed dtypes with cuDNN convolutions.
- MAGMA should work in more cases without manual config.
- Handle reductions with non-default accumulator dtype better on the GPU.
- Improvements to the test suite so that it fails less often due to
random chance.
- Theano is now compatible with Python 3.7
- Broadcasting for sparse dot products works correctly
- Subtensor grads do not return int anymore
A total of 6 people contributed to this release since ``1.0.1``:
A total of 5 people contributed to this release since ``1.0.2``:
- Frederic Bastien
- Steven Bocco
- Jon Haygood
- Arnaud Bergeron
- Jordan Melendez
- Desiree Vogt-Lee
- Garming Sam
- Pascal Lamblin
- Vincent Dumoulin
- Glexin
- Simon Lefrancois
- Dmitry Mottl
- Adrian Seyboldt
- Thomas Wiecki
......@@ -567,7 +567,7 @@ import theano and print the config variable, as in:
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'``,
``'0.9'``, ``'0.10'``, ``'1.0'``, ``'1.0.1'``, ``'1.0.2'``
``'0.9'``, ``'0.10'``, ``'1.0'``, ``'1.0.1'``, ``'1.0.2'``, ``'1.0.3'``
Default: ``'0.9'``
......
......@@ -752,7 +752,7 @@ AddConfigVar('warn.ignore_bug_before',
"[warn] flags."),
EnumStr('0.9', 'None', 'all', '0.3', '0.4', '0.4.1', '0.5', '0.6',
'0.7', '0.8', '0.8.1', '0.8.2', '0.9', '0.10', '1.0',
'1.0.1', '1.0.2',
'1.0.1', '1.0.2', '1.0.3',
allow_override=False),
in_c_key=False)
......
......@@ -2,7 +2,7 @@ from __future__ import absolute_import, print_function, division
from theano._version import get_versions
FALLBACK_VERSION = "1.0.2+unknown"
FALLBACK_VERSION = "1.0.3+unknown"
info = get_versions()
if info['error'] is not None:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论