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
dcd3d21a
Commit
dcd3d21a
authored
Jul 08, 2024
by
illsilin
Browse files
merge from public repo
parents
9f2a6d43
8182976c
Changes
379
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
820 additions
and
82 deletions
+820
-82
profiler/src/profile_grouped_gemm.cpp
profiler/src/profile_grouped_gemm.cpp
+2
-2
profiler/src/profile_grouped_gemm_multiply_tile_loop.cpp
profiler/src/profile_grouped_gemm_multiply_tile_loop.cpp
+133
-0
script/check_copyright_year.sh
script/check_copyright_year.sh
+0
-0
script/profile_grouped_conv_fwd_outelementop.sh
script/profile_grouped_conv_fwd_outelementop.sh
+20
-0
test/CMakeLists.txt
test/CMakeLists.txt
+7
-0
test/contraction/test_contraction_xdl.cpp
test/contraction/test_contraction_xdl.cpp
+6
-0
test/grouped_convnd_bwd_data/CMakeLists.txt
test/grouped_convnd_bwd_data/CMakeLists.txt
+4
-4
test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_interface_wmma.cpp
..._bwd_data/test_grouped_convnd_bwd_data_interface_wmma.cpp
+8
-0
test/grouped_convnd_bwd_weight/CMakeLists.txt
test/grouped_convnd_bwd_weight/CMakeLists.txt
+4
-4
test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_interface_wmma.cpp
..._weight/test_grouped_convnd_bwd_weight_interface_wmma.cpp
+8
-0
test/grouped_convnd_fwd/CMakeLists.txt
test/grouped_convnd_fwd/CMakeLists.txt
+7
-3
test/grouped_convnd_fwd/test_grouped_convnd_fwd.cpp
test/grouped_convnd_fwd/test_grouped_convnd_fwd.cpp
+17
-1
test/grouped_convnd_fwd/test_grouped_convnd_fwd_multi_ab_interface.cpp
...convnd_fwd/test_grouped_convnd_fwd_multi_ab_interface.cpp
+5
-5
test/position_embedding/position_embedding.cpp
test/position_embedding/position_embedding.cpp
+62
-62
test/smfmac_op/CMakeLists.txt
test/smfmac_op/CMakeLists.txt
+2
-0
test/smfmac_op/smfmac_op.cpp
test/smfmac_op/smfmac_op.cpp
+82
-0
test/smfmac_op/smfmac_op_util.hpp
test/smfmac_op/smfmac_op_util.hpp
+361
-0
test/smfmac_op/smfmac_op_xdl.cpp
test/smfmac_op/smfmac_op_xdl.cpp
+89
-0
test/wmma_op/wmma_op_util.hpp
test/wmma_op/wmma_op_util.hpp
+3
-1
No files found.
profiler/src/profile_grouped_gemm.cpp
View file @
dcd3d21a
...
...
@@ -98,8 +98,8 @@ int profile_grouped_gemm(int argc, char* argv[])
int
n_iter
=
10
;
if
(
argc
==
17
)
{
n_warmup
=
std
::
stoi
(
argv
[
1
6
]);
n_iter
=
std
::
stoi
(
argv
[
1
7
]);
n_warmup
=
std
::
stoi
(
argv
[
1
5
]);
n_iter
=
std
::
stoi
(
argv
[
1
6
]);
}
#ifdef CK_ENABLE_FP16
...
...
profiler/src/profile_grouped_gemm_multiply_tile_loop.cpp
0 → 100644
View file @
dcd3d21a
// SPDX-License-Identifier: MIT
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
#include <cstdlib>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include "profiler/profile_grouped_gemm_multiply_tile_loop_impl.hpp"
#include "profiler_operation_registry.hpp"
enum
struct
GemmMatrixLayout
{
MK_KN_MN
,
// 0
};
enum
struct
GemmDataType
{
BF16_INT8_BF16_BF16
,
// 0
};
#define OP_NAME "grouped_gemm_multiply_tile_loop"
#define OP_DESC "Grouped GEMM Multiply Multiple D Tile Loop"
namespace
{
std
::
vector
<
int
>
argToIntArray
(
char
*
input
)
{
std
::
vector
<
int
>
out
;
std
::
istringstream
in
(
input
);
std
::
string
item
;
while
(
std
::
getline
(
in
,
item
,
','
))
{
out
.
push_back
(
std
::
stoi
(
item
));
}
return
out
;
}
int
profile_grouped_gemm_tile_loop
(
int
argc
,
char
*
argv
[])
{
if
(
argc
<
14
)
{
std
::
cout
<<
"arg1: tensor operation ("
OP_NAME
": "
OP_DESC
")
\n
"
<<
"arg2: data type (0: bf16@int8)
\n
"
<<
"arg3: matrix layout (0: A[m, k] * B[k, n] = C[m, n]);
\n
"
<<
"arg4: verification (0: no; 1: yes)
\n
"
<<
"arg5: initialization (0: no init; 1: integer value; 2: decimal value)
\n
"
<<
"arg6: print tensor value (0: no; 1: yes)
\n
"
<<
"arg7: time kernel (0=n0, 1=yes)
\n
"
<<
"arg8 to 13: Ms, Ns, Ks, StrideAs, StrideBs, StrideCs (e.g., 256,256 128,128 64,64 "
"64,64 64,64 128,128)
\n
"
<<
"optional:
\n
"
<<
"arg14: number of warm-up cycles (default 1)
\n
"
<<
"arg15: number of iterations (default 10)
\n
"
<<
std
::
endl
;
exit
(
1
);
}
const
auto
data_type
=
static_cast
<
GemmDataType
>
(
std
::
stoi
(
argv
[
2
]));
const
auto
layout
=
static_cast
<
GemmMatrixLayout
>
(
std
::
stoi
(
argv
[
3
]));
const
bool
do_verification
=
std
::
stoi
(
argv
[
4
]);
const
int
init_method
=
std
::
stoi
(
argv
[
5
]);
const
bool
do_log
=
std
::
stoi
(
argv
[
6
]);
const
bool
time_kernel
=
std
::
stoi
(
argv
[
7
]);
const
auto
Ms
=
argToIntArray
(
argv
[
8
]);
const
auto
Ns
=
argToIntArray
(
argv
[
9
]);
const
auto
Ks
=
argToIntArray
(
argv
[
10
]);
auto
StrideAs
=
argToIntArray
(
argv
[
11
]);
auto
StrideBs
=
argToIntArray
(
argv
[
12
]);
auto
StrideCs
=
argToIntArray
(
argv
[
13
]);
const
int
DefaultStrideA
=
Ks
[
0
];
const
int
DefaultStrideB
=
Ns
[
0
];
const
int
DefaultStrideC
=
Ns
[
0
];
for
(
size_t
i
=
0
;
i
<
Ms
.
size
();
++
i
)
{
StrideAs
[
i
]
=
StrideAs
[
i
]
==
-
1
?
DefaultStrideA
:
StrideAs
[
i
];
StrideBs
[
i
]
=
StrideBs
[
i
]
==
-
1
?
DefaultStrideB
:
StrideBs
[
i
];
StrideCs
[
i
]
=
StrideCs
[
i
]
==
-
1
?
DefaultStrideC
:
StrideCs
[
i
];
}
std
::
vector
<
int
>
StrideDs
(
StrideCs
);
int
n_warmup
=
10
;
int
n_iter
=
50
;
if
(
argc
==
16
)
{
n_warmup
=
std
::
stoi
(
argv
[
14
]);
n_iter
=
std
::
stoi
(
argv
[
15
]);
}
if
(
data_type
==
GemmDataType
::
BF16_INT8_BF16_BF16
&&
layout
==
GemmMatrixLayout
::
MK_KN_MN
)
{
ck
::
profiler
::
profile_grouped_gemm_multiply_tile_loop_impl
<
ck
::
bhalf_t
,
int8_t
,
ck
::
bhalf_t
,
ck
::
bhalf_t
,
float
,
ck
::
tensor_layout
::
gemm
::
RowMajor
,
ck
::
tensor_layout
::
gemm
::
RowMajor
,
ck
::
tensor_layout
::
gemm
::
RowMajor
,
ck
::
tensor_layout
::
gemm
::
RowMajor
>
(
do_verification
,
init_method
,
do_log
,
time_kernel
,
Ms
,
Ns
,
Ks
,
StrideAs
,
StrideBs
,
StrideDs
,
StrideCs
,
n_warmup
,
n_iter
);
}
else
{
throw
std
::
runtime_error
(
"wrong! this GEMM data_type & layout is not implemented"
);
}
return
0
;
}
}
// anonymous namespace
REGISTER_PROFILER_OPERATION
(
OP_NAME
,
OP_DESC
,
profile_grouped_gemm_tile_loop
);
script/check_copyright_year.sh
100755 → 100644
View file @
dcd3d21a
File mode changed from 100755 to 100644
script/profile_grouped_conv_fwd_outelementop.sh
0 → 100755
View file @
dcd3d21a
#!/bin/bash
## GPU visibility
export
HIP_VISIBLE_DEVICES
=
0
DRIVER
=
"../build/bin/ckProfiler"
OP
=
$1
DATATYPE
=
$2
OUTELEMENTOP
=
$3
LAYOUT
=
$4
VERIFY
=
$5
INIT
=
$6
LOG
=
$7
TIME
=
$8
N
=
$9
####### op datatype OUTELEMENTOP layout verify init log time Ndims G N K C Z Y X Di Hi Wi Sz Sy Sx Dz Dy Dx Left Pz LeftPy LeftPx RightPz RightPy RightPx
$DRIVER
$OP
$DATATYPE
$OUTELEMENTOP
$LAYOUT
$VERIFY
$INIT
$LOG
$TIME
3 32
$N
96 96 3 3 3 28 28 28 1 1 1 1 1 1 1 1 1 1 1 1
$DRIVER
$OP
$DATATYPE
$OUTELEMENTOP
$LAYOUT
$VERIFY
$INIT
$LOG
$TIME
3 32
$N
192 192 3 3 3 28 28 28 1 1 1 1 1 1 1 1 1 1 1 1
test/CMakeLists.txt
View file @
dcd3d21a
...
...
@@ -71,6 +71,8 @@ function(add_test_executable TEST_NAME)
list
(
REMOVE_ITEM TEST_TARGETS gfx1030 gfx1100 gfx1101 gfx1102 gfx1103
)
elseif
(
ARGN MATCHES
"_wmma"
)
list
(
REMOVE_ITEM TEST_TARGETS gfx908 gfx90a gfx940 gfx941 gfx942 gfx1030
)
elseif
(
ARGN MATCHES
"_smfmac"
)
list
(
REMOVE_ITEM TEST_TARGETS gfx1030 gfx1100 gfx1101 gfx1102 gfx1103 gfx908 gfx90a
)
endif
()
set_source_files_properties
(
${
ARGN
}
PROPERTIES LANGUAGE HIP
)
add_executable
(
${
TEST_NAME
}
${
ARGN
}
)
...
...
@@ -150,6 +152,8 @@ function(add_gtest_executable TEST_NAME)
list
(
REMOVE_ITEM TEST_TARGETS gfx900 gfx906 gfx1030 gfx1100 gfx1101 gfx1102 gfx1103
)
elseif
(
ARGN MATCHES
"_wmma"
)
list
(
REMOVE_ITEM TEST_TARGETS gfx900 gfx906 gfx908 gfx90a gfx940 gfx941 gfx942 gfx1030
)
elseif
(
ARGN MATCHES
"_smfmac"
)
list
(
REMOVE_ITEM TEST_TARGETS gfx1030 gfx1100 gfx1101 gfx1102 gfx1103 gfx908 gfx90a
)
endif
()
set_source_files_properties
(
${
ARGN
}
PROPERTIES LANGUAGE HIP
)
add_executable
(
${
TEST_NAME
}
${
ARGN
}
)
...
...
@@ -209,4 +213,7 @@ add_subdirectory(wrapper)
if
(
GPU_TARGETS MATCHES
"gfx11"
)
add_subdirectory
(
wmma_op
)
endif
()
if
(
GPU_TARGETS MATCHES
"gfx942"
AND CK_HIP_VERSION_MAJOR GREATER_EQUAL 6 AND CK_HIP_VERSION_MINOR GREATER_EQUAL 2
)
# smfmac needs ROCm6.2
add_subdirectory
(
smfmac_op
)
endif
()
add_subdirectory
(
position_embedding
)
test/contraction/test_contraction_xdl.cpp
View file @
dcd3d21a
...
...
@@ -212,4 +212,10 @@ TYPED_TEST(TestContractionScaleMixedPrecision, scale)
this
->
template
Run
<
6
>({{
1
,
1
,
1
,
3
,
2
,
3
},
{
1
,
1
,
1
,
3
,
2
,
3
},
{
1
,
1
,
1
,
2
,
2
,
4
}});
this
->
template
Run
<
2
>({{
16
,
8
},
{
16
,
8
},
{
16
,
8
}});
this
->
template
Run
<
2
>({{
8
,
16
},
{
16
,
8
},
{
8
,
16
}});
// special cases
this
->
template
Run
<
2
>({{
1
,
1
},
{
16
,
8
},
{
8
,
16
}});
this
->
template
Run
<
2
>({{
8
,
16
},
{
16
,
8
},
{
1
,
1
}});
this
->
template
Run
<
2
>({{
8
,
16
},
{
1
,
1
},
{
8
,
16
}});
this
->
template
Run
<
2
>({{
1
,
1
},
{
1
,
1
},
{
1
,
1
}});
}
test/grouped_convnd_bwd_data/CMakeLists.txt
View file @
dcd3d21a
...
...
@@ -2,11 +2,11 @@ add_gtest_executable(test_grouped_convnd_bwd_data test_grouped_convnd_bwd_data_x
if
(
result EQUAL 0
)
target_link_libraries
(
test_grouped_convnd_bwd_data PRIVATE utility device_grouped_conv2d_bwd_data_instance device_grouped_conv3d_bwd_data_instance
)
endif
()
add_gtest_executable
(
test_grouped_convnd_bwd_data_interface test_grouped_convnd_bwd_data_interface_xdl.cpp
)
add_gtest_executable
(
test_grouped_convnd_bwd_data_interface
_xdl
test_grouped_convnd_bwd_data_interface_xdl.cpp
)
if
(
result EQUAL 0
)
target_link_libraries
(
test_grouped_convnd_bwd_data_interface PRIVATE utility device_grouped_conv2d_bwd_data_instance
)
target_link_libraries
(
test_grouped_convnd_bwd_data_interface
_xdl
PRIVATE utility device_grouped_conv2d_bwd_data_instance
)
endif
()
add_gtest_executable
(
test_grouped_convnd_bwd_data_interface test_grouped_convnd_bwd_data_interface_wmma.cpp
)
add_gtest_executable
(
test_grouped_convnd_bwd_data_interface
_wmma
test_grouped_convnd_bwd_data_interface_wmma.cpp
)
if
(
result EQUAL 0
)
target_link_libraries
(
test_grouped_convnd_bwd_data_interface PRIVATE utility device_grouped_conv2d_bwd_data_instance
)
target_link_libraries
(
test_grouped_convnd_bwd_data_interface
_wmma
PRIVATE utility device_grouped_conv2d_bwd_data_instance
)
endif
()
test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_interface_wmma.cpp
View file @
dcd3d21a
...
...
@@ -52,6 +52,14 @@ class TestGroupedConvndBwdData : public ::testing::Test
ck
::
utils
::
conv
::
ConvParam
conv_param
;
void
SetUp
()
override
{
if
(
!
ck
::
is_gfx11_supported
())
{
GTEST_SKIP
();
}
}
template
<
ck
::
index_t
NDimSpatial
>
bool
Run
()
{
...
...
test/grouped_convnd_bwd_weight/CMakeLists.txt
View file @
dcd3d21a
...
...
@@ -5,13 +5,13 @@ if(GPU_TARGETS MATCHES "gfx9" OR DL_KERNELS)
add_gtest_executable
(
test_grouped_convnd_bwd_weight test_grouped_convnd_bwd_weight.cpp
)
target_link_libraries
(
test_grouped_convnd_bwd_weight PRIVATE utility device_grouped_conv3d_bwd_weight_instance
)
endif
()
add_gtest_executable
(
test_grouped_convnd_bwd_weight_interface test_grouped_convnd_bwd_weight_interface_xdl.cpp
)
add_gtest_executable
(
test_grouped_convnd_bwd_weight_interface
_xdl
test_grouped_convnd_bwd_weight_interface_xdl.cpp
)
if
(
result EQUAL 0
)
target_link_libraries
(
test_grouped_convnd_bwd_weight_interface PRIVATE utility
)
target_link_libraries
(
test_grouped_convnd_bwd_weight_interface
_xdl
PRIVATE utility
)
endif
()
add_gtest_executable
(
test_grouped_convnd_bwd_weight_interface test_grouped_convnd_bwd_weight_interface_wmma.cpp
)
add_gtest_executable
(
test_grouped_convnd_bwd_weight_interface
_wmma
test_grouped_convnd_bwd_weight_interface_wmma.cpp
)
if
(
result EQUAL 0
)
target_link_libraries
(
test_grouped_convnd_bwd_weight_interface PRIVATE utility
)
target_link_libraries
(
test_grouped_convnd_bwd_weight_interface
_wmma
PRIVATE utility
)
endif
()
add_gtest_executable
(
test_grouped_conv_bwd_weight_xdl_bilinear test_grouped_conv_bwd_weight_xdl_bilinear.cpp
)
if
(
result EQUAL 0
)
...
...
test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_interface_wmma.cpp
View file @
dcd3d21a
...
...
@@ -52,6 +52,14 @@ class TestGroupedConvndBwdWeight : public ::testing::Test
ck
::
utils
::
conv
::
ConvParam
conv_param
;
void
SetUp
()
override
{
if
(
!
ck
::
is_gfx11_supported
())
{
GTEST_SKIP
();
}
}
template
<
ck
::
index_t
SplitK
>
bool
Run
()
{
...
...
test/grouped_convnd_fwd/CMakeLists.txt
View file @
dcd3d21a
add_gtest_executable
(
test_grouped_convnd_fwd test_grouped_convnd_fwd_xdl_wmma.cpp
)
if
(
result EQUAL 0
)
target_link_libraries
(
test_grouped_convnd_fwd PRIVATE utility device_grouped_conv1d_fwd_instance device_grouped_conv2d_fwd_instance device_grouped_conv3d_fwd_instance
)
if
(
GPU_TARGETS MATCHES
"gfx9"
OR GPU_TARGETS MATCHES
"gfx11"
)
add_gtest_executable
(
test_grouped_convnd_fwd test_grouped_convnd_fwd.cpp
)
if
((
GPU_TARGETS MATCHES
"gfx11"
)
AND
(
NOT GPU_TARGETS MATCHES
"gfx9"
))
target_link_libraries
(
test_grouped_convnd_fwd PRIVATE utility device_grouped_conv2d_fwd_instance device_grouped_conv3d_fwd_instance
)
else
()
target_link_libraries
(
test_grouped_convnd_fwd PRIVATE utility device_grouped_conv1d_fwd_instance device_grouped_conv2d_fwd_instance device_grouped_conv3d_fwd_instance
)
endif
()
endif
()
add_gtest_executable
(
test_grouped_convnd_fwd_multi_ab_interface test_grouped_convnd_fwd_multi_ab_interface.cpp
)
...
...
test/grouped_convnd_fwd/test_grouped_convnd_fwd
_xdl_wmma
.cpp
→
test/grouped_convnd_fwd/test_grouped_convnd_fwd.cpp
View file @
dcd3d21a
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
3
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
4
, Advanced Micro Devices, Inc. All rights reserved.
#include <cstdlib>
#include <iostream>
...
...
@@ -69,6 +69,8 @@ using KernelTypes3d = ::testing::Types<std::tuple<float, GNDHWC, GKZYXC, GNDHWK>
std
::
tuple
<
ck
::
bhalf_t
,
NDHWGC
,
GKZYXC
,
NDHWGK
>
,
std
::
tuple
<
int8_t
,
NDHWGC
,
GKZYXC
,
NDHWGK
>>
;
using
KernelTypes2dLargeCases
=
::
testing
::
Types
<
std
::
tuple
<
float
,
NHWGC
,
GKYXC
,
NHWGK
>>
;
template
<
typename
Tuple
>
class
TestGroupedConvndFwd1d
:
public
TestGroupedConvndFwd
<
Tuple
>
{
...
...
@@ -84,9 +86,15 @@ class TestGroupedConvndFwd3d : public TestGroupedConvndFwd<Tuple>
{
};
template
<
typename
Tuple
>
class
TestGroupedConvndFwd2dLargeCases
:
public
TestGroupedConvndFwd
<
Tuple
>
{
};
TYPED_TEST_SUITE
(
TestGroupedConvndFwd1d
,
KernelTypes1d
);
TYPED_TEST_SUITE
(
TestGroupedConvndFwd2d
,
KernelTypes2d
);
TYPED_TEST_SUITE
(
TestGroupedConvndFwd3d
,
KernelTypes3d
);
TYPED_TEST_SUITE
(
TestGroupedConvndFwd2dLargeCases
,
KernelTypes2dLargeCases
);
TYPED_TEST
(
TestGroupedConvndFwd1d
,
Test1D
)
{
...
...
@@ -131,3 +139,11 @@ TYPED_TEST(TestGroupedConvndFwd3d, Test3D)
{
3
,
1
,
1
,
1
,
1
,
{
3
,
3
,
3
},
{
32
,
32
,
32
},
{
1
,
1
,
1
},
{
1
,
1
,
1
},
{
1
,
1
,
1
},
{
1
,
1
,
1
}});
this
->
template
Run
<
3
>();
}
TYPED_TEST
(
TestGroupedConvndFwd2dLargeCases
,
Test2DLargeCases
)
{
// Case larger than 2GB
this
->
conv_params
.
push_back
(
{
2
,
1
,
64
,
4
,
192
,
{
2
,
2
},
{
224
,
224
},
{
224
,
224
},
{
0
,
0
},
{
0
,
0
},
{
0
,
0
}});
this
->
template
Run
<
2
>();
}
test/grouped_convnd_fwd/test_grouped_convnd_fwd_multi_ab_interface.cpp
View file @
dcd3d21a
// SPDX-License-Identifier: MIT
// Copyright (c) 2023, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2023
-2024
, Advanced Micro Devices, Inc. All rights reserved.
#include <cstdlib>
#include <iostream>
...
...
@@ -207,7 +207,7 @@ TEST_F(TestGroupedConvndFwdMultiAInterface, MultiA)
std
::
array
<
const
void
*
,
NumAs
>
as
{
nullptr
,
nullptr
};
const
void
*
b
=
nullptr
;
EXPECT_TRUE
(
this
->
template
Run
(
as
,
b
));
EXPECT_TRUE
(
this
->
Run
(
as
,
b
));
}
TEST_F
(
TestGroupedConvndFwdMultiBInterface
,
MultiB
)
...
...
@@ -215,7 +215,7 @@ TEST_F(TestGroupedConvndFwdMultiBInterface, MultiB)
const
void
*
a
=
nullptr
;
std
::
array
<
const
void
*
,
NumBs
>
bs
{
nullptr
,
nullptr
};
EXPECT_TRUE
(
this
->
template
Run
(
a
,
bs
));
EXPECT_TRUE
(
this
->
Run
(
a
,
bs
));
}
TEST_F
(
TestGroupedConvndFwdMultiABInterface
,
MultiAB
)
...
...
@@ -223,7 +223,7 @@ TEST_F(TestGroupedConvndFwdMultiABInterface, MultiAB)
std
::
array
<
const
void
*
,
NumAs
>
as
{
nullptr
,
nullptr
};
std
::
array
<
const
void
*
,
NumBs
>
bs
{
nullptr
,
nullptr
};
EXPECT_TRUE
(
this
->
template
Run
(
as
,
bs
));
EXPECT_TRUE
(
this
->
Run
(
as
,
bs
));
}
TEST_F
(
TestGroupedConvndFwdInterface
,
SingleAB
)
...
...
@@ -231,5 +231,5 @@ TEST_F(TestGroupedConvndFwdInterface, SingleAB)
const
void
*
a
=
nullptr
;
const
void
*
b
=
nullptr
;
EXPECT_TRUE
(
this
->
template
Run
(
a
,
b
));
EXPECT_TRUE
(
this
->
Run
(
a
,
b
));
}
test/position_embedding/position_embedding.cpp
View file @
dcd3d21a
...
...
@@ -131,74 +131,74 @@ int main()
0
,
1
,
2
,
3
,
4
,
5
,
0
,
1
,
2
,
3
,
4
,
5
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
4
,
6
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
1
,
2
,
3
,
4
,
5
,
1
,
0
,
1
,
2
,
3
,
4
,
2
,
1
,
0
,
1
,
2
,
3
,
3
,
2
,
1
,
0
,
1
,
2
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
6
,
4
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
1
,
2
,
3
,
1
,
0
,
1
,
2
,
2
,
1
,
0
,
1
,
3
,
2
,
1
,
0
,
4
,
3
,
2
,
1
,
5
,
4
,
3
,
2
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
3
,
3
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
1
,
2
,
1
,
0
,
1
,
2
,
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
4
,
6
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
2
,
1
,
0
,
1
,
2
,
3
,
3
,
2
,
1
,
0
,
1
,
2
,
4
,
3
,
2
,
1
,
0
,
1
,
5
,
4
,
3
,
2
,
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
6
,
4
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
2
,
3
,
4
,
5
,
1
,
2
,
3
,
4
,
0
,
1
,
2
,
3
,
1
,
0
,
1
,
2
,
2
,
1
,
0
,
1
,
3
,
2
,
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
3
,
3
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
0
,
1
,
2
,
1
,
0
,
1
,
2
,
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
4
,
6
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
-
1
,
-
2
,
-
3
,
-
4
,
-
5
,
-
1
,
0
,
-
1
,
-
2
,
-
3
,
-
4
,
-
2
,
-
1
,
0
,
-
1
,
-
2
,
-
3
,
-
3
,
-
2
,
-
1
,
0
,
-
1
,
-
2
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
6
,
4
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
-
1
,
-
2
,
-
3
,
-
1
,
0
,
-
1
,
-
2
,
-
2
,
-
1
,
0
,
-
1
,
-
3
,
-
2
,
-
1
,
0
,
-
4
,
-
3
,
-
2
,
-
1
,
-
5
,
-
4
,
-
3
,
-
2
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
3
,
3
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
-
1
,
-
2
,
-
1
,
0
,
-
1
,
-
2
,
-
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
4
,
6
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
-
2
,
-
1
,
0
,
-
1
,
-
2
,
-
3
,
-
3
,
-
2
,
-
1
,
0
,
-
1
,
-
2
,
-
4
,
-
3
,
-
2
,
-
1
,
0
,
-
1
,
-
5
,
-
4
,
-
3
,
-
2
,
-
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
6
,
4
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
-
2
,
-
3
,
-
4
,
-
5
,
-
1
,
-
2
,
-
3
,
-
4
,
0
,
-
1
,
-
2
,
-
3
,
-
1
,
0
,
-
1
,
-
2
,
-
2
,
-
1
,
0
,
-
1
,
-
3
,
-
2
,
-
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
true
,
dtype
>
(
3
,
3
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
0
,
-
1
,
-
2
,
-
1
,
0
,
-
1
,
-
2
,
-
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
4
,
6
,
slope
,
ck_tile
::
AlibiMode
::
VERTICAL
,
{
0
,
1
,
2
,
3
,
4
,
5
,
0
,
1
,
2
,
3
,
4
,
5
,
0
,
1
,
2
,
3
,
4
,
5
,
0
,
1
,
2
,
3
,
4
,
5
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
4
,
6
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
1
,
2
,
3
,
4
,
5
,
1
,
0
,
1
,
2
,
3
,
4
,
2
,
1
,
0
,
1
,
2
,
3
,
3
,
2
,
1
,
0
,
1
,
2
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
6
,
4
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
1
,
2
,
3
,
1
,
0
,
1
,
2
,
2
,
1
,
0
,
1
,
3
,
2
,
1
,
0
,
4
,
3
,
2
,
1
,
5
,
4
,
3
,
2
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
3
,
3
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
1
,
2
,
1
,
0
,
1
,
2
,
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
4
,
6
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
2
,
1
,
0
,
1
,
2
,
3
,
3
,
2
,
1
,
0
,
1
,
2
,
4
,
3
,
2
,
1
,
0
,
1
,
5
,
4
,
3
,
2
,
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
6
,
4
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
2
,
3
,
4
,
5
,
1
,
2
,
3
,
4
,
0
,
1
,
2
,
3
,
1
,
0
,
1
,
2
,
2
,
1
,
0
,
1
,
3
,
2
,
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
3
,
3
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
0
,
1
,
2
,
1
,
0
,
1
,
2
,
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
4
,
6
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
-
1
,
-
2
,
-
3
,
-
4
,
-
5
,
-
1
,
0
,
-
1
,
-
2
,
-
3
,
-
4
,
-
2
,
-
1
,
0
,
-
1
,
-
2
,
-
3
,
-
3
,
-
2
,
-
1
,
0
,
-
1
,
-
2
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
6
,
4
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
-
1
,
-
2
,
-
3
,
-
1
,
0
,
-
1
,
-
2
,
-
2
,
-
1
,
0
,
-
1
,
-
3
,
-
2
,
-
1
,
0
,
-
4
,
-
3
,
-
2
,
-
1
,
-
5
,
-
4
,
-
3
,
-
2
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
3
,
3
,
slope
,
ck_tile
::
AlibiMode
::
FROM_TOP_LEFT
,
{
0
,
-
1
,
-
2
,
-
1
,
0
,
-
1
,
-
2
,
-
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
4
,
6
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
-
2
,
-
1
,
0
,
-
1
,
-
2
,
-
3
,
-
3
,
-
2
,
-
1
,
0
,
-
1
,
-
2
,
-
4
,
-
3
,
-
2
,
-
1
,
0
,
-
1
,
-
5
,
-
4
,
-
3
,
-
2
,
-
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
6
,
4
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
-
2
,
-
3
,
-
4
,
-
5
,
-
1
,
-
2
,
-
3
,
-
4
,
0
,
-
1
,
-
2
,
-
3
,
-
1
,
0
,
-
1
,
-
2
,
-
2
,
-
1
,
0
,
-
1
,
-
3
,
-
2
,
-
1
,
0
});
rtn
&=
test_alibi_traverse_with_slope
<
false
,
dtype
>
(
3
,
3
,
slope
,
ck_tile
::
AlibiMode
::
FROM_BOTTOM_RIGHT
,
{
0
,
-
1
,
-
2
,
-
1
,
0
,
-
1
,
-
2
,
-
1
,
0
});
rtn
&=
test_alibi_slope_generation
<
float
>
(
8
,
{
0.5
,
0.25
,
0.125
,
0.0625
,
0.03125
,
0.015625
,
0.0078125
,
0.00390625
});
rtn
&=
test_alibi_slope_generation
<
float
>
(
16
,
{
0.7071067811865476
,
0.5
,
0.35355339059327384
,
0.25000000000000006
,
0.17677669529663692
,
...
...
test/smfmac_op/CMakeLists.txt
0 → 100644
View file @
dcd3d21a
add_gtest_executable
(
test_smfmac_op smfmac_op_xdl.cpp
)
target_link_libraries
(
test_smfmac_op PRIVATE utility
)
test/smfmac_op/smfmac_op.cpp
0 → 100644
View file @
dcd3d21a
// SPDX-License-Identifier: MIT
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
#include <algorithm>
#include <cstdlib>
#include <iostream>
#include <numeric>
#include <tuple>
#include <vector>
#include "ck/ck.hpp"
#include "ck/tensor_operation/gpu/device/tensor_layout.hpp"
#include "ck/tensor_operation/gpu/element/element_wise_operation.hpp"
#include "test/smfmac_op/smfmac_op_util.hpp"
template
<
typename
Src1Type
,
ck
::
index_t
Src1VecSize
,
typename
Src2Type
,
ck
::
index_t
Src2VecSize
,
typename
DstType
,
ck
::
index_t
AccVecSize
,
typename
GPUAccType
,
typename
CPUAccType
,
ck
::
index_t
M
,
ck
::
index_t
N
,
ck
::
index_t
K
>
bool
run_test
()
{
using
Row
=
ck
::
tensor_layout
::
gemm
::
RowMajor
;
using
PassThrough
=
ck
::
tensor_operation
::
element_wise
::
PassThrough
;
bool
pass
=
true
;
const
auto
matmul_default
=
ck
::
smfmac_op_util
::
matmul
<
Src1Type
,
Src1VecSize
,
Src2Type
,
Src2VecSize
,
GPUAccType
,
AccVecSize
,
DstType
,
M
,
N
,
K
>
;
const
auto
smfmac_kernel_container
=
std
::
make_tuple
(
matmul_default
);
ck
::
static_for
<
0
,
1
,
1
>
{}([
&
](
auto
i
)
{
pass
&=
ck
::
smfmac_op_util
::
TestSmfmac
<
decltype
(
std
::
get
<
ck
::
Number
<
i
>
{}
>
(
smfmac_kernel_container
)),
Src1Type
,
Src2Type
,
DstType
,
GPUAccType
,
CPUAccType
,
decltype
(
Row
{}),
decltype
(
Row
{}),
decltype
(
Row
{}),
PassThrough
,
PassThrough
,
PassThrough
,
AccVecSize
,
M
,
N
,
K
>
{}(
std
::
get
<
ck
::
Number
<
i
>
{}
>
(
smfmac_kernel_container
));
});
return
pass
;
}
int
main
(
int
,
char
*
[])
{
bool
pass
=
true
;
// clang-format off
// | Src1Type| Src1VecSize| Src2Type| Src2VecSize| DstType| DstVecSize| GPUAccType| CPUAccType| M| N| K|
pass
&=
run_test
<
ck
::
half_t
,
4
,
ck
::
half_t
,
8
,
float
,
4
,
float
,
float
,
16
,
16
,
32
>
();
pass
&=
run_test
<
ck
::
bhalf_t
,
4
,
ck
::
bhalf_t
,
8
,
float
,
4
,
float
,
float
,
16
,
16
,
32
>
();
pass
&=
run_test
<
ck
::
half_t
,
4
,
ck
::
half_t
,
8
,
float
,
16
,
float
,
float
,
32
,
32
,
16
>
();
pass
&=
run_test
<
ck
::
bhalf_t
,
4
,
ck
::
bhalf_t
,
8
,
float
,
16
,
float
,
float
,
32
,
32
,
16
>
();
// clang-format on
std
::
cout
<<
"TestGemm ..... "
<<
(
pass
?
"SUCCESS"
:
"FAILURE"
)
<<
std
::
endl
;
return
pass
;
}
test/smfmac_op/smfmac_op_util.hpp
0 → 100644
View file @
dcd3d21a
// SPDX-License-Identifier: MIT
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck/ck.hpp"
#include "ck/tensor_operation/gpu/device/tensor_layout.hpp"
#include "ck/library/utility/check_err.hpp"
#include "ck/library/utility/device_memory.hpp"
#include "ck/library/utility/host_tensor.hpp"
#include "ck/library/utility/host_tensor_generator.hpp"
#include "ck/library/reference_tensor_operation/cpu/reference_gemm.hpp"
#include "ck/utility/amd_smfmac.hpp"
#include "ck/library/utility/fill.hpp"
namespace
ck
{
namespace
smfmac_op_util
{
template
<
typename
src_vec1
,
typename
src_vec2
,
typename
acc_vec
>
__device__
void
builtin_smfmac_naive_selector
(
const
src_vec1
&
,
const
src_vec2
&
,
const
int32_t
&
,
acc_vec
&
)
{
}
template
<
>
__device__
void
builtin_smfmac_naive_selector
<
half4_t
,
half8_t
,
StaticBufferTupleOfVector
<
AddressSpaceEnum
::
Vgpr
,
float
,
1
,
4
,
true
>>
(
const
half4_t
&
reg_a
,
const
half8_t
&
reg_b
,
const
int32_t
&
reg_idx
,
StaticBufferTupleOfVector
<
AddressSpaceEnum
::
Vgpr
,
float
,
1
,
4
,
true
>&
reg_c
)
{
intrin_smfmac_f32_16x16x32f16
<
16
,
16
>::
Run
(
reg_a
,
reg_b
,
reg_idx
,
reg_c
.
GetVectorTypeReference
(
Number
<
0
>
{}));
}
template
<
>
__device__
void
builtin_smfmac_naive_selector
<
bhalf4_t
,
bhalf8_t
,
StaticBufferTupleOfVector
<
AddressSpaceEnum
::
Vgpr
,
float
,
1
,
4
,
true
>>
(
const
bhalf4_t
&
reg_a
,
const
bhalf8_t
&
reg_b
,
const
int32_t
&
reg_idx
,
StaticBufferTupleOfVector
<
AddressSpaceEnum
::
Vgpr
,
float
,
1
,
4
,
true
>&
reg_c
)
{
intrin_smfmac_f32_16x16x32bf16
<
16
,
16
>::
Run
(
reg_a
,
reg_b
,
reg_idx
,
reg_c
.
GetVectorTypeReference
(
Number
<
0
>
{}));
}
template
<
>
__device__
void
builtin_smfmac_naive_selector
<
half4_t
,
half8_t
,
StaticBufferTupleOfVector
<
AddressSpaceEnum
::
Vgpr
,
float
,
1
,
16
,
true
>>
(
const
half4_t
&
reg_a
,
const
half8_t
&
reg_b
,
const
int32_t
&
reg_idx
,
StaticBufferTupleOfVector
<
AddressSpaceEnum
::
Vgpr
,
float
,
1
,
16
,
true
>&
reg_c
)
{
intrin_smfmac_f32_32x32x16f16
<
32
,
32
>::
Run
(
reg_a
,
reg_b
,
reg_idx
,
reg_c
.
GetVectorTypeReference
(
Number
<
0
>
{}));
}
template
<
>
__device__
void
builtin_smfmac_naive_selector
<
bhalf4_t
,
bhalf8_t
,
StaticBufferTupleOfVector
<
AddressSpaceEnum
::
Vgpr
,
float
,
1
,
16
,
true
>>
(
const
bhalf4_t
&
reg_a
,
const
bhalf8_t
&
reg_b
,
const
int32_t
&
reg_idx
,
StaticBufferTupleOfVector
<
AddressSpaceEnum
::
Vgpr
,
float
,
1
,
16
,
true
>&
reg_c
)
{
intrin_smfmac_f32_32x32x16bf16
<
32
,
32
>::
Run
(
reg_a
,
reg_b
,
reg_idx
,
reg_c
.
GetVectorTypeReference
(
Number
<
0
>
{}));
}
// Smfmac instructions are using 4:2 structural sparsity, that means that in every contignuous
// subgroup of 4 elements, atleast 2 must be equal to zero and the position of non-zero elements is
// stored in idx register to allow selection of corresponding B matrix elements for multiplication.
// Currently smfmac instructions support only A matrix as sparse
template
<
typename
src1_t
,
index_t
src1_vec_size
,
typename
src2_t
,
index_t
src2_vec_size
,
typename
acc_t
,
index_t
acc_vec_size
,
typename
dst_t
,
int32_t
M
,
int32_t
N
,
int32_t
K
>
__global__
void
matmul
(
const
src1_t
*
a
,
const
src2_t
*
b
,
dst_t
*
c
)
{
__shared__
src1_t
a_shared
[
M
*
K
];
__shared__
src2_t
b_shared
[
K
*
N
];
const
int
lane
=
threadIdx
.
x
;
// smfmac's A part is storing only non-zero elements in 2VGPRs
// smfmac's B part is storing all elements in 4VGPRs
using
src1_vec
=
typename
vector_type
<
src1_t
,
src1_vec_size
>::
type
;
using
src1_full_vec
=
typename
vector_type
<
src1_t
,
src1_vec_size
*
2
>::
type
;
using
src2_vec
=
typename
vector_type
<
src2_t
,
src2_vec_size
>::
type
;
src1_vec
a_frag
=
{};
src2_vec
b_frag
=
{};
src1_full_vec
a_temp
=
{};
src2_vec
b_temp
=
{};
// initialize c fragment to 0
using
acc_vec
=
StaticBufferTupleOfVector
<
AddressSpaceEnum
::
Vgpr
,
acc_t
,
1
,
acc_vec_size
,
true
>
;
acc_vec
c_thread_buf_
;
for
(
int
i
=
0
;
i
<
8
;
++
i
)
{
a_temp
[
i
]
=
a
[(
lane
%
M
)
*
K
+
(
lane
/
M
)
*
8
+
i
];
// M K
}
for
(
int
i
=
0
;
i
<
8
;
++
i
)
{
b_temp
[
i
]
=
b
[(
8
*
(
lane
/
N
)
+
i
)
*
N
+
(
lane
%
N
)];
// K N
}
__syncthreads
();
for
(
int
i
=
0
;
i
<
8
;
++
i
)
{
a_shared
[(
lane
%
M
)
*
K
+
(
lane
/
M
)
*
8
+
i
]
=
a_temp
[
i
];
}
for
(
int
i
=
0
;
i
<
8
;
++
i
)
{
b_shared
[(
8
*
(
lane
/
N
)
+
i
)
*
N
+
(
lane
%
N
)]
=
b_temp
[
i
];
}
__syncthreads
();
// Idx must be a 32-bit register and it is storing 4 2-bit indexes of A's non zero elements.
// It starts with last two elements of every 4 elements subgroup set as non-zero
int32_t
idx
=
0b11101110
;
// Bit masks are for zeroing 0-3rd position of idx
static
constexpr
int32_t
bit_clear_masks
[
4
]
=
{
0b11
,
0b1100
,
0b110000
,
0b11000000
};
src1_t
curr_val
;
int32_t
a_pos
=
0
;
for
(
int
j
=
0
;
j
<
2
;
++
j
)
{
a_pos
=
j
*
2
;
for
(
int
i
=
0
;
i
<
4
;
++
i
)
{
curr_val
=
a_shared
[(
lane
%
M
)
*
K
+
(
lane
/
M
)
*
8
+
4
*
j
+
i
];
if
(
curr_val
!=
0.0
f
)
{
idx
&=
~
bit_clear_masks
[
a_pos
];
idx
|=
(
i
%
4
)
<<
2
*
a_pos
;
a_frag
[
a_pos
]
=
curr_val
;
a_pos
++
;
}
}
}
for
(
int
i
=
0
;
i
<
8
;
++
i
)
{
b_frag
[
i
]
=
b_shared
[(
8
*
(
lane
/
N
)
+
i
)
*
N
+
(
lane
%
N
)];
}
builtin_smfmac_naive_selector
<
src1_vec
,
src2_vec
,
acc_vec
>
(
a_frag
,
b_frag
,
idx
,
c_thread_buf_
);
__syncthreads
();
// store results from unpacked c_thread_buf_ output
if
constexpr
(
K
==
32
)
{
static_for
<
0
,
acc_vec_size
,
1
>
{}([
&
](
auto
i
)
{
c
[(
4
*
(
lane
/
16
)
+
i
)
*
N
+
lane
%
16
]
=
ck
::
type_convert
<
dst_t
>
(
c_thread_buf_
[
Number
<
i
>
{}]);
});
}
else
{
static_for
<
0
,
acc_vec_size
,
1
>
{}([
&
](
auto
i
)
{
c
[((
8
*
(
i
/
4
))
%
32
+
4
*
(
lane
/
32
)
+
i
%
4
)
*
N
+
lane
%
32
]
=
ck
::
type_convert
<
dst_t
>
(
c_thread_buf_
[
Number
<
i
>
{}]);
});
}
}
struct
GemmParams
{
GemmParams
()
:
M
(
16
),
N
(
16
),
K
(
32
),
StrideA
(
32
),
StrideB
(
16
),
StrideC
(
16
),
alpha
(
1
),
beta
(
0
)
{}
ck
::
index_t
M
;
ck
::
index_t
N
;
ck
::
index_t
K
;
ck
::
index_t
StrideA
;
ck
::
index_t
StrideB
;
ck
::
index_t
StrideC
;
float
alpha
;
float
beta
;
};
template
<
typename
GemmInstance
,
typename
ADataType
,
typename
BDataType
,
typename
CDataType
,
typename
AElementwiseOperation
,
typename
BElementwiseOperation
,
typename
CElementwiseOperation
>
void
RunHostGEMM
(
const
Tensor
<
ADataType
>&
A
,
const
Tensor
<
BDataType
>&
B
,
Tensor
<
CDataType
>&
C
,
AElementwiseOperation
a_element_op
,
BElementwiseOperation
b_element_op
,
CElementwiseOperation
c_element_op
)
{
auto
ref_gemm
=
GemmInstance
{};
auto
ref_invoker
=
ref_gemm
.
MakeInvoker
();
auto
ref_argument
=
ref_gemm
.
MakeArgument
(
A
,
B
,
C
,
a_element_op
,
b_element_op
,
c_element_op
);
ref_invoker
.
Run
(
ref_argument
);
}
template
<
typename
KernelType
,
typename
ADataType
,
typename
BDataType
,
typename
CDataType
>
bool
RunDeviceGEMM
(
KernelType
kernel
,
const
Tensor
<
ADataType
>&
A
,
const
Tensor
<
BDataType
>&
B
,
Tensor
<
CDataType
>&
C
)
{
DeviceMem
a_m_k_device_buf
(
sizeof
(
ADataType
)
*
A
.
mDesc
.
GetElementSpaceSize
());
DeviceMem
b_n_k_device_buf
(
sizeof
(
BDataType
)
*
B
.
mDesc
.
GetElementSpaceSize
());
DeviceMem
c_m_n_device_buf
(
sizeof
(
CDataType
)
*
C
.
mDesc
.
GetElementSpaceSize
());
a_m_k_device_buf
.
ToDevice
(
A
.
mData
.
data
());
b_n_k_device_buf
.
ToDevice
(
B
.
mData
.
data
());
kernel
<<<
1
,
64
>>>
(
static_cast
<
const
ADataType
*>
(
a_m_k_device_buf
.
GetDeviceBuffer
()),
static_cast
<
const
BDataType
*>
(
b_n_k_device_buf
.
GetDeviceBuffer
()),
static_cast
<
CDataType
*>
(
c_m_n_device_buf
.
GetDeviceBuffer
()));
c_m_n_device_buf
.
FromDevice
(
C
.
mData
.
data
());
return
true
;
}
template
<
typename
DeviceSmfmac
,
typename
ADataType
,
typename
BDataType
,
typename
CDataType
,
typename
GPUAccDataType
,
typename
CPUAccDataType
,
typename
ALayout
,
typename
BLayout
,
typename
CLayout
,
typename
AElementwiseOperation
,
typename
BElementwiseOperation
,
typename
CElementwiseOperation
,
index_t
CAccNum
,
index_t
M
,
index_t
N
,
index_t
K
>
struct
TestSmfmac
{
auto
PrepareGemmTensor
(
const
ck
::
smfmac_op_util
::
GemmParams
&
params
)
{
auto
f_host_tensor_descriptor
=
[](
std
::
size_t
row
,
std
::
size_t
col
,
std
::
size_t
stride
,
auto
layout
)
{
if
(
std
::
is_same
<
decltype
(
layout
),
ck
::
tensor_layout
::
gemm
::
RowMajor
>::
value
)
{
return
HostTensorDescriptor
(
std
::
vector
<
std
::
size_t
>
({
row
,
col
}),
std
::
vector
<
std
::
size_t
>
({
stride
,
1
}));
}
else
{
return
HostTensorDescriptor
(
std
::
vector
<
std
::
size_t
>
({
row
,
col
}),
std
::
vector
<
std
::
size_t
>
({
1
,
stride
}));
}
};
Tensor
<
ADataType
>
a_m_k
(
f_host_tensor_descriptor
(
params
.
M
,
params
.
K
,
params
.
StrideA
,
ALayout
{}));
Tensor
<
BDataType
>
b_n_k
(
f_host_tensor_descriptor
(
params
.
K
,
params
.
N
,
params
.
StrideB
,
BLayout
{}));
Tensor
<
CDataType
>
c_m_n_host_result
(
f_host_tensor_descriptor
(
params
.
M
,
params
.
N
,
params
.
StrideC
,
CLayout
{}));
Tensor
<
CDataType
>
c_m_n_device_result
(
f_host_tensor_descriptor
(
params
.
M
,
params
.
N
,
params
.
StrideC
,
CLayout
{}));
auto
f_generate_tensor_value
=
[](
auto
&
tensor
,
auto
type
)
{
using
dataType
=
decltype
(
type
);
tensor
.
GenerateTensorValue
(
GeneratorTensor_2
<
dataType
>
{
-
5
,
5
});
};
f_generate_tensor_value
(
a_m_k
,
ADataType
{});
f_generate_tensor_value
(
b_n_k
,
BDataType
{});
ck
::
utils
::
TransformIntoStructuralSparsity
<
ADataType
>
{}(
a_m_k
);
return
std
::
make_tuple
(
a_m_k
,
b_n_k
,
c_m_n_host_result
,
c_m_n_device_result
);
}
auto
operator
()(
const
DeviceSmfmac
&
smfmac_kernel
)
{
std
::
cout
<<
"ALayout = "
<<
ALayout
{}.
name
<<
", BLayout = "
<<
BLayout
{}.
name
<<
", CLayout = "
<<
CLayout
{}.
name
<<
std
::
endl
;
// Arrange
ck
::
smfmac_op_util
::
GemmParams
params
;
params
.
M
=
M
;
params
.
N
=
N
;
params
.
K
=
K
;
params
.
StrideA
=
K
;
// M K
params
.
StrideB
=
N
;
// K N
params
.
StrideC
=
N
;
// M N
auto
host_tensors
=
PrepareGemmTensor
(
params
);
const
Tensor
<
ADataType
>&
a
=
std
::
get
<
0
>
(
host_tensors
);
const
Tensor
<
BDataType
>&
b
=
std
::
get
<
1
>
(
host_tensors
);
Tensor
<
CDataType
>&
c_host
=
std
::
get
<
2
>
(
host_tensors
);
Tensor
<
CDataType
>&
c_device
=
std
::
get
<
3
>
(
host_tensors
);
auto
a_element_op
=
AElementwiseOperation
{};
auto
b_element_op
=
BElementwiseOperation
{};
auto
c_element_op
=
CElementwiseOperation
{};
using
ReferenceGemmInstance
=
ck
::
tensor_operation
::
host
::
ReferenceGemm
<
ADataType
,
BDataType
,
CDataType
,
CPUAccDataType
,
AElementwiseOperation
,
BElementwiseOperation
,
CElementwiseOperation
>
;
ck
::
smfmac_op_util
::
RunHostGEMM
<
ReferenceGemmInstance
>
(
a
,
b
,
c_host
,
a_element_op
,
b_element_op
,
c_element_op
);
// Act
bool
is_supported
=
ck
::
smfmac_op_util
::
RunDeviceGEMM
(
smfmac_kernel
,
a
,
b
,
c_device
);
if
(
is_supported
)
{
// Assert
bool
res
=
false
;
if
(
std
::
is_same
<
CDataType
,
float
>::
value
)
{
res
=
ck
::
utils
::
check_err
(
c_device
.
mData
,
c_host
.
mData
);
std
::
cout
<<
(
res
?
"SUCCESS"
:
"FAILURE"
)
<<
std
::
endl
;
}
else
{
std
::
cout
<<
"UNSUPPORTED CDataType"
<<
std
::
endl
;
}
return
res
;
}
else
{
return
true
;
}
}
};
}
// namespace smfmac_op_util
}
// namespace ck
test/smfmac_op/smfmac_op_xdl.cpp
0 → 100644
View file @
dcd3d21a
// SPDX-License-Identifier: MIT
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
#include <algorithm>
#include <cstdlib>
#include <iostream>
#include <numeric>
#include <tuple>
#include <vector>
#include "ck/ck.hpp"
#include "gtest/gtest.h"
#include "ck/tensor_operation/gpu/device/tensor_layout.hpp"
#include "ck/tensor_operation/gpu/element/element_wise_operation.hpp"
#include "test/smfmac_op/smfmac_op_util.hpp"
using
BF16
=
ck
::
bhalf_t
;
using
F16
=
ck
::
half_t
;
using
F32
=
float
;
using
Row
=
ck
::
tensor_layout
::
gemm
::
RowMajor
;
using
PassThrough
=
ck
::
tensor_operation
::
element_wise
::
PassThrough
;
template
<
typename
Tuple
>
class
TestSmfmac
:
public
::
testing
::
Test
{
protected:
using
Src1Type
=
std
::
tuple_element_t
<
0
,
Tuple
>
;
static
constexpr
ck
::
index_t
Src1VecSize
=
std
::
tuple_element_t
<
1
,
Tuple
>
{}.
value
;
using
Src2Type
=
std
::
tuple_element_t
<
2
,
Tuple
>
;
static
constexpr
ck
::
index_t
Src2VecSize
=
std
::
tuple_element_t
<
3
,
Tuple
>
{}.
value
;
using
DstType
=
std
::
tuple_element_t
<
4
,
Tuple
>
;
static
constexpr
ck
::
index_t
AccVecSize
=
std
::
tuple_element_t
<
5
,
Tuple
>
{}.
value
;
using
GPUAccType
=
std
::
tuple_element_t
<
6
,
Tuple
>
;
using
CPUAccType
=
std
::
tuple_element_t
<
7
,
Tuple
>
;
static
constexpr
ck
::
index_t
M
=
std
::
tuple_element_t
<
8
,
Tuple
>
{}.
value
;
static
constexpr
ck
::
index_t
N
=
std
::
tuple_element_t
<
9
,
Tuple
>
{}.
value
;
static
constexpr
ck
::
index_t
K
=
std
::
tuple_element_t
<
10
,
Tuple
>
{}.
value
;
void
Run
()
{
bool
pass
=
true
;
constexpr
auto
matmul_default
=
ck
::
smfmac_op_util
::
matmul
<
Src1Type
,
Src1VecSize
,
Src2Type
,
Src2VecSize
,
GPUAccType
,
AccVecSize
,
DstType
,
M
,
N
,
K
>
;
constexpr
auto
smfmac_kernel_container
=
std
::
make_tuple
(
matmul_default
);
ck
::
static_for
<
0
,
std
::
tuple_size_v
<
decltype
(
smfmac_kernel_container
)
>
,
1
>
{}([
&
](
auto
i
)
{
pass
&=
ck
::
smfmac_op_util
::
TestSmfmac
<
std
::
tuple_element_t
<
i
.
value
,
decltype
(
smfmac_kernel_container
)
>
,
Src1Type
,
Src2Type
,
DstType
,
GPUAccType
,
CPUAccType
,
decltype
(
Row
{}),
decltype
(
Row
{}),
decltype
(
Row
{}),
PassThrough
,
PassThrough
,
PassThrough
,
AccVecSize
,
M
,
N
,
K
>
{}(
std
::
get
<
ck
::
Number
<
i
>
{}
>
(
smfmac_kernel_container
));
});
EXPECT_TRUE
(
pass
);
}
};
template
<
ck
::
index_t
N
>
using
I
=
ck
::
Number
<
N
>
;
using
KernelTypes
=
::
testing
::
Types
<
std
::
tuple
<
F16
,
I
<
4
>
,
F16
,
I
<
8
>
,
F32
,
I
<
4
>
,
F32
,
F32
,
I
<
16
>
,
I
<
16
>
,
I
<
32
>>
,
std
::
tuple
<
BF16
,
I
<
4
>
,
BF16
,
I
<
8
>
,
F32
,
I
<
4
>
,
F32
,
F32
,
I
<
16
>
,
I
<
16
>
,
I
<
32
>>
,
std
::
tuple
<
F16
,
I
<
4
>
,
F16
,
I
<
8
>
,
F32
,
I
<
16
>
,
F32
,
F32
,
I
<
32
>
,
I
<
32
>
,
I
<
16
>>
,
std
::
tuple
<
BF16
,
I
<
4
>
,
BF16
,
I
<
8
>
,
F32
,
I
<
16
>
,
F32
,
F32
,
I
<
32
>
,
I
<
32
>
,
I
<
16
>>>
;
TYPED_TEST_SUITE
(
TestSmfmac
,
KernelTypes
);
TYPED_TEST
(
TestSmfmac
,
TestSmfmacFP16BF16
)
{
this
->
Run
();
}
test/wmma_op/wmma_op_util.hpp
View file @
dcd3d21a
...
...
@@ -11,6 +11,7 @@
#include "ck/library/utility/host_tensor_generator.hpp"
#include "ck/library/reference_tensor_operation/cpu/reference_gemm.hpp"
#include "ck/utility/amd_wmma.hpp"
#include "ck/host_utility/device_prop.hpp"
namespace
ck
{
namespace
wmma_op_util
{
...
...
@@ -373,7 +374,8 @@ struct TestWmma
a
,
b
,
c_host
,
a_element_op
,
b_element_op
,
c_element_op
);
// Act
bool
is_supported
=
ck
::
wmma_op_util
::
RunDeviceGEMM
(
wmma_kernel
,
a
,
b
,
c_device
);
bool
is_supported
=
ck
::
is_gfx11_supported
()
&&
ck
::
wmma_op_util
::
RunDeviceGEMM
(
wmma_kernel
,
a
,
b
,
c_device
);
if
(
is_supported
)
{
...
...
Prev
1
…
15
16
17
18
19
Next
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