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
dc030d1c
"vscode:/vscode.git/clone" did not exist on "7ecc003be5fc376d414d306ff09cb0d2b7b27c9a"
Commit
dc030d1c
authored
Oct 20, 2022
by
Paul
Browse files
Only log a,b,c shapes
parent
8de2163f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/targets/gpu/jit/ck_gemm.cpp
src/targets/gpu/jit/ck_gemm.cpp
+4
-1
No files found.
src/targets/gpu/jit/ck_gemm.cpp
View file @
dc030d1c
...
...
@@ -210,7 +210,10 @@ struct ck_gemm_compiler : compiler<ck_gemm_compiler>
auto
shapes
=
to_shapes
(
ins
->
inputs
());
return
action_decorate
(
replace
(
compile_op
(
ctx
,
shapes
,
v
)),
[
=
]
{
if
(
enabled
(
MIGRAPHX_LOG_CK_GEMM
{}))
std
::
cout
<<
"ck_gemm: "
<<
to_json_string
(
to_value
(
shapes
))
<<
std
::
endl
;
{
std
::
vector
<
shape
>
gemm_shapes
{
shapes
[
0
],
shapes
[
1
],
shapes
.
back
()};
std
::
cout
<<
"ck_gemm: "
<<
to_json_string
(
to_value
(
gemm_shapes
))
<<
std
::
endl
;
}
});
}
};
...
...
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