Skip to content

feat: Add row_starts and dsa_graph_safe to topk#3133

Merged
kahyunnam merged 4 commits intoflashinfer-ai:mainfrom
zianglih:dsa-graph-safe
Apr 24, 2026
Merged

feat: Add row_starts and dsa_graph_safe to topk#3133
kahyunnam merged 4 commits intoflashinfer-ai:mainfrom
zianglih:dsa-graph-safe

Conversation

@zianglih
Copy link
Copy Markdown
Contributor

@zianglih zianglih commented Apr 21, 2026

📌 Description

@HumansAnd
Parent PR: #3095
SGLang PR: sgl-project/sglang#22851

Add row_starts and dsa_graph_safe for SGLang DSA integration.

🔍 Related Issues

sgl-project/sglang#22851 (comment)

🚀 Pull Request Checklist

Thank you for contributing to FlashInfer! Before we review your pull request, please make sure the following items are complete.

✅ Pre-commit Checks

  • I have installed pre-commit by running pip install pre-commit (or used your preferred method).
  • I have installed the hooks with pre-commit install.
  • I have run the hooks manually with pre-commit run --all-files and fixed any reported issues.

If you are unsure about how to set up pre-commit, see the pre-commit documentation.

🧪 Tests

  • Tests have been added or updated as needed.
  • All tests are passing (unittest, etc.).

Reviewer Notes

Summary by CodeRabbit

  • New Features

    • Added dsa_graph_safe flag to top-k APIs to opt into DSA-graph safe execution.
    • Added optional row_starts parameter to page-table and ragged top-k transforms to support per-row score offsets.
  • Behavior

    • When dsa_graph_safe=True the optimized clusters fast-path is disabled to ensure safe execution.
  • Tests

    • Added tests covering row_starts behavior for page-table and ragged transforms.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 21, 2026

📝 Walkthrough

Walkthrough

Threads a new boolean flag dsa_graph_safe and an optional row_starts tensor through the Top-K stack: Python API, FFI bindings, C++ dispatch, CUDA headers/kernels, and tests. Dispatch and kernel signatures, per-row indexing, vector-size selection, and filtered-topk control flow were updated accordingly.

Changes

Cohort / File(s) Summary
Bindings / FFI
csrc/flashinfer_topk_binding.cu
Exported Top-K entrypoints signatures extended to accept bool dsa_graph_safe; page-table and ragged transforms also accept Optional<TensorView> maybe_row_starts.
C++ implementation
csrc/topk.cu
Threaded dsa_graph_safe through radix_topk* functions and dispatch calls; added validation for optional row_starts and passed a row_starts_ptr into dispatch.
Python API
flashinfer/topk.py
Added dsa_graph_safe: bool = False to top-k APIs; page-table and ragged transforms gain row_starts: Optional[torch.Tensor] = None; clusters fast-path disabled when dsa_graph_safe=True or row_starts provided; args forwarded to module.
CUDA headers & kernels
include/flashinfer/topk.cuh
Added const IdType* row_starts kernel parameter across unified Radix/FilteredTopK paths; page-table lookups offset by row_start; ComputeFilteredTopKVecSize and dispatchs accept dsa_graph_safe to force vec_size=1 when set; dispatch wrappers updated to accept row_starts/dsa_graph_safe.
Tests
tests/utils/test_topk.py
Reference page-table/ragged transforms accept optional row_starts and adjust slicing/indexing; new parametrized test test_top_k_transform_with_row_starts added to validate behavior.

Sequence Diagram(s)

sequenceDiagram
  participant Py as Python API
  participant FFI as C++ FFI Binding
  participant Dispatch as TopK Dispatch
  participant Kernel as CUDA Kernel
  Py->>FFI: call radix_topk(..., dsa_graph_safe, maybe_row_starts)
  FFI->>Dispatch: forward tensors, dsa_graph_safe, row_starts_ptr
  Dispatch->>Dispatch: choose path (FilteredTopK vs Radix) using dsa_graph_safe, tie_break
  Dispatch->>Kernel: launch kernel with row_starts, dsa_graph_safe
  Kernel-->>Dispatch: return results/status
  Dispatch-->>FFI: propagate results
  FFI-->>Py: return tensors
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

Possibly related PRs

Suggested reviewers

  • aleozlx
  • yzh119
  • sricketts
  • cyx-6
  • bkryu
  • nv-yunzheq
  • jiahanc

Poem

🐰
Row starts mark where scores begin,
A safe graph flag keeps vecs to one,
From Python call to CUDA run,
Offsets thread and kernels hum,
Hopping through layers—Top-K done!

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 36.67% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely summarizes the main changes: adding two new parameters (row_starts and dsa_graph_safe) to the topk functionality.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description check ✅ Passed The PR description includes the required template structure with all main sections populated: Description, Related Issues, and completed Pre-commit and Tests checklists.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@zianglih zianglih changed the title feat: Add a dsa_graph_safe flag to topk feat: Add a dsa_graph_safe flag to topk Apr 21, 2026
Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces deterministic tie-breaking support for top-k operations, enabling users to specify whether to prefer smaller or larger indices for equal values at the selection boundary. The changes include the addition of a TopKTieBreak enum, updates to the CUDA kernels and Python API, and the implementation of a DeterministicContiguousCollect helper for contiguous index traversal. Benchmarking and testing utilities have also been expanded to cover these new modes. Review feedback highlights opportunities to improve performance by ensuring coalesced memory reads in the collection helper and suggests reusing shared memory buffers to stay within hardware limits.

Comment thread include/flashinfer/topk.cuh
Comment thread include/flashinfer/topk.cuh
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (2)
include/flashinfer/topk.cuh (1)

3218-3226: ⚠️ Potential issue | 🟠 Major

Let tie-break requests override the benchmark algorithm override.

With FLASHINFER_TOPK_ALGO=multi_cta, Line 3221 returns false before the tie-break check, so tie_break=Small/Large silently falls back to radix even though the comment says tie-break is only supported by FilteredTopK.

Proposed fix
-  // Check for algorithm override
-  const TopKAlgoOverride algo_override = GetTopKAlgoOverride();
-  if (algo_override == TopKAlgoOverride::FILTERED) return true;
-  if (algo_override == TopKAlgoOverride::MULTI_CTA) return false;
-
   // Tie-break modes are only supported by FilteredTopK
   if (tie_break != TopKTieBreak::None) {
     return true;
   }
+
+  // Check for algorithm override
+  const TopKAlgoOverride algo_override = GetTopKAlgoOverride();
+  if (algo_override == TopKAlgoOverride::FILTERED) return true;
+  if (algo_override == TopKAlgoOverride::MULTI_CTA) return false;
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@include/flashinfer/topk.cuh` around lines 3218 - 3226, The current logic
checks GetTopKAlgoOverride() before considering tie_break, which lets
TopKAlgoOverride::MULTI_CTA override requested tie-breaks; change the branch
order so tie-break requests take precedence: first check if tie_break !=
TopKTieBreak::None and return true (support FilteredTopK), then query
GetTopKAlgoOverride() and handle TopKAlgoOverride::FILTERED / MULTI_CTA; update
the function containing these checks (refer to GetTopKAlgoOverride,
TopKAlgoOverride, and TopKTieBreak) so tie-break modes always force the
FilteredTopK path.
benchmarks/bench_topk.py (1)

883-889: ⚠️ Potential issue | 🟡 Minor

The "sglang_error" key is never populated — this branch is dead and inconsistent with other sections.

Line 888 checks "sglang_error" in result, but sglang_error is not set anywhere in the codebase. The sglang block (lines 208–212) only writes sglang_us, and failures surface as RuntimeError exceptions caught at lines 891–899. This makes the elif at line 888 unreachable.

Additionally, the analogous fallback branches in page_table (line 1126) and ragged (line 1231) still use the original k == 2048 check. This inconsistency suggests incomplete refactoring—either restore the k == 2048 check in the top_k section or populate result["sglang_error"] and mirror the change in page_table and ragged sections.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@benchmarks/bench_topk.py` around lines 883 - 889, The branch checking
"sglang_error" is dead because result["sglang_error"] is never set; fix by
either (A) when catching the RuntimeError in the top_k benchmark code path (the
block that currently writes result["sglang_us"]) set result["sglang_error"]=True
(or an error message) so the existing display branch can detect failures, and
update the analogous page_table and ragged sections to populate the same key for
consistency; or (B) revert the refactor and restore the original k == 2048
fallback checks in the top_k, page_table and ragged reporting code so the
fallback branches behave the same across all sections—choose one approach and
apply it consistently to result handling for sglang.
🧹 Nitpick comments (4)
include/flashinfer/topk.cuh (1)

234-236: Document the hot-path tradeoffs.

ITEMS_PER_THREAD = 4 and forcing vec_size = 1 for dsa_graph_safe are special performance-sensitive choices. Please add a short rationale and note the alternative considered, especially because Line 234 already leaves this as a TODO.

As per coding guidelines, "For performance-critical hot paths, leave comments with justification for special algorithmic choices and mention alternative approaches considered."

