Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions csrc/cpp_itfs/pa/pa.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ def paged_attention_rocm(
torch.bfloat16: "__hip_bfloat16",
torch.float16: "_Float16",
torch.float8_e4m3fnuz: "uint8_t",
torch.float8_e4m3fn: "uint8_t"

Copilot AI Oct 13, 2025

Copy link

Choose a reason for hiding this comment

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

Missing comma after the dictionary entry. This could cause syntax errors or unexpected behavior when additional entries are added later.

Suggested change
torch.float8_e4m3fn: "uint8_t"
torch.float8_e4m3fn: "uint8_t",

Copilot uses AI. Check for mistakes.
}

warpSize = torch.cuda.get_device_properties(out.device).warp_size
Expand Down
Loading