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
2019-04-18Update README.mdHEADmasterSoumith Chintala
2018-07-03Development Status in README.md (#1158)Sam Stites
* add development status * make changes
2017-09-26revert "fix empty Tensor mmap"Soumith Chintala
2017-09-11simplify the codelichen
2017-09-10Optimize pow for different exponents and add testsFrancisco Massa
2017-09-07Adjust error message for ViewRudy Bunel
When the size given is incorrect for the number of elements, the current error message is: `size '[1 x 1 x 5]' is invalid for input of with 1 elements at /pytorch/torch/lib/TH/THStorage.c:41` This replaces it by `size '[1 x 1 x 5]' is invalid for input with 1 elements at /pytorch/torch/lib/TH/THStorage.c:41` which is grammatically better
2017-09-04fix bug for THTensor data accesslichen
2017-08-28remove repetition of libquadmath in TH CMakeListsSoumith Chintala
2017-08-25Fix typos.Zhou Mo
2017-08-25add ones_like and zeros_likeAlykhan Tejani
2017-08-25Not changing dimension size for expand when target size is -1rluo
2017-08-17fixing the bug with squeezing a singleton dimension in torch.min and torch.maxAnton Osokin
2017-08-15move clamped random functions out of cwrap and into THTrevor Killeen
2017-08-15Support __neg__, .neg(), and neg_() for Long, Int, Short tensor types.Gregory Chanan
2017-08-05move normal variants to TH/THCTrevor Killeen
2017-07-20update docs (#1062)LambdaWill
* Update tensor.md * Update maths.md * Update tester.md * Update timer.md * Update random.md * Update random.md * Update file.md * revert random.md * Update pipefile.md
2017-07-19static MKL detection and linkage fixesSoumith Chintala
2017-07-15fix cwrap std/var entrySoumith Chintala
2017-07-15Wrap unbiased flag in var, std, varall, stdallLuca Antiga
2017-07-14fix empty Tensor mmapSoumith Chintala
2017-07-13Advanced Indexing: Calculate linear offsets directly on the GPU when working ↵Trevor Killeen
with CUDA Tensors
2017-07-12Avoid two unnecessary copies in addmm backwardSam Gross
The `r_` and `t` tensors become different objects, even though they point to the same data. Avoid the copy whenever beta=0.
2017-07-12Fixing arctan2 documentation (#1060)Amartya Sanyal
2017-07-11Implementation of Alias Multinomial for faster Multinomial sampling (#1046)Amartya Sanyal
2017-07-10Fix sdot_ bug for runtime F2C symbol conflicts by using cblas where availableLeonid Vlasenkov
2017-07-04remove unnecessary contiguous assertionSoumith Chintala
2017-07-04Have median reduce over all dims and return just the value when dim is not ↵Luca Antiga
provided
2017-07-04Add critical section to BLAS gemm.Bruno Rosa
This is needed because of possible races in SpatialConvolutionMM (and others that use gemm) if the BLAS library is not thread-safe. In terms of performance, there's not much benefit to run two gemms in parallel, because the BLAS libraries have their own all-occupying gemms anyways.
2017-06-23Advanced Indexing Part 1 -- Purely Integer Array IndexingTrevor Killeen
2017-06-22TensorLib/Aten --> changes required in pytorchTrevor Killeen
2017-06-22Support out-of-place broadcast type definitions.Gregory Chanan
2017-06-22btrifact: Make pivoting optional.Brandon Amos
2017-06-22improving TH error messages in Apply macrosSoumith Chintala
2017-06-13Short-circuit copy if src and dest are equal.Edward Z. Yang
Signed-off-by: Edward Z. Yang <ezyang@fb.com>
2017-06-11fix typeSoumith Chintala
2017-06-11Remove raiseErrors from THTensor functions, have THStorage functions take an ↵Gregory Chanan
error_buffer to return a proper error message while being able to handle memory management correctly from calling function.
2017-06-11Incorporate review comments:Gregory Chanan
1) Line up trailing dimensions in broadcast docs. 2) remove unnecessary expand_as in common_nn test. 3) use view in tensor_str instead of resize_. 4) newExpand remove raiseErrors change. 5) clarify expandedSizes/expandedStrides parameters in inferExpandGeometry. 6) simplify inferSize2/inferSizeN implementations. 7) use new-style classes for warning.
2017-06-11Clarify a number of comments.Gregory Chanan
2017-06-11Add broadcasting support for copy_, simplify code generation by moving a lot ↵Gregory Chanan
of currently generated code to expand_utils.
2017-06-11Add broadcasting support for masked_copy, masked_fill.Gregory Chanan
2017-06-11Use THSize_isSameSizeAs, instead of THTensor_(isSameSizeAs) in order to ↵Gregory Chanan
compare sizes of tensors with different data types.
2017-06-11Properly clean up expand error cases.Gregory Chanan
2017-06-11Include simple broadcasting example and demonstrate lining up trailing ↵Gregory Chanan
dimensions.
2017-06-11Support "fused" ops: addcmul/addcdiv.Gregory Chanan
2017-06-11Add Infer Size N, for expansion of fused operations.Gregory Chanan
2017-06-11Expand improvementsGregory Chanan
1) Rename calculateExpandGeometry to inferExpandGeometry for consistency 2) Simplify inferExpandGeometry implementation by using a single pass through dimensions 3) Implement a two operand expansion, expand2. 4) Implement versions that return error code to use for fallback to equal nElem support.
2017-06-07Make sure the number of MKL and OpenMP threads matchSam Gross
Otherwise, on many machines, the size of the OpenMP thread pool will change between MKL and our OpenMP enabled functions. The constant thread creation and destruction results in worse performance and leaks memory on GCC 5.4
2017-06-07standalone macrosSoumith Chintala
2017-05-26Merge pull request #948 from twitter-forks/static-buildsNicholas Léonard
New helper macro + fixes for old gcc
2017-05-26Adding support for ADD_TORCH_LIBRARY macroLuke Alonso