From 012feaa5edc011145f7d1b60df345d672a0e14cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Kocot?= Date: Mon, 7 Oct 2024 15:21:21 +0200 Subject: [PATCH] [CK_TILE] Fix conv param multiple definition (#1550) Co-authored-by: Po Yen Chen [ROCm/composable_kernel commit: cc8f466a7ecbdca058aa9b8aeb2c75c57864d2ac] --- include/ck_tile/host/convolution_parameter.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/ck_tile/host/convolution_parameter.hpp b/include/ck_tile/host/convolution_parameter.hpp index 741a25ad73..81ea51a94f 100644 --- a/include/ck_tile/host/convolution_parameter.hpp +++ b/include/ck_tile/host/convolution_parameter.hpp @@ -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;