Wei-Sheng Chin
|
bca75fe97a
|
[MAIA] [Autocast] Enable autocast on MAIA device (#148511)
Fixes #148510.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/148511
Approved by: https://github.com/albanD
|
2025-03-18 03:46:22 +00:00 |
|
Richard Barnes
|
3f5b59eef4
|
[codemod] c10::optional -> std::optional in caffe2/aten/src/ATen/DeviceGuard.h +117 (#126901)
Summary:
Generated with
```
fbgs -f '.*\.(cpp|cxx|cc|h|hpp|cu|cuh)$' c10::optional -l | perl -pe 's/^fbsource.fbcode.//' | grep -v executorch | xargs -n 50 perl -pi -e 's/c10::optional/std::optional/g'
```
- If you approve of this diff, please use the "Accept & Ship" button :-)
(117 files modified.)
Test Plan: Sandcastle
Reviewed By: palmje
Pull Request resolved: https://github.com/pytorch/pytorch/pull/126901
Approved by: https://github.com/Skylion007, https://github.com/eqy
|
2024-05-24 00:26:15 +00:00 |
|
Richard Barnes
|
ed327876f5
|
[codemod] c10:optional -> std::optional (#126135)
Generated by running the following from PyTorch root:
```
find . -regex ".*\.\(cpp\|h\|cu\|hpp\|cc\|cxx\)$" | grep -v "build/" | xargs -n 50 -P 4 perl -pi -e 's/c10::optional/std::optional/'
```
`c10::optional` is just an alias for `std::optional`. This removes usages of that alias in preparation for eliminating it entirely.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/126135
Approved by: https://github.com/Skylion007, https://github.com/malfet, https://github.com/albanD, https://github.com/aaronenyeshi
|
2024-05-14 19:35:51 +00:00 |
|
Ashwin Hari
|
5f5778476a
|
rename ort to maia (#123265)
Fixes #123264
Pull Request resolved: https://github.com/pytorch/pytorch/pull/123265
Approved by: https://github.com/albanD
|
2024-04-23 00:33:25 +00:00 |
|