Also applies to: 2843-2846

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@include/flashinfer/topk.cuh` around lines 234 - 236, Add a concise comment in
the hot path explaining why ITEMS_PER_THREAD is set to 4 and CHUNK_ITEMS derived
from it (e.g., memory/register pressure vs. occupancy tradeoff,
cache/vectorization limits) and document the decision to force vec_size = 1 for
dsa_graph_safe (e.g., alignment/unaligned memory access, divergent control flow,
or correctness constraints) along with the primary alternative(s) considered
(e.g., ITEMS_PER_THREAD=8 or using vectorized loads) and why they were rejected
(impact on shared memory, register usage, or branch divergence). Place this
justification adjacent to the ITEMS_PER_THREAD/CHUNK_ITEMS definitions and
mirror a similar explanatory note where vec_size is set for dsa_graph_safe so
future maintainers can understand the performance tradeoffs and tuning
rationale.
tests/utils/test_topk.py (1)

1931-2050: Add coverage for dsa_graph_safe=True.

These new tests cover tie-break behavior, but the PR’s graph-safe flag can regress independently through routing and VEC_SIZE=1 dispatch. Please add at least one top_k and one transform API case with dsa_graph_safe=True; ideally include a CUDA graph capture/replay smoke test.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@tests/utils/test_topk.py` around lines 1931 - 2050, Add tests that exercise
the dsa_graph_safe=True path: in test_top_k_tie_break_modes add a case that
calls flashinfer.top_k(logits, k, tie_break=1/2, dsa_graph_safe=True) (use the
same seed/generator and skip logic with can_implement_filtered_topk() and
set_topk_algo), and in test_top_k_tie_break_modes_transform_apis add calls to
flashinfer.top_k_page_table_transform(..., tie_break=1/2, dsa_graph_safe=True)
and flashinfer.top_k_ragged_transform(..., tie_break=1/2, dsa_graph_safe=True)
validating expected indices/values as done for the non-graph-safe variants;
optionally wrap one of these calls in a simple CUDA graph capture/replay smoke
test to ensure graph capture works.
flashinfer/topk.py (1)

499-540: Optional: annotate tie_break with the enum type.

Since TopKTieBreak is now a first-class public enum and the default is a TopKTieBreak member, consider typing the parameter as TopKTieBreak (or Union[TopKTieBreak, int]) across all three public APIs (top_k, top_k_page_table_transform, top_k_ragged_transform). IntEnum values still satisfy the FFI int conversion, so runtime behavior is unchanged, but callers get enum-level type checking and IDE completion instead of a bare int.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@flashinfer/topk.py` around lines 499 - 540, Update the tie_break parameter
annotations to use the TopKTieBreak enum (or Union[TopKTieBreak, int]) in the
public APIs so callers get enum-level typing and IDE completion: change the type
on function signatures for top_k, top_k_page_table_transform, and
top_k_ragged_transform to TopKTieBreak (or Union[TopKTieBreak, int]) while
leaving default values and runtime behavior unchanged; ensure imports/typing
references for TopKTieBreak are added where needed and run typechecks to confirm
no FFI/int conversion assumptions are broken.
benchmarks/bench_topk.py (1)

89-103: Nit: bind tie_break via a default argument to silence B023 and harden against future refactors.

Ruff flags B023 on line 95. Today this is a false positive — bench_median_ms consumes the lambda synchronously before the loop advances, so the late-binding hazard does not actually trigger. It’s still cheap to make the capture explicit in case the lambda is ever deferred (e.g., scheduled, stored, or passed to an async benchmarker):

Proposed defensive fix
-    for suffix, tie_break in TIE_BREAK_VARIANTS:
-        try:
-            tie_ms = bench_median_ms(lambda: run_flashinfer_with_tie_break(tie_break))
+    for suffix, tie_break in TIE_BREAK_VARIANTS:
+        try:
+            tie_ms = bench_median_ms(
+                lambda tb=tie_break: run_flashinfer_with_tie_break(tb)
+            )
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@benchmarks/bench_topk.py` around lines 89 - 103, The loop in
bench_tie_break_variants closes over tie_break causing a potential late-binding
issue flagged by Ruff B023; change the lambda passed to bench_median_ms to
capture tie_break as a default argument (e.g., lambda tb=tie_break:
run_flashinfer_with_tie_break(tb)) so the current tie_break value is bound
immediately; update the invocation around bench_median_ms(...) and leave the
rest of the logic (metrics keys using suffix, error
handling/classify_benchmark_runtime_error) unchanged.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Outside diff comments:
In `@benchmarks/bench_topk.py`:
- Around line 883-889: The branch checking "sglang_error" is dead because
result["sglang_error"] is never set; fix by either (A) when catching the
RuntimeError in the top_k benchmark code path (the block that currently writes
result["sglang_us"]) set result["sglang_error"]=True (or an error message) so
the existing display branch can detect failures, and update the analogous
page_table and ragged sections to populate the same key for consistency; or (B)
revert the refactor and restore the original k == 2048 fallback checks in the
top_k, page_table and ragged reporting code so the fallback branches behave the
same across all sections—choose one approach and apply it consistently to result
handling for sglang.

