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
1507fcfb
Commit
1507fcfb
authored
Feb 04, 2025
by
Aviral Goel
Browse files
added stash and unstash for perf logs
parent
3e75a4dd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
Jenkinsfile
Jenkinsfile
+10
-1
example/ck_tile/18_flexattn/script/run_full_test.sh
example/ck_tile/18_flexattn/script/run_full_test.sh
+1
-1
No files found.
Jenkinsfile
View file @
1507fcfb
...
@@ -356,7 +356,7 @@ def cmake_build(Map conf=[:]){
...
@@ -356,7 +356,7 @@ def cmake_build(Map conf=[:]){
stash
includes:
"perf_tile_flex_attn_**_fp16_gfx90a.log"
,
name:
"perf_tile_flex_attn_log_gfx90a"
stash
includes:
"perf_tile_flex_attn_**_fp16_gfx90a.log"
,
name:
"perf_tile_flex_attn_log_gfx90a"
}
}
else
if
(
arch_type
==
2
){
else
if
(
arch_type
==
2
){
stash
includes:
"perf_tile_flex_attn_**_fp16_gfx942.log"
,
name:
"perf_tile_flex_attn__gfx942"
stash
includes:
"perf_tile_flex_attn_**_fp16_gfx942.log"
,
name:
"perf_tile_flex_attn_
log
_gfx942"
}
}
}
}
catch
(
Exception
err
){
catch
(
Exception
err
){
...
@@ -677,6 +677,15 @@ def process_results(Map conf=[:]){
...
@@ -677,6 +677,15 @@ def process_results(Map conf=[:]){
echo
"could not locate the FMHA performance logs: ${err.getMessage()}."
echo
"could not locate the FMHA performance logs: ${err.getMessage()}."
}
}
}
}
if
(
params
.
RUN_CK_TILE_FLEX_ATTENTION_TESTS
){
try
{
unstash
"perf_tile_flex_attn_log_gfx90a"
unstash
"perf_tile_flex_attn_log_gfx942"
}
catch
(
Exception
err
){
echo
"could not locate the FMHA performance logs: ${err.getMessage()}."
}
}
if
(
params
.
RUN_CK_TILE_GEMM_TESTS
){
if
(
params
.
RUN_CK_TILE_GEMM_TESTS
){
try
{
try
{
unstash
"perf_tile_gemm_log_gfx942"
unstash
"perf_tile_gemm_log_gfx942"
...
...
example/ck_tile/18_flexattn/script/run_full_test.sh
View file @
1507fcfb
...
@@ -35,7 +35,7 @@ function print_log_header(){
...
@@ -35,7 +35,7 @@ function print_log_header(){
example/ck_tile/18_flexattn/script/smoke_test_fwd.sh
example/ck_tile/18_flexattn/script/smoke_test_fwd.sh
#run performance benchmarks
#run performance benchmarks
export
fmha_fwd_log
=
"perf_
fmha_fwd
_
$GPU_arch
.log"
export
fmha_fwd_log
=
"perf_
tile_flex_attn
_
$GPU_arch
.log"
print_log_header
$fmha_fwd_log
$env_type
$branch
$host_name
print_log_header
$fmha_fwd_log
$env_type
$branch
$host_name
example/ck_tile/18_flexattn/script/benchmark_fwd.sh 2>&1 |
tee
-a
$fmha_fwd_log
example/ck_tile/18_flexattn/script/benchmark_fwd.sh 2>&1 |
tee
-a
$fmha_fwd_log
...
...
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