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
7a17ead7
Commit
7a17ead7
authored
Dec 10, 2024
by
mtgu0705
Browse files
Enable cache flush when kernel tuning
parent
e952729a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
profiler/src/profile_gemm_b_scale.cpp
profiler/src/profile_gemm_b_scale.cpp
+3
-1
No files found.
profiler/src/profile_gemm_b_scale.cpp
View file @
7a17ead7
...
@@ -94,11 +94,13 @@ int profile_gemm_b_scale(int argc, char* argv[])
...
@@ -94,11 +94,13 @@ int profile_gemm_b_scale(int argc, char* argv[])
int
n_warmup
=
1
;
int
n_warmup
=
1
;
int
n_iter
=
10
;
int
n_iter
=
10
;
uint64_t
rotating
=
0
;
uint64_t
rotating
=
0
;
if
(
argc
==
1
8
)
if
(
argc
==
1
9
)
{
{
n_warmup
=
std
::
stoi
(
argv
[
16
]);
n_warmup
=
std
::
stoi
(
argv
[
16
]);
n_iter
=
std
::
stoi
(
argv
[
17
]);
n_iter
=
std
::
stoi
(
argv
[
17
]);
rotating
=
std
::
stoull
(
argv
[
18
])
*
1024
*
1024
;
rotating
=
std
::
stoull
(
argv
[
18
])
*
1024
*
1024
;
printf
(
"n_warmup:%d, n_iter:%d, rotating:%lu
\n
"
,
n_warmup
,
n_iter
,
rotating
);
}
}
using
F32
=
float
;
using
F32
=
float
;
...
...
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