In `@include/flashinfer/topk.cuh`:
- Around line 3218-3226: The current logic checks GetTopKAlgoOverride() before
considering tie_break, which lets TopKAlgoOverride::MULTI_CTA override requested
tie-breaks; change the branch order so tie-break requests take precedence: first
check if tie_break != TopKTieBreak::None and return true (support FilteredTopK),
then query GetTopKAlgoOverride() and handle TopKAlgoOverride::FILTERED /
MULTI_CTA; update the function containing these checks (refer to
GetTopKAlgoOverride, TopKAlgoOverride, and TopKTieBreak) so tie-break modes
always force the FilteredTopK path.

---

Nitpick comments:
In `@benchmarks/bench_topk.py`:
- Around line 89-103: The loop in bench_tie_break_variants closes over tie_break
causing a potential late-binding issue flagged by Ruff B023; change the lambda
passed to bench_median_ms to capture tie_break as a default argument (e.g.,
lambda tb=tie_break: run_flashinfer_with_tie_break(tb)) so the current tie_break
value is bound immediately; update the invocation around bench_median_ms(...)
and leave the rest of the logic (metrics keys using suffix, error
handling/classify_benchmark_runtime_error) unchanged.

In `@flashinfer/topk.py`:
- Around line 499-540: Update the tie_break parameter annotations to use the
TopKTieBreak enum (or Union[TopKTieBreak, int]) in the public APIs so callers
get enum-level typing and IDE completion: change the type on function signatures
for top_k, top_k_page_table_transform, and top_k_ragged_transform to
TopKTieBreak (or Union[TopKTieBreak, int]) while leaving default values and
runtime behavior unchanged; ensure imports/typing references for TopKTieBreak
are added where needed and run typechecks to confirm no FFI/int conversion
assumptions are broken.

In `@include/flashinfer/topk.cuh`:
- Around line 234-236: Add a concise comment in the hot path explaining why
ITEMS_PER_THREAD is set to 4 and CHUNK_ITEMS derived from it (e.g.,
memory/register pressure vs. occupancy tradeoff, cache/vectorization limits) and
document the decision to force vec_size = 1 for dsa_graph_safe (e.g.,
alignment/unaligned memory access, divergent control flow, or correctness
constraints) along with the primary alternative(s) considered (e.g.,
ITEMS_PER_THREAD=8 or using vectorized loads) and why they were rejected (impact
on shared memory, register usage, or branch divergence). Place this
justification adjacent to the ITEMS_PER_THREAD/CHUNK_ITEMS definitions and
mirror a similar explanatory note where vec_size is set for dsa_graph_safe so
future maintainers can understand the performance tradeoffs and tuning
rationale.

In `@tests/utils/test_topk.py`:
- Around line 1931-2050: Add tests that exercise the dsa_graph_safe=True path:
in test_top_k_tie_break_modes add a case that calls flashinfer.top_k(logits, k,
tie_break=1/2, dsa_graph_safe=True) (use the same seed/generator and skip logic
with can_implement_filtered_topk() and set_topk_algo), and in
test_top_k_tie_break_modes_transform_apis add calls to
flashinfer.top_k_page_table_transform(..., tie_break=1/2, dsa_graph_safe=True)
and flashinfer.top_k_ragged_transform(..., tie_break=1/2, dsa_graph_safe=True)
validating expected indices/values as done for the non-graph-safe variants;
optionally wrap one of these calls in a simple CUDA graph capture/replay smoke
test to ensure graph capture works.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 88e1832b-cadc-43e2-b4c6-4c84155aaf21

📥 Commits

Reviewing files that changed from the base of the PR and between 9e3d8b9 and 6bbd1da.

📒 Files selected for processing (7)
  • benchmarks/bench_topk.py
  • csrc/flashinfer_topk_binding.cu
  • csrc/topk.cu
  • flashinfer/__init__.py
  • flashinfer/topk.py
  • include/flashinfer/topk.cuh
  • tests/utils/test_topk.py

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
include/flashinfer/topk.cuh (1)

3070-3104: ⚠️ Potential issue | 🟡 Minor

Make tie_break imply deterministic mode inside the filtered launcher.

LaunchFilteredTopKUnified exposes tie_break, but direct callers passing tie_break != None with deterministic=false still launch the non-deterministic TopKTieBreak::None specialization. The higher-level dispatchers normalize this today, but this wrapper should enforce its own API contract.

