You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The "scatter_add" op with the deterministic mode in XPU device is not implemented, it will report that "scatter_add_kernel" does not have a deterministic implementation in UT.
Just like the implementation of CUDA, we need to check _deterministic_algorithms in scatter_add op for the XPU device.
EikanWang
changed the title
avoid gpuAtomicAdd for XPU device for satter_add by deterministic mode
[WIP] avoid gpuAtomicAdd for XPU device for satter_add by deterministic mode
Oct 15, 2024
PenghuiCheng
changed the title
[WIP] avoid gpuAtomicAdd for XPU device for satter_add by deterministic mode
[WIP] avoid atomic add for XPU device in satter_add by deterministic mode
Oct 16, 2024
May I know what's the impact? Does it lead to any case failure?
Yes, the UT covered in https://github.com/intel/torch-xpu-ops/blob/main/test/xpu/test_scatter_gather_ops_xpu.py.
"test_scatter_reduce_mean_xpu_bfloat16",
"test_scatter_reduce_mean_xpu_float16",
"test_scatter_reduce_mean_xpu_float32",
"test_scatter_reduce_mean_xpu_float64",
"test_scatter_reduce_mean_xpu_int16",
"test_scatter_reduce_mean_xpu_int32",
"test_scatter_reduce_mean_xpu_int64",
"test_scatter_reduce_mean_xpu_int8",
"test_scatter_reduce_mean_xpu_uint8"
EikanWang
changed the title
[WIP] avoid atomic add for XPU device in satter_add by deterministic mode
[Intel GPU] Avoid atomic add for XPU device in satter_add by deterministic mode
Nov 11, 2024
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The "scatter_add" op with the deterministic mode in XPU device is not implemented, it will report that "scatter_add_kernel" does not have a deterministic implementation in UT.
Just like the implementation of CUDA, we need to check _deterministic_algorithms in scatter_add op for the XPU device.
The UT is in: https://github.com/intel/torch-xpu-ops/blob/main/test/xpu/test_scatter_gather_ops_xpu.py. We reused PyTorch UT code.
Now the UT case is skipped in torch-xpu-ops test. Will open it when this PR is merged.