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
2016-12-20Half type (#870)fp16Soumith Chintala
* torch.HalfTensor
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
2016-10-13Fix error when run torch.test multi timesJun Su
2016-10-12Merge pull request #793 from howard0su/masterSoumith Chintala
Fix build when NEON is supported
2016-10-12Fix build when NEON is supportedHoward Su
2016-10-07Merge pull request #785 from BTNC/replace-longSoumith Chintala
replace long with ptrdiff_t for memory size/offset, element counts etc
2016-10-03‘fix compilation error: 'orr' loop initial declarations are only allowed ↵Rui Guo
in C99 mode
2016-10-03replace long with ptrdiff_t for memory size/offset etcRui Guo
2016-10-02fix arm neon bugsoumith
2016-10-01a couple of changes for win32 (#779)BTNC
* windows timer with milliseconds
2016-09-30Merge pull request #782 from apaszke/error_handlersSoumith Chintala
Allow changing the default error handler for all threads
2016-09-30Allow changing the default error handler for all threadsAdam Paszke
THSetErrorHandler still modifies per-thread pointers, but THSetDefaultErrorHandler allows to set a handler that's used by all threads that haven't specified any function.
2016-09-27windows high resolution timer with a few makefile changes (#776)BTNC
windows high resolution timer
2016-09-26Merge pull request #774 from BTNC/masterSoumith Chintala
bug fix for read/writeLong in THMemoryFile and 2 test files change for windows
2016-09-26Merge remote-tracking branch 'upstream/master'Rui Guo
2016-09-26bug fix for read/writeLong in THMemoryFileRui Guo
2016-09-19Merge pull request #768 from BTNC/masterSoumith Chintala
fix cpuid ecx; change to compile with msvc; compile with MKL on windows