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-02-23fix AVX2 detection bugsavx2detectSoumith Chintala
2017-02-23Merge pull request #933 from twitter-forks/bitopsNicholas Léonard
Bitwise operations
2017-02-23Adding test for bitxorPavan Yalamanchili
2017-02-10Fixes to support short and char tensors for bitwise operationsPavan Yalamanchili
2017-02-10Adding documentation for bitwise operationsPavan Yalamanchili
2017-02-10Adding bitand, bitor and bitxorPavan Yalamanchili
2017-02-10Changes to shift operationsPavan Yalamanchili
- renaming lsh -> lshift, rsh -> rshift - adding componentwise functions
2017-02-10Avoiding duplicated unsigned as it causes error on gcc.Conrado Miranda
2017-02-10Added shift operations.Conrado Miranda
2017-02-09Merge pull request #926 from colesbury/viewSoumith Chintala
Add code for 'view' to TH
2017-02-09Merge pull request #929 from colesbury/unsqueezeSoumith Chintala
Add unsqueeze1d to TH
2017-02-09Merge pull request #930 from colesbury/resizeSoumith Chintala
Expose rawSet and rawResize as resizeNd and setStorageNd
2017-02-08Add unsqueeze1d to THSam Gross
Unsqueeze inserts a singleton dimension. Unlike view, it doesn't require the tensor to be contiguous.
2017-02-08Expose rawSet and rawResize as resizeNd and setStorageNdSam Gross
These methods are useful from C because they don't require constructing THLongStorages to wrap the sizes and strides, which can lead to leaked memory in case of an error. Instead the sizes and strides can be represented on the stack using standard C long arrays.
2017-02-07Add code for 'view' to THSam Gross
2017-02-04half<->float conversion cleanup (#901)Boris Fomitchev
* half<->float conversion cleanup
2017-02-02Merge pull request #922 from cliffwoolley/patch-1Soumith Chintala
Remove erroneous proprietary license header
2017-02-01Update THHalf.cCliff Woolley
2017-02-01Remove erroneous proprietary license headerCliff Woolley
This change was approved by NVIDIA Legal, and I am authorized to make the change on behalf of the company.
2017-01-30Merge pull request #921 from apaszke/cat_fixSoumith Chintala
Fix bug in cat (non-contiguous first input)
2017-01-30Add Ubuntu 16.04 lib paths in CMakeAdam Paszke
2017-01-29Fix bug in cat (non-contiguous first input)Adam Paszke
2017-01-24Merge pull request #915 from pavanky/convertSoumith Chintala
Macros to convert between real and accreal
2017-01-18Adding macros to convert between real and accrealPavan Yalamanchili
2017-01-18Remove redundant code in THGenerateAllTypes.hPavan Yalamanchili
2017-01-14Merge pull request #911 from gchanan/convWarningSoumith Chintala
Avoid strict aliasing warning in float/half conversions.
2017-01-14Avoid strict aliasing warning in float/half conversions.Gregory Chanan
Verified that at least for GCC 4.47 this generates identical code.
2017-01-11Merge pull request #908 from CDLuminate/really-fix-arm64-buildSoumith Chintala
simd.h: really fix the arm64 (i.e. Aarch64) build
2017-01-11simd.h: really fix the arm64 (i.e. Aarch64) buildZhou Mo
2017-01-11Merge pull request #906 from torch/installpathsRonan Collobert
provide install paths through require 'torch.paths'
2017-01-11provide install paths through require 'torch.paths'installpathsRonan Collobert
2017-01-10fixing arm64 buildSoumith Chintala
2017-01-06Merge pull request #899 from gchanan/TensorCopyHalfSoumith Chintala
Fix THHalf issues with MSVC.
2017-01-05Fix THHalf issues with MSVC.Gregory Chanan
2017-01-05Merge pull request #895 from colesbury/threadArgErrorHandlerSoumith Chintala
Fix condition for threadArgErrorHandler
2017-01-05Fix condition for threadArgErrorHandlerSam Gross
Some error handlers may not have any data associated with them
2017-01-03Merge pull request #892 from temerick/patch-3Soumith Chintala
Update FindARM.cmake
2017-01-03Update FindARM.cmakeTimothy Emerick
Fix typos
2017-01-02small cmake fixSoumith Chintala
2017-01-01Merge pull request #873 from nkoumchatzky/contiguous-cat-1dSoumith Chintala
Different code path for contiguous tensors along dimension 1 in cat + fix cat bug + fix ambiguity
2017-01-01Merge branch 'master' into contiguous-cat-1dSoumith Chintala
2017-01-01Merge pull request #890 from torch/halfcleanupSoumith Chintala
Removing Half conditional macros, and enabling half compilation by default
2017-01-01Removing TH_GENERIC_USE_HALF, TH_NATIVE_HALF, TH_GENERIC_NO_MATH (replaced ↵soumith
where appropriate with TH_REAL_IS_HALF), removed half from THGenerateAllTypes, added an explicit THGenerateHalfType.h
2017-01-01Merge pull request #889 from torch/revert-888-halfgenericSoumith Chintala
Revert "TH_GENERIC_USE_HALF=1 by default, half enabled by default"
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