[NPU]:Added support for the poly_norm operator#1114
Open
TianHao324 wants to merge 2 commits intolinkedin:mainfrom
Open
[NPU]:Added support for the poly_norm operator#1114TianHao324 wants to merge 2 commits intolinkedin:mainfrom
TianHao324 wants to merge 2 commits intolinkedin:mainfrom
Conversation
Contributor
Author
|
benchmark: |
Contributor
Author
|
@Tcc0403 would you mind having a preview? |
Tcc0403
reviewed
Mar 2, 2026
| b = tl.load(B_ptr) | ||
|
|
||
| # Grid-stride loop over row blocks | ||
| for i in tl.range(num_iterations, num_stages=NUM_STAGES): |
Contributor
Author
There was a problem hiding this comment.
OK, I have completed the revision
noemotiovon
reviewed
Mar 2, 2026
| eps, | ||
| BLOCK_SIZE_M: tl.constexpr, | ||
| BLOCK_SIZE_N: tl.constexpr, | ||
| NUM_STAGES: tl.constexpr, |
Contributor
There was a problem hiding this comment.
Triton-Ascend does not support num_warps and num_stages due to hardware architecture differences; autotune only supports block size and multibuffer. Remove these parameters from all Ascend NPU kernels and kernel launches to avoid no-op / misleading config.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Dual-Kernel Strategy
n_cols <= 2048): 2D tensor loading with grid-stride loopsn_cols > 2048): Column blocking to prevent UB overflowNPU Core-Aware Grid Sizing
min(num_cores, num_row_blocks)Optimized Backward Pass
Memory-Aware Block Size
compute_default_tiling_strategyfor optimal block sizingTesting Done
make testto ensure correctnessmake checkstyleto ensure code stylemake test-convergenceto ensure convergence