~again4you/+git/pytorch:tizen

Last commit made on 2024-06-20
Get this branch:
git clone -b tizen https://git.launchpad.net/~again4you/+git/pytorch

Branch merges

Branch information

Name:
tizen
Repository:
lp:~again4you/+git/pytorch

Recent commits

88484bd... by Sangjung Woo

[Spec] Fixed the build error for gcc-14

This patch fixes the build error for gcc-v14.

Change-Id: I2c5ef048470a882c703e4ea6e82ccfd17b4e6f49
Signed-off-by: Sangjung Woo <email address hidden>

6d9c494... by Wook Song

Dist/Tizen: Revise packaging to fix build breaks on gcc 13

To fix build breaks on Tizen gcc-13, this patch revises the files in the
packaging directory as follows:
- Add an additional local patch file
- Update third-party external packages such as breakpad and kineto
- Append -Wno-unused-function -Wno-array-parameter -Wno-missing-braces
  -Wno-nonnull to the default C/CXXFLAGS

Change-Id: Ifdb4acd855b65164768edc32e21a761ff69e6cab
Signed-off-by: Wook Song <email address hidden>

f2b56d9... by Sangjung Woo

[Packaging] Update Protobuf with v3.20.3

This patch updates the protobuf package with v3.20.3.

Change-Id: Ice58247829f689a6dc740cb39adb601f6bc87433
Signed-off-by: Sangjung Woo <email address hidden>

fb54ad2... by Yongjoo Ahn

[packaging/Tizen] Package PyTorch v1.10.2 for Tizen

- Add spec file to package the project
- Add a python script `typing_extensions.py` which used in build time

Change-Id: I9568eb83962da1cb434121fbe4980801868ff0a0
Signed-off-by: Yongjoo Ahn <email address hidden>

bc554c2... by Yongjoo Ahn

[packaging] Import external sources

- Import external sources used for build pytorch

Change-Id: Id42cefb98e2408f2cf3a79bc9939a37e8c97ab4e
Signed-off-by: Yongjoo Ahn <email address hidden>

71f889c... by Nikita Shulga <email address hidden>

fix formatting CIRCLE_TAG when building docs (#67026) (#69876)

Summary:
Similar to pytorch/text#1416
malfet, brianjo

The previous code failed when tags changed from `v0.9.0` to `v0.10.0`. I tested this offline, it would be nice to somehow be actually tag the repo and see that this adds the correct documentation directory to the pytorch/pytorch.github.io repo.

Pull Request resolved: https://github.com/pytorch/pytorch/pull/67026

Reviewed By: saketh-are

Differential Revision: D31843381

Pulled By: malfet

fbshipit-source-id: 21526ad9ed4c1751c2d7f6d621da305f166a7f55

Co-authored-by: mattip <email address hidden>

932ac7b... by Eli Uriegas <email address hidden>

[release/1.10] Remove fgrad_input from slow_conv2d (#64280) (#69622)

Co-authored-by: Peter Bell <email address hidden>

3e412cd... by Eli Uriegas <email address hidden>

[release/1.10] fix pybind issue for get_autocast_cpu_dtype and get_autocast_gpu_dtype (#66396) (#69620)

Co-authored-by: XiaobingSuper <email address hidden>

302ee7b... by Eli Uriegas <email address hidden>

[release/1.10] Fix adaptive_max_pool2d for channels-last on CUDA (#67697) (#69618)

Co-authored-by: Xiao Wang <email address hidden>

0c91a70... by Eli Uriegas <email address hidden>

[release/1.10] TST Adds test for non-contiguous tensors (#64954) (#69617)

* TST Adds test for non-contiguous tensors (#64954)

Summary:
Follow up to https://github.com/pytorch/pytorch/issues/61935

This PR:

1. Adds test for non-contiguous tensors
2. Fixes bug in `NLLLoss` that was catch by the test.

The reason this was not catch in `common_nn` is because `CriterionTest` overrides `test_cuda` but does not call `test_nonconfig`.

cc albanD mruberry jbschlosser walterddr

Pull Request resolved: https://github.com/pytorch/pytorch/pull/64954

Reviewed By: zou3519

Differential Revision: D31174149

Pulled By: jbschlosser

fbshipit-source-id: a16073e59b40ccc01c82ede016b63a8db2e810f5
(cherry picked from commit 0d3bf97fd05ce6ef5ddfb0a100c78ad82914cee4)
Signed-off-by: Eli Uriegas <email address hidden>

* Cherry-pick changes from #64444

Namely, `make_weight` partial into `module_inputs_torch_nn_NLLLoss`

Co-authored-by: Thomas J. Fan <email address hidden>
Co-authored-by: Nikita Shulga <email address hidden>