-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ESIMD] Fix the ambiguous call error for a corner case of gather() (#…
…12506) Some corner cases with interger scalar operands of gather() may cause ambiguous call error. Examples of such calls: // 0 may be treated as vector `simd_mask` or scalar 'global_offset' auto res1 = gather<T, N>(acc, offsets_simd, 0); // This case is more tricky, but also can confuse C++ FE. auto res2 = gather<T, N>(acc, offsets_simd, 0, mask); Signed-off-by: Klochkov, Vyacheslav N <vyacheslav.n.klochkov@intel.com>
- Loading branch information
1 parent
8d0fa98
commit c1c9184
Showing
2 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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