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

Rocm warp size fix #5402

Merged
merged 9 commits into from
May 17, 2024
Prev Previous commit
Next Next commit
Set default value of rocm_wavefront_size to 32
  • Loading branch information
rraminen committed May 14, 2024
commit 8229706edf582a6ff8f1d3e14bfd1c87cd92f7cd
2 changes: 1 addition & 1 deletion op_builder/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def get_rocm_wavefront_size():
result = subprocess.check_output(rocm_wavefront_size_cmd, shell=True)
rocm_wavefront_size = result.decode('utf-8').strip()
except subprocess.CalledProcessError:
rocm_wavefront_size = "default"
rocm_wavefront_size = "32"
OpBuilder._rocm_wavefront_size = rocm_wavefront_size
return OpBuilder._rocm_wavefront_size

Expand Down