Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
952545a1
提交
952545a1
authored
6月 21, 2011
作者:
Frederic Bastien
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Some fix and update to NEWS.txt
上级
40235973
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
10 行增加
和
10 行删除
+10
-10
NEWS.txt
NEWS.txt
+10
-10
没有找到文件。
NEWS.txt
浏览文件 @
952545a1
...
@@ -5,7 +5,6 @@ Theano 0.4.0rc4 (2011-06-13)
...
@@ -5,7 +5,6 @@ Theano 0.4.0rc4 (2011-06-13)
Deprecation:
Deprecation:
* tag.shape attribute deprecated (#633)
* tag.shape attribute deprecated (#633)
* FAST_RUN_NOGC mode deprecated
* CudaNdarray_new_null is deprecated in favour of CudaNdarray_New
* CudaNdarray_new_null is deprecated in favour of CudaNdarray_New
* Dividing integers with / is deprecated: use // for integer division, or
* Dividing integers with / is deprecated: use // for integer division, or
cast one of the integers to a float type if you want a float result (you may
cast one of the integers to a float type if you want a float result (you may
...
@@ -15,30 +14,27 @@ Deprecation:
...
@@ -15,30 +14,27 @@ Deprecation:
inc_subtensor and set_subtensor are to be used instead.
inc_subtensor and set_subtensor are to be used instead.
Bugs fixed:
Bugs fixed:
* Bugfix in CudaNdarray.__iadd__. When it is not implemented, return the error.
* In CudaNdarray.__{iadd,idiv}__, when it is not implemented, return the error.
* Typo fixed in tensor/opt.py
* THEANO_FLAGS='optimizer=None' now works as expected
* THEANO_FLAGS='optimizer=None' now works as expected
* Fixed memory leak in error handling on GPU-to-host copy
* Fixed memory leak in error handling on GPU-to-host copy
* Fix relating specifically to Python 2.7 on Mac OS X
* Fix relating specifically to Python 2.7 on Mac OS X
* infer_shape can now handle Python longs
* infer_shape can now handle Python longs
* Fixed behaviour of pydotprint's max_label_size option
* Trying to compute x % y with one or more arguments being complex now
* Trying to compute x % y with one or more arguments being complex now
raises an error.
raises an error.
* The output of random samples computed with uniform(..., dtype=...) is
* The output of random samples computed with uniform(..., dtype=...) is
guaranteed to be of the specified dtype instead of potentially being of a
guaranteed to be of the specified dtype instead of potentially being of a
higher-precision dtype.
higher-precision dtype.
* The perform() method of DownsampleFactorMax did not give the right result
* The perform() method of DownsampleFactorMax did not give the right result
when reusing output storage.
when reusing output storage.
This happen only if you use the Theano flags
* Python 2.4 syntax fixes
.
'linker=c|py_nogc' or manually specify the mode to be 'c|py_nogc'
.
Crash fixed:
Crash fixed:
* Work around a bug in gcc 4.3.0 that make the compilation of 2d convolution
* Work around a bug in gcc 4.3.0 that make the compilation of 2d convolution
crash.
crash.
* Some optimizations crashed when
"ShapeOpt"
was disabled.
* Some optimizations crashed when
the "ShapeOpt" optimization
was disabled.
Optimization:
Optimization:
* Optimize 4 pattern of subtensor followed by subtensor.
* Optimize all subtensor followed by subtensor.
* Gemm inplace optimization on the GPU re-enabled
GPU:
GPU:
* Move to the gpu fused elemwise that have other dtype then float32 in them
* Move to the gpu fused elemwise that have other dtype then float32 in them
...
@@ -63,7 +59,9 @@ New features:
...
@@ -63,7 +59,9 @@ New features:
* var[vector of index] now work, (grad work recursively, the direct grad
* var[vector of index] now work, (grad work recursively, the direct grad
work inplace, gpu work)
work inplace, gpu work)
* limitation: work only of the outer most dimensions.
* limitation: work only of the outer most dimensions.
* test_value implementation to allow quick debugging at graph creation time
* New way to test the graph as we build it. Allow to easily find the source
of shape mismatch error:
`http://deeplearning.net/software/theano/tutorial/debug_faq.html#interactive-debugger`__
* cuda.root inferred if nvcc is on the path, otherwise defaults to
* cuda.root inferred if nvcc is on the path, otherwise defaults to
/usr/local/cuda
/usr/local/cuda
* Better graph printing for graphs involving a scan subgraph
* Better graph printing for graphs involving a scan subgraph
...
@@ -77,6 +75,7 @@ New features:
...
@@ -77,6 +75,7 @@ New features:
now available in the sandbox.
now available in the sandbox.
* CUDA devices 4 - 16 should now be available if present.
* CUDA devices 4 - 16 should now be available if present.
* infer_shape support for the View op, better infer_shape support in Scan
* infer_shape support for the View op, better infer_shape support in Scan
* infer_shape supported in all case of subtensor
* tensor.grad now gives an error by default when computing the gradient
* tensor.grad now gives an error by default when computing the gradient
wrt a node that is disconnected from the cost (not in the graph, or
wrt a node that is disconnected from the cost (not in the graph, or
no continuous path from that op to the cost).
no continuous path from that op to the cost).
...
@@ -107,4 +106,5 @@ Other:
...
@@ -107,4 +106,5 @@ Other:
a Reshape op when we receive an int 1 in the new shape.
a Reshape op when we receive an int 1 in the new shape.
* pydotprint: high contrast mode is now the default, option to print
* pydotprint: high contrast mode is now the default, option to print
more compact node names.
more compact node names.
* pydotprint: How trunk label that are too long.
* More compact printing (ignore leading "Composite" in op names)
* More compact printing (ignore leading "Composite" in op names)
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论