- 21 7月, 2011 4 次提交
-
-
由 Xavier Glorot 提交于
-
由 Xavier Glorot 提交于
-
由 Pascal Lamblin 提交于
-
由 Pascal Lamblin 提交于
-
- 20 7月, 2011 36 次提交
-
-
由 Frederic Bastien 提交于
-
由 Razvan Pascanu 提交于
-
由 James Bergstra 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
set_subtensor. This was the cause of the 3 failing test in scan. I also revised the entire optimization, writing a bit more comments/
-
由 Pascal Lamblin 提交于
-
由 Razvan Pascanu 提交于
variables and some other cosmetic changes.
-
由 Pascal Lamblin 提交于
* * * More informative error message
-
由 Pascal Lamblin 提交于
-
由 Pascal Lamblin 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
ensure they don't belong to a different env.
-
由 Pascal Lamblin 提交于
Also update the documentation.
-
由 Pascal Lamblin 提交于
-
由 Razvan Pascanu 提交于
The scope is to make the computational graph more readable, and to move constants in the inner graph, allowing constant folding in the inner graph to do its job (performance).
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
obtain some outputs/or other node.
-
由 Razvan Pascanu 提交于
In order for scan to identify which of the inner outputs is the stopping condition I use this dummy class to wrap my condition in it.
-
由 Razvan Pascanu 提交于
Look for conditions that the user might provide ( if scan is to terminate on a condition ). This feature will be later used the conditional terminating scan.
-
由 Razvan Pascanu 提交于
One thing that I've tried is to avoid importing cuda.
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
-
由 Razvan Pascanu 提交于
The main thing I was looking for was efficiency. The new algorithm is not recursive, it considers a bunch of outputs at the same time, and it uses toposort to traverse the graph, making sure each node is seen only once.
-
由 Razvan Pascanu 提交于
safe_to_cpu was one of the reason that I was importing cuda. It was a misunderstanding on my part, and the way is done now is somewhat more sane.
-