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
yangql
composable_kernel-1
Commits
9881625b
Unverified
Commit
9881625b
authored
Aug 26, 2022
by
zjing14
Committed by
GitHub
Aug 26, 2022
Browse files
Fixed splitk gemm fp32 (#384)
* add scripts * fixed splitK_gemm_fp32 * clean * clean
parent
57fadf6f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
include/ck/tensor_operation/gpu/device/device_gemm_xdl_splitk.hpp
...ck/tensor_operation/gpu/device/device_gemm_xdl_splitk.hpp
+2
-2
script/run_full_performance_tests.sh
script/run_full_performance_tests.sh
+4
-4
No files found.
include/ck/tensor_operation/gpu/device/device_gemm_xdl_splitk.hpp
View file @
9881625b
...
...
@@ -93,9 +93,9 @@ struct DeviceGemmXdlSplitK : public DeviceGemmSplitK<ALayout,
const
auto
a_grid_desc_m_kpad
=
transform_tensor_descriptor
(
a_grid_desc_m_k
,
make_tuple
(
make_
right_pad_transform
(
K
,
KPad
-
K
),
make_pass_through_transform
(
M
)),
make_tuple
(
make_
pass_through_transform
(
M
),
make_right_pad_transform
(
K
,
KPad
-
K
)),
make_tuple
(
Sequence
<
0
>
{},
Sequence
<
1
>
{}),
make_tuple
(
Sequence
<
0
>
{},
Sequence
<
1
>
{}));
make_tuple
(
Sequence
<
1
>
{},
Sequence
<
0
>
{}));
if
constexpr
(
GemmSpec
==
GemmSpecialization
::
MNPadding
)
{
...
...
script/run_full_performance_tests.sh
View file @
9881625b
...
...
@@ -127,10 +127,10 @@ print_log_header $reduction_log $env_type $branch $host_name
export
splitK_gemm_log
=
"perf_splitK_gemm_
${
gpu_arch
}
.log"
print_log_header
$splitK_gemm_log
$env_type
$branch
$host_name
#
../script/profile_splitK_gemm.sh gemm_splitk 0 0 $verify 1 0 1 4 | tee -a $splitK_gemm_log
#
../script/profile_splitK_gemm.sh gemm_splitk 0 1 $verify 1 0 1 4 | tee -a $splitK_gemm_log
#
../script/profile_splitK_gemm.sh gemm_splitk 0 2 $verify 1 0 1 4 | tee -a $splitK_gemm_log
#
../script/profile_splitK_gemm.sh gemm_splitk 0 3 $verify 1 0 1 4 | tee -a $splitK_gemm_log
../script/profile_splitK_gemm.sh gemm_splitk 0 0
$verify
1 0 1 4 |
tee
-a
$splitK_gemm_log
../script/profile_splitK_gemm.sh gemm_splitk 0 1
$verify
1 0 1 4 |
tee
-a
$splitK_gemm_log
../script/profile_splitK_gemm.sh gemm_splitk 0 2
$verify
1 0 1 4 |
tee
-a
$splitK_gemm_log
../script/profile_splitK_gemm.sh gemm_splitk 0 3
$verify
1 0 1 4 |
tee
-a
$splitK_gemm_log
../script/profile_splitK_gemm.sh gemm_splitk 1 0
$verify
1 0 1 4 |
tee
-a
$splitK_gemm_log
../script/profile_splitK_gemm.sh gemm_splitk 1 1
$verify
1 0 1 4 |
tee
-a
$splitK_gemm_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