[CK_TILE] Fix conv param multiple definition (#1550)

Co-authored-by: Po Yen Chen <PoYen.Chen@amd.com>
This commit is contained in:
Bartłomiej Kocot
2024-10-07 15:21:21 +02:00
committed by GitHub
parent 0023f01ab0
commit cc8f466a7e

View File

@@ -13,7 +13,6 @@ namespace conv {
struct ConvParam
{
ConvParam();
ConvParam(ck_tile::index_t n_dim,
ck_tile::index_t group_count,
ck_tile::index_t n_batch,
@@ -199,11 +198,6 @@ struct ConvParam
}
};
ConvParam::ConvParam()
: ConvParam::ConvParam(2, 1, 128, 256, 192, {3, 3}, {71, 71}, {2, 2}, {1, 1}, {1, 1}, {1, 1})
{
}
CK_TILE_HOST std::string get_conv_param_parser_helper_msg()
{
std::string msg;