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
76058dcd
Commit
76058dcd
authored
Nov 05, 2024
by
zhangshao
Browse files
解决pa tc 版读取Q矩阵时数组越界的问题
parent
3f42b83d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
csrc/attention/attention_kernels_opt_tc.cu
csrc/attention/attention_kernels_opt_tc.cu
+2
-2
No files found.
csrc/attention/attention_kernels_opt_tc.cu
View file @
76058dcd
...
@@ -235,7 +235,7 @@ __device__ void paged_attention_kernel_TC(
...
@@ -235,7 +235,7 @@ __device__ void paged_attention_kernel_TC(
__shared__
half4x2
q_vecs
[
REUSE_KV_TIMES
][
16
];
__shared__
half4x2
q_vecs
[
REUSE_KV_TIMES
][
16
];
//if(thread_idx==0)printf("blockIdx.x==%d,q_boundary=%d,head_idx=%d,kv_head_idx=%d\n",blockIdx.x,q_boundary,head_idx,kv_head_idx);
//if(thread_idx==0)printf("blockIdx.x==%d,q_boundary=%d,head_idx=%d,kv_head_idx=%d\n",blockIdx.x,q_boundary,head_idx,kv_head_idx);
for
(
int
i
=
0
;
i
<
REUSE_KV_TIMES
;
i
++
){
for
(
int
i
=
0
;
i
<
q_boundary
;
i
++
){
if
(
thread_idx
<
16
){
if
(
thread_idx
<
16
){
q_vecs
[
i
][
thread_idx
]
=*
reinterpret_cast
<
const
half4x2
*>
(
q_ptr
+
i
*
HEAD_SIZE
+
thread_idx
*
8
);
q_vecs
[
i
][
thread_idx
]
=*
reinterpret_cast
<
const
half4x2
*>
(
q_ptr
+
i
*
HEAD_SIZE
+
thread_idx
*
8
);
}
}
...
...
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