Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
d1572160
Unverified
Commit
d1572160
authored
Mar 17, 2026
by
Kunshang Ji
Committed by
GitHub
Mar 16, 2026
Browse files
[BUGFIX][Mamba] Use uint64 for address in KVBlockZeroer (#37197)
Signed-off-by:
Kunshang Ji
<
kunshang.ji@intel.com
>
parent
93f3c8e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/v1/worker/utils.py
vllm/v1/worker/utils.py
+1
-1
No files found.
vllm/v1/worker/utils.py
View file @
d1572160
...
...
@@ -180,7 +180,7 @@ class KVBlockZeroer:
)
self
.
_ids_gpu
=
torch
.
empty
(
self
.
_id_cap
,
dtype
=
torch
.
int64
,
device
=
self
.
device
)
self
.
_meta
=
(
torch
.
tensor
(
seg_addrs
,
dtype
=
torch
.
int64
,
device
=
self
.
device
),
torch
.
tensor
(
seg_addrs
,
dtype
=
torch
.
u
int64
,
device
=
self
.
device
),
page_size_el
,
blk_size
,
len
(
seg_addrs
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment