sort by:
Revision Author Date Message Commit Date
14c591d Revert "change to work on windows && replace long with ptrdiff_t" 13 October 2016, 22:09:34 UTC
60a753a Merge pull request #350 from BTNC/master change to work on windows && replace long with ptrdiff_t 13 October 2016, 16:25:59 UTC
4247d64 change to work on windows && replace long with ptrdiff_t 13 October 2016, 15:44:28 UTC
e388ee3 Merge pull request #338 from nitsky/spatial_logsoftmax SpatialLogSoftMax 07 October 2016, 14:36:40 UTC
612dda4 Merge pull request #343 from colesbury/master Fixes for https://github.com/torch/cutorch/pull/519 30 September 2016, 16:12:32 UTC
52f7419 Fixes for https://github.com/torch/cutorch/pull/519 29 September 2016, 23:19:41 UTC
9a3ffab Fix SpatialLogSoftMax memory leak and code cleanup 27 September 2016, 15:16:31 UTC
5aa68bb Merge pull request #339 from torch/classnllfix making ClassNLLCriterion targets consistent between cpu and cuda 27 September 2016, 00:50:42 UTC
9b3be1f making ClassNLLCriterion targets consistent between cpu and cuda 27 September 2016, 00:48:17 UTC
8e6bfc5 Update SpatialLogSoftMax kernel to use cuda dimensions 26 September 2016, 16:39:56 UTC
d85eeca Update LogSoftMax to work in spatial domain 21 September 2016, 15:11:59 UTC
10e9b68 Merge pull request #334 from apaszke/header_fix Mark BCECriterion weights as optional in THCUNN.h 14 September 2016, 14:53:29 UTC
a8a1c77 Mark BCECriterion weights as optional in THCUNN.h 14 September 2016, 14:36:59 UTC
ccc2309 moving arch detetction into THCUNN 13 September 2016, 04:09:25 UTC
4a04229 BCECriterion THCUNN + Weights (#331) BCE Criterion CUDA implementation 08 September 2016, 20:33:53 UTC
ecc4141 Merge pull request #332 from vivekn/dpt_fix Fix issue with flatten parameters in DataParallelTable 06 September 2016, 17:52:21 UTC
e1d9cbc Fix issue with flatten parameters in DataParallelTable 06 September 2016, 17:42:33 UTC
cdac0c3 Merge pull request #329 from gchanan/hardtanh inplace is reversed in HardTanh:backward. 01 September 2016, 02:36:26 UTC
dbbb218 inplace is reversed in HardTanh:backward. Fixes torch7 issue #734, "Inconsistent behavior of nn.Clamp in CPU and GPU modes". Adds a simple test that gradOutput equals gradInput after backward when inplace is set. It is possible to construct a test with inplace HardTanh where forward+backward yields different results for nn vs cunn, but this appears to be due to the inclusive vs exclusive bounds used for inplace vs non-inplace, respectively, so a more direct test is preferred. 01 September 2016, 02:31:41 UTC
d652966 Update README.md 27 August 2016, 18:02:44 UTC
b6e4a61 Merge pull request #327 from kmul00/voldilmaxpool VolumetricDilatedMaxPooling 27 August 2016, 14:42:05 UTC
ec16b36 VolumetricDilatedMaxPooling modified: lib/THCUNN/THCUNN.h copied: lib/THCUNN/VolumetricMaxPooling.cu -> lib/THCUNN/VolumetricDilatedMaxPooling.cu modified: lib/THCUNN/VolumetricMaxPooling.cu modified: test.lua 28 August 2016, 13:31:12 UTC
a3ccbeb Merge pull request #326 from kmul00/consistentapimaxpool Consistent Max Pool API 26 August 2016, 23:17:15 UTC
f8c82e5 Consistent Max Pool API renamed: lib/THCUNN/SpatialMaxPooling.cu -> lib/THCUNN/SpatialDilatedMaxPooling.cu modified: lib/THCUNN/SpatialMaxPooling.cu modified: lib/THCUNN/THCUNN.h 26 August 2016, 20:09:14 UTC
3c4a48a fix Lua 5.2 compat 24 August 2016, 20:27:10 UTC
ef2c953 fix critical bug in SpatialConvolution 22 August 2016, 18:41:46 UTC
50c63ac Merge pull request #323 from apaszke/threshold Make Threshold THCUNN functions more consistent 19 August 2016, 21:11:28 UTC
2298e03 updating cmake 18 August 2016, 20:06:57 UTC
d3f22ef Make Threshold THCUNN functions more consistent 18 August 2016, 18:14:25 UTC
d0e27d2 Merge pull request #322 from apaszke/spatial_conv Accept both 2D and 4D weights in SpatialConvolutionMM 18 August 2016, 14:25:20 UTC
f075592 Accept both 2D and 4D weights in SpatialConvolutionMM 18 August 2016, 13:58:43 UTC
25498b7 CUDA version of Spatioal Dilated Max Pooling modified: lib/THCUNN/SpatialMaxPooling.cu modified: lib/THCUNN/THCUNN.h modified: test.lua 12 August 2016, 15:00:02 UTC
3040562 Merge pull request #319 from torch/typesfix fixes for multiple cuda types 12 August 2016, 03:47:50 UTC
2618f79 fixes for multiple cuda types 12 August 2016, 01:57:28 UTC
65568cf Merge pull request #318 from apaszke/master Improvements/fixes in THCUNN 11 August 2016, 19:40:15 UTC
fdf6fe4 Fix DistKLDivCriterion gradInput formula 11 August 2016, 19:37:11 UTC
8ae08a2 Use TH_INDEX_BASE in THCUNN 11 August 2016, 19:31:31 UTC
1b76671 Mark optional arguments in THCUNN.h 11 August 2016, 19:31:14 UTC
ccba310 Merge pull request #316 from apaszke/master Fix THCUNN.h formatting 10 August 2016, 16:51:55 UTC
75e4228 Fix THCUNN.h formatting 10 August 2016, 16:33:40 UTC
6409c15 Merge pull request #314 from colesbury/bn Fix "invalid configuration" when using very large batch sizes in evaluate mode 05 August 2016, 21:07:07 UTC
49fdc1c Fix "invalid configuration" when using very large batch sizes in evaluate mode. Example: ``` bn = nn.BatchNormalization(100):cuda() bn:evaluate() bn:forward(torch.CudaTensor(147000, 100):zero()) cutorch.synchronize() ``` Fixes https://github.com/torch/nn/issues/907 05 August 2016, 20:44:26 UTC
7f27d6a Merge pull request #313 from torch/voldilcol Volumetric Dilated Convolution 04 August 2016, 04:41:05 UTC
d7ee9c6 Volumetric Dilated Convolution 04 August 2016, 04:29:30 UTC
b592695 Merge pull request #312 from torch/softfix fix SpatialSoftMax bug and add unit tests 02 August 2016, 15:50:26 UTC
0bd7346 fix SpatialSoftMax bug and add unit tests 02 August 2016, 15:48:48 UTC
2b31650 adding new arch selector 29 July 2016, 23:39:50 UTC
8c4e9d5 Merge pull request #310 from torch/cutorch-Sgemm-compat gemm -> Sgemm 29 July 2016, 05:47:01 UTC
84d3746 gemm -> Sgemm 29 July 2016, 05:45:08 UTC
208e1fa add versioning script 29 July 2016, 05:08:40 UTC
e856c86 Cutting version 1.0-0 29 July 2016, 05:04:49 UTC
387ff4f Merge pull request #309 from paulineluc14/master Adding SpatialUpSamplingBilinear 27 July 2016, 18:25:39 UTC
a6bb463 Adding SpatialUpSamplingBilinear 27 July 2016, 09:12:05 UTC
9634a07 Merge pull request #308 from mys007/classnllbounds NLL Criteria: weight bound checking 25 July 2016, 14:00:56 UTC
3f14ce2 added bound checks for weights 25 July 2016, 10:03:04 UTC
2cd59e1 Merge pull request #305 from colesbury/batchnorm Fix BatchNormalization warpSum for pre-Kepler cards 07 July 2016, 23:19:19 UTC
136b547 Fix BatchNormalization warpSum for pre-Kepler cards Fixes #298 07 July 2016, 23:13:12 UTC
86d9f56 Merge pull request #303 from torch/powfix fix for std::pow ambiguousness 04 July 2016, 22:26:51 UTC
0732014 fix for std::pow ambiguousness 04 July 2016, 22:27:05 UTC
d02176d Merge pull request #282 from nicholas-leonard/GPU nn.GPU 03 July 2016, 12:39:23 UTC
d642e59 nn.GPU unit test 02 July 2016, 20:31:06 UTC
0e7f438 Merge pull request #301 from PraveerSINGH/SpatialFullConvolution-noBias Add noBias for nn.SpatialFullConvolution 23 June 2016, 18:57:27 UTC
b80facc nobias in spatial full conv 23 June 2016, 13:22:39 UTC
67c87ef Merge pull request #300 from jonathantompson/volpad Added VolumetricReplicationPadding. 18 June 2016, 15:44:16 UTC
e5181dc Merge pull request #299 from szagoruyko/inplace-hardtanh inplace hardtanh, remove relu6 18 June 2016, 15:42:51 UTC
ca50de6 Added VolumetricReplicationPadding. 17 June 2016, 21:46:42 UTC
2ece1b2 inplace hardtanh, remove relu6 16 June 2016, 15:08:32 UTC
55dd536 Merge pull request #297 from jonathantompson/relu6 Added ReLU6 implementation and test. 14 June 2016, 20:59:37 UTC
caa0b94 Added ReLU6 implementation and test. 14 June 2016, 18:50:48 UTC
bf710ed Merge pull request #294 from kmul00/volmaxunpool Added CUDA version of VolumetricMaxUnpooling 11 June 2016, 15:10:22 UTC
5312313 Merge pull request #296 from torch/fixes fixes for cutorch API changes 11 June 2016, 14:59:47 UTC
b01894b fixes for cutorch API changes 11 June 2016, 14:59:09 UTC
5413524 Added CUDA version of VolumetricMaxUnpooling modified: THCUNN.h new file: VolumetricMaxUnpooling.cu modified: ../../test.lua Freed input storage modified: VolumetricMaxUnpooling.cu 11 June 2016, 10:13:56 UTC
bc1080e adding some comments 06 June 2016, 22:32:53 UTC
40049f6 Merge pull request #291 from torch/volpoolfixx fixing Volumetric Average and Max Pooling for large inputs 05 June 2016, 23:37:03 UTC
d95c58e fixing Volumetric Average and Max Pooling for large inputs 05 June 2016, 23:32:22 UTC
e4e0a8c Merge pull request #290 from torch/errcheck making error checking consistent, always and simple 05 June 2016, 06:15:34 UTC
b1a39d1 making error checking consistent, always and simple 05 June 2016, 06:14:16 UTC
4a14d88 Merge pull request #288 from torch/gccfix fixes for gcc 5.xx 04 June 2016, 04:46:41 UTC
c67cfef fixes for gcc 5.xx 04 June 2016, 04:45:31 UTC
6d31b76 Merge pull request #287 from borisfom/master Improving arch selection function handling 02 June 2016, 04:31:17 UTC
913539d Improving arch selection function handling 01 June 2016, 22:46:54 UTC
597e858 Merge pull request #285 from colesbury/dpt Fix test_DataParallelTable.lua 01 June 2016, 02:52:16 UTC
7296c27 Fix test_DataParallelTable.lua 31 May 2016, 19:30:33 UTC
64d36c2 Merge pull request #283 from torch/revert-281-master Revert "Poring to new CMake" 28 May 2016, 02:40:50 UTC
c605f3c Revert "Poring to new CMake" 28 May 2016, 02:40:40 UTC
1342a08 Merge pull request #281 from borisfom/master Poring to new CMake 27 May 2016, 17:32:19 UTC
c8730c6 Porting to new CMake 26 May 2016, 22:43:00 UTC
bd6659a Added CUDA 5.2 26 May 2016, 22:07:14 UTC
00209fc Merge pull request #279 from andreaskoepf/softmax_3d Use 3d thread blocks in SoftMax for inputs with w*h > 2^16-1 26 May 2016, 05:07:37 UTC
6b02ea8 Use 3d thread blocks in SoftMax for inputs with w*h > 2^16-1 20 May 2016, 21:57:45 UTC
9b74238 Merge pull request #277 from davidsaxton/fix_test Fix SpatialSubSampling (was doing non-atomic writes in backprop). 20 May 2016, 13:22:20 UTC
96a0bdb Fix SpatialSubSampling (was doing non-atomic writes in backprop). Also some changes to test to make it less flaky: - Decrease some output counts to reduce out-of-memory issues. - Decrease some tolerances. - Increase precision of random seed so that multiple test launches at the same time start with different seeds. 20 May 2016, 09:37:11 UTC
772e05c Merge pull request #276 from hughperkins/readme-fixette readme fixette 18 May 2016, 14:53:01 UTC
ae9bb94 readme fixette 18 May 2016, 09:48:05 UTC
aeb2e3f Merge pull request #274 from verdimrc/verdimrc-patch-1 Limit registers when LRNFillScale runs on TK1. 18 May 2016, 05:13:55 UTC
6a59763 Limit registers when LRNFillScale runs on TK1. Fix for torch@cunn#271, to make openface works on Jetson TK1. 18 May 2016, 03:52:37 UTC
e7cc01c Merge pull request #273 from hughperkins/readme-fixettes fixettes for README.md 17 May 2016, 23:20:03 UTC
7280a02 fixettes for README.md 17 May 2016, 23:04:58 UTC
72c7a8a Merge pull request #272 from hughperkins/add-some-doc Add some doc 17 May 2016, 15:17:54 UTC
back to top