8000 [reland][ROCm] remove caffe2 from hipify by jeffdaily · Pull Request #151845 · pytorch/pytorch · GitHub
[go: up one dir, main page]

Skip to content

[reland][ROCm] remove caffe2 from hipify #151845

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 35 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
4cb196c
[reland][ROCm] remove caffe2 from hipify
jeffdaily Apr 21, 2025
5d6943d
update hipify version to 2.0.0
jeffdaily Apr 21, 2025
c5a07e0
revert change to MultinomialKernel.cu
jeffdaily Apr 25, 2025
7d7e3fc
do not deprecate unsafe_set_device
jeffdaily Apr 25, 2025
c6f2cdd
change deprecated comments to warnings.warn
jeffdaily Apr 25, 2025
e538b50
use FutureWarning since DeprecationWarning is suppressed by default
jeffdaily Apr 25, 2025
f0fca2f
add missing mappings from hipify_torch project
jeffdaily Apr 26, 2025
c55ca80
remove unused Deprecated.h header
jeffdaily Apr 26, 2025
52f5528
constants.py updated with hipify_torch changes
jeffdaily Apr 26, 2025
7c7bee6
restore _RCCL_HEADER workaround in cuda to hip mappings
jeffdaily Apr 26, 2025
6c7cbe2
missing import os
jeffdaily Apr 28, 2025
0f0a5cc
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily May 7, 2025
43be93f
fix compile errors
jeffdaily May 8, 2025
fced155
missing sparse mappings needed by #153262 in case of land race
jeffdaily May 9, 2025
1bd0263
fix copy/paste typo from last commit
jeffdaily May 9, 2025
9cd9145
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily May 9, 2025
b25bf83
do not map cublas to hipsolver
jeffdaily May 19, 2025
8438823
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily May 19, 2025
d21a727
Add cudaLaunchKernel to cuda_to_hip_mappings
jeffdaily May 19, 2025
fa4eae9
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily May 20, 2025
bfc8336
missing hipify mappings after last merge from main
jeffdaily May 20, 2025
3f7021e
new hipify mappings from #150578
jeffdaily May 30, 2025
dd3ca0b
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily May 30, 2025
9b60804
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily Jun 2, 2025
03a4032
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily Jun 13, 2025
be81282
lint
jeffdaily Jun 16, 2025
e7838ab
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily Jun 16, 2025
9cf12cb
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily Jun 23, 2025
3c4c1aa
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily Jun 28, 2025
b09bba1
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily Jun 30, 2025
c3f73c3
fix build
jeffdaily Jul 1, 2025
ee1f754
add mappings from https://github.com/pytorch/pytorch/pull/157435
jeffdaily Jul 7, 2025
71e5518
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily Jul 7, 2025
dca5868
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily Jul 15, 2025
5a319f3
Merge branch 'main' into hipify_without_caffe_attempt2
jeffdaily Jul 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
missing import os
  • Loading branch information
jeffdaily committed Apr 28, 2025
commit 6c7cbe21f8397e5798f08f3160b1411fadb6ca68
1 change: 1 addition & 0 deletions torch/utils/hipify/cuda_to_hip_mappings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import collections
import os

""" Mapping of CUDA functions, include files, constants, and types to ROCm/HIP equivalents """

Expand Down
Loading
0