Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/cutorch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-11-03making dot to have an accreal return type (consistent with CPU)dotfixsoumith
2016-11-02TH_INDEX_BASE for nonzerosoumith
2016-11-01Merge pull request #577 from dbolkensteyn/mathscanSoumith Chintala
CMake: Install generic/THCTensorMathScan.h
2016-11-01CMake: Install generic/THCTensorMathScan.hDinesh Bolkensteyn
2016-11-01Merge pull request #576 from torch/distfixSoumith Chintala
dist, cumsum, cumprod for multiple types
2016-11-01adding multiple types for distdistfixsoumith
2016-11-01adding multiple types for cumsum, cumprodsoumith
2016-11-01Merge pull request #575 from torch/powtraceSoumith Chintala
adding multiple types for pow, trace, diag, tril, triu
2016-11-01adding multiple types for pow, trace, diag, tril, triusoumith
2016-11-01Merge pull request #574 from torch/nonzeroSoumith Chintala
implement torch.nonzero
2016-11-01implement torch.nonzerosoumith
2016-10-28Merge pull request #573 from gchanan/hdotCuda8Soumith Chintala
Add hdot support for CUDA 8.
2016-10-28Add hdot support for CUDA 8.Gregory Chanan
If not compiled with CUDA 8+, an error is raised indicating that CUDA 8.0+ is required.
2016-10-27Merge pull request #572 from gchanan/doubleTensorMulSoumith Chintala
Enable '*' for CudaDoubleTensors.
2016-10-27Enable '*' for CudaDoubleTensors.Gregory Chanan
2016-10-26Merge pull request #569 from colesbury/voidSoumith Chintala
Use void for no-arg functions
2016-10-26Use 'void' for no-arg functionsSam Gross
2016-10-26pushing THCState back to the headerthcstateheadersoumith
2016-10-25Merge pull request #566 from torch/cachedeviceSoumith Chintala
Store the device in THCStorage
2016-10-25Store the device in THCStoragesoumith
2016-10-25Merge pull request #565 from torch/allocatorupdatesSoumith Chintala
allow storages to use custom allocators
2016-10-25Merge pull request #562 from howard0su/masterSoumith Chintala
we can use _NPROCESSOR_CONF instead of a hack for tegra
2016-10-25allocator updatessoumith
2016-10-25some bugfixes for THCsoumith
2016-10-25Merge branch 'master' into myHoward Su
2016-10-25we can use _NPROCESSOR_CONF instead of a hack for tegraHoward Su
2016-10-20Merge pull request #558 from gchanan/genericDeviceTensorUtilsSoumith Chintala
Add generic type support for toDeviceTensor.
2016-10-20Add generic type support for toDeviceTensor.Gregory Chanan
2016-10-18correct input types to lua_pushbooleansoumith
2016-10-17gcc 5 + cuda < 8 workaround improvedSoumith Chintala
2016-10-17Merge pull request #555 from colesbury/streamsSoumith Chintala
Fix cutorch.getStream()
2016-10-17Fix cutorch.getStream()Sam Gross
state->numUserStreams does not include the NULL stream, which is stored in res->streams[i]
2016-10-17guards for halfSoumith Chintala
2016-10-17Merge pull request #554 from torch/catmultipleSoumith Chintala
torch.cat for multiple cuda types
2016-10-17torch.cat for multiple cuda typesSoumith Chintala
2016-10-17Update cutorch-1.0-0.rockspecSoumith Chintala
2016-10-17Merge pull request #550 from colesbury/streamsSoumith Chintala
Add stream API that is not based on indices
2016-10-16Merge pull request #548 from BTNC/win-msvcSoumith Chintala
make cunn compile with msvc && fix compilation failure for linux/mac os
2016-10-15Add stream API that is not based on indicesSam Gross
This implements the THC code so that we can expose streams as objects instead of simply referring to them by indices. This is not exposed in Lua yet.
2016-10-14Merge pull request #549 from colesbury/allocatorSoumith Chintala
Fix caching allocator when used from multiple Lua threads
2016-10-14Fix caching allocator when used from multiple Lua threadsSam Gross
Use a single, global THCCachingAllocator instance. Previously, each Lua thread had its own THCCachingAllocator instance. However, threads can share storages, which means a segment could be allocated from on THCCachingAllocator and freed on another, which breaks. Fixes #539
2016-10-14make cunn compile with msvc && fix compilation failure for linux/mac osRui Guo
2016-10-14adding hasHalfInstructions and hasFastHalfInstructions exposed to luasoumith
2016-10-14Merge pull request #547 from torch/p100fixSoumith Chintala
removing CUDA_HALF_INSTRUCTIONS and enabling hgemm only for P100
2016-10-14removing CUDA_HALF_INSTRUCTIONS and enabling hgemm only for P100p100fixsoumith
2016-10-14Merge pull request #546 from torch/revert-543-win-msvcSoumith Chintala
Revert "changes to make cunn compile on windows with msvc"
2016-10-14Revert "changes to make cunn compile on windows with msvc"Soumith Chintala
2016-10-13Merge pull request #543 from BTNC/win-msvcSoumith Chintala
changes to make cunn compile on windows with msvc
2016-10-13changes to make cunn compile on windows with msvcRui Guo
2016-10-13Merge pull request #542 from gchanan/atomicAddStaticInlineSoumith Chintala
Make atomicAdd functions static inline.