Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel_ROCM
Commits
fc1c938b
Commit
fc1c938b
authored
Oct 22, 2024
by
Rostyslav Geyyer
Browse files
Update inits
parent
4d5248e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
library/include/ck/library/reference_tensor_operation/gpu/reference_gemm.hpp
...library/reference_tensor_operation/gpu/reference_gemm.hpp
+4
-4
No files found.
library/include/ck/library/reference_tensor_operation/gpu/reference_gemm.hpp
View file @
fc1c938b
...
@@ -45,10 +45,10 @@ __global__ void
...
@@ -45,10 +45,10 @@ __global__ void
if
(
row_idx
<
m
&&
col_idx
<
n
)
if
(
row_idx
<
m
&&
col_idx
<
n
)
{
{
AccDataType
v_acc
=
static_cast
<
AccDataType
>
(
0.0
)
;
AccDataType
v_acc
{
0
}
;
ComputeTypeA
v_a
=
static_cast
<
ComputeTypeA
>
(
0.0
)
;
ComputeTypeA
v_a
{
0
}
;
ComputeTypeB
v_b
=
static_cast
<
ComputeTypeB
>
(
0.0
)
;
ComputeTypeB
v_b
{
0
}
;
CDataType
v_c
=
static_cast
<
CDataType
>
(
0.0
)
;
CDataType
v_c
{
0
}
;
for
(
int
k_idx
=
0
;
k_idx
<
k
;
++
k_idx
)
for
(
int
k_idx
=
0
;
k_idx
<
k
;
++
k_idx
)
{
{
...
...
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