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

github.com/torch/torch7.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-01Revert "TH_GENERIC_USE_HALF=1 by default, half enabled by default"revert-888-halfgenericSoumith Chintala
2017-01-01Merge pull request #888 from torch/halfgenericSoumith Chintala
TH_GENERIC_USE_HALF=1 by default, half enabled by default
2017-01-01TH_GENERIC_USE_HALF=1 by default, half enabled by defaulthalfgenericsoumith
2016-12-31cmake C flags fixSoumith Chintala
2016-12-31adding TH_SO_VERSION optionSoumith Chintala
2016-12-31Merge pull request #886 from torch/simdcpuidfixSoumith Chintala
use __get_cpuid when available
2016-12-31use __get_cpuid when availableSoumith Chintala
2016-12-30Merge pull request #875 from atkayu/add_histc2Soumith Chintala
Add a new function bhistc to calculate histogram of batch of images only once
2016-12-29Merge pull request #882 from amrobbins/ppcvectorinstxnsSoumith Chintala
Add support for VSX vector instructions on PPC
2016-12-29Add support for torch.HalfTensor (#874)gchanan
* Add support for torch.HalfTensor. * Improvements/Simplifications for torch.HalfTensor. Improvements/Simplifications: 1) Defines half type as TH_Half, so as to not conflict with cutorch version. Previously, these were defined as the same "half" type and required proper ordering of includes to ensure type was only defined once, which would have affected all downstream projects. 2) No longer generates math functions that are not actually defined on torch.HalfTensor, e.g. maskedFill, map, etc. 3) Adds tests for all available torch.HalfTensor functions 4) Allows compiling without TH_GENERIC_USE_HALF (so if there's a problem can just unset that in CMakeLists rather than backing out) 5) Some simplifications: removes a new copy optimization and some TH_HALF literal definitions Limitations: Because match functions are not defined, some "non-math" operators on torch.HalfTensor give an error message, e.g. __index__/__newindex__ with a ByteTensor apply a mask, but masks aren't implemented. These limitations aren't always obvious, (e.g. for documentation purposes), but they should always give an error message. * Rename TH_HALF to THHalf.
2016-12-29Add support for VSX vector instructions on PPCAndrew Robbins
Added support for the fill, diff, scale, mul and add functions using PPC CPU vector instructions. These are used in place of the versions of these functions written for x86, when compiled on PPC. This fixes a compile failure on PPC
2016-12-28fixed the writing error in math docatkayu
2016-12-28rename histc2 to bhistcatkayu
2016-12-22add a new function histc2atkayu
2016-12-20Merge pull request #872 from pavanky/modfixSoumith Chintala
correctness fixes for mod and remainder for integer type tensors.
2016-12-20correctness fixes for mod and remainder for integer type tensors.Pavan Yalamanchili
2016-12-15fix bounds issue in snprintfsoumith
2016-12-14removing ifdefsoumith
2016-12-14small fixes to allocatorsoumith
2016-12-14Merge pull request #868 from vfonov/fix_armSoumith Chintala
Fixed compilation on Raspberry PI without NEON, fixes #807
2016-12-14Fixed compilation on Raspberry PI without NEONVladimir S. FONOV
2016-11-28Merge pull request #851 from BTNC/winSoumith Chintala
2 trivial changes to compile with msvc
2016-11-28changes to compile with msvcRui Guo
2016-11-22Merge pull request #845 from killeent/apply-documentationSoumith Chintala
Add some documentation for APPLY and DIM_APPLY macros
2016-11-22Add some documentation for APPLY and DIM_APPLY macrosTrevor Killeen
2016-11-15make the tolerance higher for logNormal testSoumith Chintala
2016-11-15Merge pull request #839 from Atcold/fix_ASIMDSoumith Chintala
Fix compilation for ASIMD, fix #766
2016-11-15Fix compilation for ASIMDAlfredo Canziani
On ARMv8, neon is inherit and instead listed as 'asimd' in /proc/cpuinfo Replace assembly with C Original authors: - @dusty-nv FindARM-patch.txt CMakeLists-patch.txt - @rtarquini NEON.c
2016-11-14[PATCH] Improve potrf error message. (#189)Brandon Amos
2016-11-11Update random.mdSoumith Chintala
2016-11-11Merge pull request #834 from killeent/lognormal-fixSoumith Chintala
Fix implementation of logNormal
2016-11-11Fix implementation of logNormalTrevor Killeen
2016-11-03Merge pull request #828 from apaszke/lapackSoumith Chintala
Add more size checks and improve some LAPACK error messages
2016-11-02Add more size checks and improve some LAPACK error messagesAdam Paszke
2016-11-02Merge pull request #827 from howard0su/freebsdSoumith Chintala
Fix compile error on freebsd
2016-11-02Fix compile error on freebsdHoward Su
2016-10-27Merge pull request #820 from jdmartin86/patch-1Soumith Chintala
Updated maskedCopy example #1
2016-10-27Updated maskedCopy example #1John Martin
Original call to maskedCopy() only included y, not the mask. Update added the mask to the first argument.
2016-10-27Update .travis.ymlSoumith Chintala
2016-10-26Merge pull request #819 from colesbury/voidSoumith Chintala
Fix no-arg function prototypes
2016-10-26Fix no-arg function prototypesSam Gross
2016-10-26Merge pull request #817 from torch/fixmmapSoumith Chintala
fix bug in mmaping
2016-10-26fix bug in mmapingfixmmapsoumith
2016-10-24Merge pull request #812 from howard0su/masterSoumith Chintala
Fix the reference so that trepl can find the right document
2016-10-24Fix the reference so that trepl can find the right documentHoward Su
2016-10-17Merge pull request #800 from colesbury/openmpSoumith Chintala
Expose OpenMP num threads through TH lib
2016-10-17Expose OpenMP num threads through TH libSam Gross
Expose omp_set_num_threads and similar APIs through the TH lib. This means a third-party libaries using TH don't need to be compiled with OpenMP support just to control the number of TH OMP threads.
2016-10-13Merge pull request #797 from BTNC/winSoumith Chintala
change timeSort test to work on windows
2016-10-13change timeSort test to work on windowsRui Guo
2016-10-13Merge pull request #796 from howard0su/masterSoumith Chintala
Fix error when run torch.test multi times