Skip to content
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

[SYCLomatic] Support more python script migration rules #2750

Merged
merged 3 commits into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions clang/test/dpct/python_migration/case_006/expected.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,8 @@

torch.xpu.set_stream(st)
xpu.set_stream(st)

if torch.xpu.current_stream() != torch.xpu.current_stream():
print("Not default stream")
device = torch.device('xpu')
extra_cuda_cflags=['-ffast-math', '']
5 changes: 5 additions & 0 deletions clang/test/dpct/python_migration/case_006/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,8 @@

torch.cuda.set_stream(st)
cuda.set_stream(st)

if torch.cuda.current_stream() != torch.cuda.default_stream():
print("Not default stream")
device = torch.device('cuda')
extra_cuda_cflags=['--use_fast_math', '--allow-unsupported-compiler']
Original file line number Diff line number Diff line change
Expand Up @@ -247,3 +247,35 @@
PythonSyntax: CUDA_HOME
In: CUDA_HOME
Out: SYCL_HOME

- Rule: rule_cuda_flag_use_fast_math
Kind: PythonRule
Priority: Fallback
MatchMode: Partial
PythonSyntax: cuda_flag_use_fast_math
In: '--use_fast_math'
Out: '-ffast-math'

- Rule: rule_cuda_flag_allow-unsupported-compiler
Kind: PythonRule
Priority: Fallback
MatchMode: Partial
PythonSyntax: cuda_flag_allow-unsupported-compiler
In: '--allow-unsupported-compiler'
Out: ''

- Rule: rule_cuda_default_stream
Kind: PythonRule
Priority: Fallback
MatchMode: Full
PythonSyntax: cuda_default_stream
In: torch.cuda.default_stream
Out: torch.xpu.current_stream

- Rule: rule_torch_device_cuda
Kind: PythonRule
Priority: Fallback
MatchMode: Full
PythonSyntax: torch_device_cuda
In: torch.device('cuda')
Out: torch.device('xpu')