Suggested fix
 cudaError_t LaunchFilteredTopKUnified(DType* input, IdType* output, DType* aux_output,
                                       const IdType* aux_input, int64_t aux_stride,
                                       const IdType* row_to_batch, const IdType* lengths,
                                       uint32_t num_rows, uint32_t top_k_val, uint32_t max_len,
                                       bool deterministic = false,
                                       TopKTieBreak tie_break = TopKTieBreak::None,
                                       cudaStream_t stream = 0, bool dsa_graph_safe = false) {
   constexpr size_t smem_size = FILTERED_TOPK_SMEM_DYNAMIC;
   constexpr int MAX_VEC = 16 / sizeof(DType);
+  const bool effective_deterministic = deterministic || tie_break != TopKTieBreak::None;
@@
 `#define` DISPATCH_VEC_SIZE(VS)                                  \
   if (vec_size == VS) {                                        \
-    if (!deterministic) {                                      \
+    if (!effective_deterministic) {                            \
       LAUNCH_FILTERED_KERNEL(VS, false, TopKTieBreak::None);   \
     } else {                                                   \
       if (tie_break == TopKTieBreak::Small) {                  \
         LAUNCH_FILTERED_KERNEL(VS, true, TopKTieBreak::Small); \
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@include/flashinfer/topk.cuh` around lines 3070 - 3104, The launcher currently
ignores a non-None tie_break when deterministic==false; change the dispatch to
compute an effective deterministic flag (e.g., bool effective_det =
deterministic || (tie_break != TopKTieBreak::None)) and use effective_det in
DISPATCH_VEC_SIZE/launch logic so that any tie_break != TopKTieBreak::None
forces the deterministic specialization via LAUNCH_FILTERED_KERNEL(..., true,
tie_break) while preserving the existing non-deterministic path only when
effective_det is false; update references to deterministic in the
DISPATCH_VEC_SIZE block to use this effective_det and select the correct
TopKTieBreak template parameter accordingly.
🧹 Nitpick comments (1)
include/flashinfer/topk.cuh (1)

234-236: Document the fixed chunking choice or remove the TODO.

ITEMS_PER_THREAD = 4 is now part of a performance-sensitive deterministic tie-break path. Please either justify why 4 is the intended trade-off here or link this TODO to a tracked tuning task so the algorithmic choice is explicit. As per coding guidelines, For performance-critical hot paths, leave comments with justification for special algorithmic choices and mention alternative approaches considered.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@include/flashinfer/topk.cuh` around lines 234 - 236, Replace the TODO by
either (a) adding a short justification comment next to ITEMS_PER_THREAD = 4
explaining why 4 was chosen (trade-offs tested, microbenchmarks summary,
sensitivity in the deterministic tie-break hot path, interaction with
BLOCK_THREADS and CHUNK_ITEMS, and why vectorization wasn't chosen), or (b) if
the number is provisional, remove the TODO and add a one-line reference to a
tracked tuning task/issue ID that contains the benchmarking results and
alternative values tested; ensure the comment mentions the symbols
ITEMS_PER_THREAD, CHUNK_ITEMS and BLOCK_THREADS and that this choice affects the
deterministic tie-break/performance-critical path.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@benchmarks/bench_topk.py`:
- Around line 89-103: In bench_tie_break_variants, the lambda passed to
bench_median_ms captures the loop variable tie_break by reference and the
metrics dict is annotated too narrowly as dict[str, float]; fix by binding the
loop variable in the lambda (e.g., make it a default arg so you call
run_flashinfer_with_tie_break(tie_break=tie_break) inside the lambda) and widen
the return type to allow string error labels (e.g., change the annotation from
dict[str, float] to dict[str, float | str] or dict[str, Any]); keep references
to TIE_BREAK_VARIANTS, run_flashinfer_with_tie_break,
classify_benchmark_runtime_error, and metrics when making the edits.

---

Outside diff comments:
In `@include/flashinfer/topk.cuh`:
- Around line 3070-3104: The launcher currently ignores a non-None tie_break
when deterministic==false; change the dispatch to compute an effective
deterministic flag (e.g., bool effective_det = deterministic || (tie_break !=
TopKTieBreak::None)) and use effective_det in DISPATCH_VEC_SIZE/launch logic so
that any tie_break != TopKTieBreak::None forces the deterministic specialization
via LAUNCH_FILTERED_KERNEL(..., true, tie_break) while preserving the existing
non-deterministic path only when effective_det is false; update references to
deterministic in the DISPATCH_VEC_SIZE block to use this effective_det and
select the correct TopKTieBreak template parameter accordingly.

---

Nitpick comments:
In `@include/flashinfer/topk.cuh`:
- Around line 234-236: Replace the TODO by either (a) adding a short
justification comment next to ITEMS_PER_THREAD = 4 explaining why 4 was chosen
(trade-offs tested, microbenchmarks summary, sensitivity in the deterministic
tie-break hot path, interaction with BLOCK_THREADS and CHUNK_ITEMS, and why
vectorization wasn't chosen), or (b) if the number is provisional, remove the
TODO and add a one-line reference to a tracked tuning task/issue ID that
contains the benchmarking results and alternative values tested; ensure the
comment mentions the symbols ITEMS_PER_THREAD, CHUNK_ITEMS and BLOCK_THREADS and
that this choice affects the deterministic tie-break/performance-critical path.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 51145eb8-8c31-4857-a35e-958b56de4bbb

📥 Commits

Reviewing files that changed from the base of the PR and between 6bbd1da and 30d7210.

📒 Files selected for processing (5)
  • benchmarks/bench_topk.py
  • csrc/flashinfer_topk_binding.cu
  • csrc/topk.cu
  • flashinfer/topk.py
  • include/flashinfer/topk.cuh

Comment thread benchmarks/bench_topk.py
@zianglih zianglih marked this pull request as draft April 21, 2026 08:18
@ziang-and ziang-and force-pushed the dsa-graph-safe branch 2 times, most recently from 5432f6d to e5f4eb0 Compare April 22, 2026 00:40
@zianglih zianglih changed the title feat: Add a dsa_graph_safe flag to topk feat: Add row_starts and dsa_graph_safe to topk Apr 22, 2026
@zianglih zianglih marked this pull request as ready for review April 22, 2026 04:14
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (2)
flashinfer/topk.py (2)

789-799: ⚠️ Potential issue | 🟠 Major

Preserve positional compatibility for deterministic.

row_starts is inserted before the existing deterministic parameter, so existing calls like top_k_ragged_transform(scores, offsets, lengths, k, True) now pass True as row_starts.

Proposed fix
 def top_k_ragged_transform(
     input: torch.Tensor,
     offsets: torch.Tensor,
     lengths: torch.Tensor,
     k: int,
-    row_starts: Optional[torch.Tensor] = None,
     deterministic: bool = False,
     tie_break: int = TopKTieBreak.NONE,
+    row_starts: Optional[torch.Tensor] = None,
     dsa_graph_safe: bool = False,
 ) -> torch.Tensor:
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@flashinfer/topk.py` around lines 789 - 799, The signature change to
top_k_ragged_transform moved row_starts before deterministic, breaking
positional callers; restore positional compatibility by ensuring deterministic
remains the positional parameter before row_starts (i.e., place deterministic as
the parameter immediately after k and make row_starts either follow
deterministic or be keyword-only), update the function signature accordingly and
adjust any internal usage of row_starts/deterministic inside
top_k_ragged_transform to match the restored parameter order.

658-669: ⚠️ Potential issue | 🟠 Major

Preserve positional compatibility for row_to_batch.

row_starts is inserted before the existing row_to_batch parameter, so existing calls like top_k_page_table_transform(scores, table, lengths, k, row_to_batch) now bind that tensor as row_starts and silently compute the wrong mapping.

Proposed fix
 def top_k_page_table_transform(
     input: torch.Tensor,
     src_page_table: torch.Tensor,
     lengths: torch.Tensor,
     k: int,
-    row_starts: Optional[torch.Tensor] = None,
     row_to_batch: Optional[torch.Tensor] = None,
     deterministic: bool = False,
     tie_break: int = TopKTieBreak.NONE,
+    row_starts: Optional[torch.Tensor] = None,
     dsa_graph_safe: bool = False,
 ) -> torch.Tensor:
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@flashinfer/topk.py` around lines 658 - 669, The function signature change in
top_k_page_table_transform broke positional compatibility by inserting
row_starts before the existing row_to_batch parameter; restore compatibility by
reordering the parameters so row_to_batch appears before row_starts (i.e., keep
the original positional order: ..., k, row_to_batch:
Optional[torch.Tensor]=None, row_starts: Optional[torch.Tensor]=None,
deterministic=..., tie_break=..., dsa_graph_safe=...), update any internal
references to use the renamed parameters accordingly, and run tests that call
top_k_page_table_transform(positionally) to confirm behavior is unchanged.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Outside diff comments:
In `@flashinfer/topk.py`:
- Around line 789-799: The signature change to top_k_ragged_transform moved
row_starts before deterministic, breaking positional callers; restore positional
compatibility by ensuring deterministic remains the positional parameter before
row_starts (i.e., place deterministic as the parameter immediately after k and
make row_starts either follow deterministic or be keyword-only), update the
function signature accordingly and adjust any internal usage of
row_starts/deterministic inside top_k_ragged_transform to match the restored
parameter order.
- Around line 658-669: The function signature change in
top_k_page_table_transform broke positional compatibility by inserting
row_starts before the existing row_to_batch parameter; restore compatibility by
reordering the parameters so row_to_batch appears before row_starts (i.e., keep
the original positional order: ..., k, row_to_batch:
Optional[torch.Tensor]=None, row_starts: Optional[torch.Tensor]=None,
deterministic=..., tie_break=..., dsa_graph_safe=...), update any internal
references to use the renamed parameters accordingly, and run tests that call
top_k_page_table_transform(positionally) to confirm behavior is unchanged.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: be26a571-3378-41eb-9773-499092e2e2f0

📥 Commits

Reviewing files that changed from the base of the PR and between 30d7210 and 20061c2.

📒 Files selected for processing (5)
  • csrc/flashinfer_topk_binding.cu
  • csrc/topk.cu
  • flashinfer/topk.py
  • include/flashinfer/topk.cuh
  • tests/utils/test_topk.py
🚧 Files skipped from review as they are similar to previous changes (1)
  • include/flashinfer/topk.cuh

@jiahanc jiahanc added the run-ci label Apr 23, 2026
@jiahanc
Copy link
Copy Markdown
Collaborator

jiahanc commented Apr 23, 2026

/bot run

Copy link
Copy Markdown
Collaborator

@jiahanc jiahanc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks for contribution!

@flashinfer-bot
Copy link
Copy Markdown
Collaborator

GitLab MR !588 has been created, and the CI pipeline #49277161 is currently running. I'll report back once the pipeline job completes.

Copy link
Copy Markdown
Member

@kahyunnam kahyunnam left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM overall except for one comment! Will approve after this is updated + /bot run CICD passes

Comment thread flashinfer/topk.py Outdated
src_page_table: torch.Tensor,
lengths: torch.Tensor,
k: int,
row_starts: Optional[torch.Tensor] = None,
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we move this new optional arguments to the end? This breaks positional ordering for existing callers; this may break backwards compatibility for API definition

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done by d9638b1

@zianglih
Copy link
Copy Markdown
Contributor Author

Hi @kahyunnam I have made the requested changes. All python APIs and top-level C++ bindings have both args at the end. Internal implementation still use previous ordering for better readability. Thank you!

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (4)
flashinfer/topk.py (3)

849-854: Minor doc gap: clarify row_starts interaction with the trivial ragged path.

For top_k_ragged_transform, the "If lengths[i] <= k" note still reads as if row_starts has no trivial-case role, but callers may reasonably assume symmetry with top_k_page_table_transform (which now documents the row-shifted slice). A short clarification avoids ambiguity, e.g.:

📝 Suggested wording
-    - If lengths[i] <= k, the output contains [offsets[i], offsets[i]+1, ..., offsets[i]+lengths[i]-1]
-      with remaining positions set to -1.
+    - If lengths[i] <= k, the output contains [offsets[i], offsets[i]+1, ..., offsets[i]+lengths[i]-1]
+      with remaining positions set to -1. ``row_starts`` only shifts the score window used for
+      top-k selection; it does not shift these local indices in the trivial case.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@flashinfer/topk.py` around lines 849 - 854, The docstring for
top_k_ragged_transform is ambiguous about how row_starts shifts indices in the
trivial ragged path (lengths[i] <= k); update the Note to explicitly state that
when lengths[i] <= k the returned indices are the sequence
[row_starts[i]+offsets[i], row_starts[i]+offsets[i]+1, ...,
row_starts[i]+offsets[i]+lengths[i]-1] with remaining positions set to -1,
mirroring the documented behavior/symmetry of top_k_page_table_transform;
reference top_k_ragged_transform, row_starts, offsets, lengths, and
top_k_page_table_transform in the docstring so callers aren’t confused about
whether indices are row-shifted.

495-500: Default dsa_graph_safe to preserve backward compatibility.

can_use_clusters_topk is a module-level (non-underscore) helper. Adding a required third positional parameter is technically a breaking change for any external caller. Given the PR's explicit "Keep API backward compatibility" intent (and the prior review feedback about positional ordering), consider defaulting it:

♻️ Suggested default
-def can_use_clusters_topk(device, deterministic, dsa_graph_safe):
+def can_use_clusters_topk(device, deterministic, dsa_graph_safe=False):
     if dsa_graph_safe:
         return False
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@flashinfer/topk.py` around lines 495 - 500, can_use_clusters_topk currently
requires a third positional parameter dsa_graph_safe which is a breaking API
change; make dsa_graph_safe optional with a default value (e.g., False) so
existing callers keep current behavior, update the function signature for
can_use_clusters_topk to set dsa_graph_safe=False and ensure the function body
still uses the parameter as before, and scan for external uses of
can_use_clusters_topk to confirm none rely on a mandatory third argument.

728-731: Nit: tighten the trivial-case wording for readability.

The inline parenthetical splits an RST code reference across lines and reads awkwardly. A small rewrite keeps the code literal intact:

📝 Suggested wording
-    - If lengths[i] <= k, the output simply contains
-      ``src_page_table[batch_idx, row_starts[i]:row_starts[i] + lengths[i]]`` (or start 0 when
-      ``row_starts`` is None)
-      with remaining positions set to -1.
+    - If lengths[i] <= k, the output simply contains
+      ``src_page_table[batch_idx, s:s + lengths[i]]`` where ``s = row_starts[i]`` (or 0 when
+      ``row_starts`` is None), with remaining positions set to -1.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@flashinfer/topk.py` around lines 728 - 731, The docstring sentence describing
the trivial case splits the RST code reference across lines and reads awkwardly;
update the sentence in topk.py that starts "If lengths[i] <= k" to keep the code
literal intact by making it a single clear clause referencing the symbols
lengths, k, src_page_table, row_starts and batch_idx — e.g. state that when
lengths[i] <= k the output contains the entries of src_page_table for batch_idx
from row_starts[i] to row_starts[i] + lengths[i], with row_starts treated as
starting at 0 when row_starts is None, and any remaining positions set to -1.
tests/utils/test_topk.py (1)

459-476: Consider adding trivial-length coverage for row_starts.

In the ragged reference, row_start is read but intentionally unused in the trivial branch (length <= k), matching the documented semantics (output is local_topk + offsets[i]). The new test_top_k_transform_with_row_starts forces lengths >= k+1, so the kernel's trivial-length behavior under non-zero row_starts is not validated against this reference. A small additional case (e.g., one row with lengths[i] <= k and row_starts[i] > 0) would close that gap for both transforms.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@tests/utils/test_topk.py` around lines 459 - 476, Add a trivial-length test
case to exercise the branch where length <= k while row_starts is non-zero: in
tests/utils/test_topk.py (the test_top_k_transform_with_row_starts setup),
append or insert one row whose lengths[i] <= k and row_starts[i] > 0 (ensure
offsets[i] is set) and verify output[i, :length] equals torch.arange(offset,
offset+length) so the reference path that ignores row_start is validated; update
any generated scores/slices accordingly so that this single-row case triggers
the trivial branch alongside the existing longer rows.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@flashinfer/topk.py`:
- Around line 849-854: The docstring for top_k_ragged_transform is ambiguous
about how row_starts shifts indices in the trivial ragged path (lengths[i] <=
k); update the Note to explicitly state that when lengths[i] <= k the returned
indices are the sequence [row_starts[i]+offsets[i], row_starts[i]+offsets[i]+1,
..., row_starts[i]+offsets[i]+lengths[i]-1] with remaining positions set to -1,
mirroring the documented behavior/symmetry of top_k_page_table_transform;
reference top_k_ragged_transform, row_starts, offsets, lengths, and
top_k_page_table_transform in the docstring so callers aren’t confused about
whether indices are row-shifted.
- Around line 495-500: can_use_clusters_topk currently requires a third
positional parameter dsa_graph_safe which is a breaking API change; make
dsa_graph_safe optional with a default value (e.g., False) so existing callers
keep current behavior, update the function signature for can_use_clusters_topk
to set dsa_graph_safe=False and ensure the function body still uses the
parameter as before, and scan for external uses of can_use_clusters_topk to
confirm none rely on a mandatory third argument.
- Around line 728-731: The docstring sentence describing the trivial case splits
the RST code reference across lines and reads awkwardly; update the sentence in
topk.py that starts "If lengths[i] <= k" to keep the code literal intact by
making it a single clear clause referencing the symbols lengths, k,
src_page_table, row_starts and batch_idx — e.g. state that when lengths[i] <= k
the output contains the entries of src_page_table for batch_idx from
row_starts[i] to row_starts[i] + lengths[i], with row_starts treated as starting
at 0 when row_starts is None, and any remaining positions set to -1.

In `@tests/utils/test_topk.py`:
- Around line 459-476: Add a trivial-length test case to exercise the branch
where length <= k while row_starts is non-zero: in tests/utils/test_topk.py (the
test_top_k_transform_with_row_starts setup), append or insert one row whose
lengths[i] <= k and row_starts[i] > 0 (ensure offsets[i] is set) and verify
output[i, :length] equals torch.arange(offset, offset+length) so the reference
path that ignores row_start is validated; update any generated scores/slices
accordingly so that this single-row case triggers the trivial branch alongside
the existing longer rows.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: f2e2f667-ff32-401b-a377-dac5ae258868

📥 Commits

Reviewing files that changed from the base of the PR and between 20061c2 and d9638b1.

📒 Files selected for processing (4)
  • csrc/flashinfer_topk_binding.cu
  • csrc/topk.cu
  • flashinfer/topk.py
  • tests/utils/test_topk.py
🚧 Files skipped from review as they are similar to previous changes (1)
  • csrc/topk.cu

@zianglih zianglih requested a review from kahyunnam April 23, 2026 19:22
@kahyunnam kahyunnam enabled auto-merge (squash) April 23, 2026 20:57
@kahyunnam kahyunnam merged commit ef46793 into flashinfer-ai:main Apr 24, 2026
32 of 38 checks passed
@zianglih zianglih deleted the dsa-graph-safe branch April 24, 2026 17:37
@aleozlx aleozlx mentioned this pull request Apr 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants