Skip to content

Tags: FreeScienceCommunity/pytorch

Tags

v1.5.1

Toggle v1.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[ONNX] Fix pow op export [1.5.1] (pytorch#39791)

* [ONNX] Fix pow op export (pytorch#38065)

Summary:
Fix pow type cast for opset 9 and update opset 12
Pull Request resolved: pytorch#38065

Differential Revision: D21485353

Pulled By: malfet

fbshipit-source-id: 3993e835ffad07b2e6585eb5cf1cb7c8474de2ec

* Update ort-nighly version as suggested in pytorch#39685 (comment)

* Apply changes from pytorch#37846 to  `test_topk_smallest_unsorted`

Co-authored-by: neginraoof <[email protected]>

v1.5.1-rc1

Toggle v1.5.1-rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[ONNX] Fix pow op export [1.5.1] (pytorch#39791)

* [ONNX] Fix pow op export (pytorch#38065)

Summary:
Fix pow type cast for opset 9 and update opset 12
Pull Request resolved: pytorch#38065

Differential Revision: D21485353

Pulled By: malfet

fbshipit-source-id: 3993e835ffad07b2e6585eb5cf1cb7c8474de2ec

* Update ort-nighly version as suggested in pytorch#39685 (comment)

* Apply changes from pytorch#37846 to  `test_topk_smallest_unsorted`

Co-authored-by: neginraoof <[email protected]>

v1.5.0

Toggle v1.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[v.1.5.0] Ensure linearIndex of advanced indexing backwards is contig… (

pytorch#36962)

* [v.1.5.0] Ensure linearIndex of advanced indexing backwards is contiguous.

This is a more straightforward solution to the problem than pytorch#36957; I don't know about the relative performance.

Fixes: pytorch#36956

ghstack-source-id: 43c48ea
Pull Request resolved: pytorch#36959

* Fix test.

v1.5.0-rc5

Toggle v1.5.0-rc5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[v.1.5.0] Ensure linearIndex of advanced indexing backwards is contig… (

pytorch#36962)

* [v.1.5.0] Ensure linearIndex of advanced indexing backwards is contiguous.

This is a more straightforward solution to the problem than pytorch#36957; I don't know about the relative performance.

Fixes: pytorch#36956

ghstack-source-id: 43c48ea
Pull Request resolved: pytorch#36959

* Fix test.

v1.5.0-rc4

Toggle v1.5.0-rc4's commit message
make simple executor the default for OSS

v1.5.0-rc3

Toggle v1.5.0-rc3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Use counter instead of vector of futures in `_parallel_run` (pytorch#…

…36159) (pytorch#36334)

Summary:
This should be faster than allocating one mutex, flag and conditional variable per task.

Using `std::atomic<size_t>` to count remaing tasks is not sufficient,
because modification of remaining counter and signalling conditional variable must happen atomically,
otherwise `wait()` might get invoked after `notify_one()` was called.
Pull Request resolved: pytorch#36159

Test Plan: CI

Differential Revision: D20905411

Pulled By: malfet

fbshipit-source-id: facaf599693649c3f43edafc49f369e90d2f60de
(cherry picked from commit 986a8fd)
Signed-off-by: Eli Uriegas <[email protected]>

Co-authored-by: Nikita Shulga <[email protected]>

v1.5.0-rc2

Toggle v1.5.0-rc2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Revert "Fix handling of non-finite values in topk (pytorch#35253)" (p…

…ytorch#35582)

This reverts commit b12579d.

This patch in-and-of itself looks fine, but it's causing some AMP tests to fail.

v1.4.1

Toggle v1.4.1's commit message
Updating fbgemm

v1.5.0-rc1

Toggle v1.5.0-rc1's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
seemethere Eli Uriegas
.circleci: Remove quotes from --git-dir

git doesn't handle the escapes correctly so let's just not put them
altogether.

Signed-off-by: Eli Uriegas <[email protected]>

v1.4.0

Toggle v1.4.0's commit message
add python 3.8 workaround