From 9d8396c05cea9446aeb23383f4949b20dbbf2c54 Mon Sep 17 00:00:00 2001 From: Po Yen Chen Date: Sat, 12 Nov 2022 01:36:55 +0800 Subject: [PATCH] Fix build errors on CI server (#506) * Add missing ignore expression * Add missing include directive [ROCm/composable_kernel commit: 4382b4146923382c9e39e72fba99863f35f94a83] --- ...vice_grouped_conv_bwd_weight_gnwc_gkxc_gnwk_xdl_cshuffle.hpp | 1 + .../gpu/grouped_convolution_forward.hpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_gnwc_gkxc_gnwk_xdl_cshuffle.hpp b/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_gnwc_gkxc_gnwk_xdl_cshuffle.hpp index 7eca7f52fc..40f3edf2de 100644 --- a/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_gnwc_gkxc_gnwk_xdl_cshuffle.hpp +++ b/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_gnwc_gkxc_gnwk_xdl_cshuffle.hpp @@ -113,6 +113,7 @@ __global__ void ignore = a_element_op; ignore = b_element_op; ignore = c_element_op; + ignore = batch_count; ignore = block_2_ctile_map; ignore = compute_ptr_offset_of_batch; #endif // end of if (defined(__gfx908__) || defined(__gfx90a__)) diff --git a/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward.hpp b/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward.hpp index 90f2a1d6bd..2ade1e149f 100644 --- a/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward.hpp +++ b/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward.hpp @@ -3,6 +3,8 @@ #pragma once +#include + #include "ck/ck.hpp" #include "ck/tensor_operation/gpu/device/device_grouped_conv_fwd_multiple_d.hpp" #include "ck/tensor_operation/gpu/device/tensor_layout.hpp"