From a9757a37df030fd0f30a2ed8e15242ecc0d4fea3 Mon Sep 17 00:00:00 2001 From: Chao Liu Date: Fri, 4 Mar 2022 13:19:35 -0600 Subject: [PATCH] fix type in PR #101 (#107) [ROCm/composable_kernel commit: 0c79af12e882c29c1f5a2895e6f749cdee9e15b7] --- .../tensor_operation/threadwise_tensor_slice_transfer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composable_kernel/include/tensor_operation/threadwise_tensor_slice_transfer.hpp b/composable_kernel/include/tensor_operation/threadwise_tensor_slice_transfer.hpp index 58d4e17e1b..4ee7bf3256 100644 --- a/composable_kernel/include/tensor_operation/threadwise_tensor_slice_transfer.hpp +++ b/composable_kernel/include/tensor_operation/threadwise_tensor_slice_transfer.hpp @@ -312,7 +312,7 @@ struct ThreadwiseTensorSliceTransfer_v2 constexpr auto forward_step = SpaceFillingCurve::GetForwardStep(idx_1d); move_tensor_coordinate( - src_desc, src_coord_, make_tensor_coordinate_step(dst_desc, forward_step)); + src_desc, src_coord_, make_tensor_coordinate_step(src_desc, forward_step)); } });