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
MIGraphX
Commits
9db9f4e0
Commit
9db9f4e0
authored
Oct 09, 2022
by
Paul
Browse files
Fix global size
parent
398d45a4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/targets/gpu/jit/ck_gemm.cpp
src/targets/gpu/jit/ck_gemm.cpp
+3
-1
No files found.
src/targets/gpu/jit/ck_gemm.cpp
View file @
9db9f4e0
...
...
@@ -170,7 +170,9 @@ struct ck_gemm_compiler : compiler<ck_gemm_compiler>
});
hip_compile_options
options
;
options
.
set_launch_params
(
v
,
get_grid_size
(
instance
,
m
,
n
),
get_block_size
(
instance
));
auto
block_size
=
get_block_size
(
instance
);
auto
grid_size
=
get_grid_size
(
instance
,
m
,
n
);
options
.
set_launch_params
(
v
,
grid_size
*
block_size
,
block_size
);
options
.
inputs
=
inputs
;
options
.
output
=
c_shape
;
options
.
kernel_name
=
"ck_gemm_kernel"
;
...
...
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