"...composable_kernel.git" did not exist on "5a7f7334bde3b0de3d6fd9d004914064c1d82049"
Commit 86d8c257 authored by ozturkosu's avatar ozturkosu
Browse files

bug point

parent 060d171f
...@@ -116,12 +116,17 @@ struct ThreadwiseTensorSliceTransfer_v6r1r2 ...@@ -116,12 +116,17 @@ struct ThreadwiseTensorSliceTransfer_v6r1r2
const bool is_dst_valid = const bool is_dst_valid =
coordinate_has_valid_offset_assuming_visible_index_is_valid(dst_desc, dst_coord_); coordinate_has_valid_offset_assuming_visible_index_is_valid(dst_desc, dst_coord_);
//@Emin Look At This Part
// copy data from dst_vector into dst_buf // copy data from dst_vector into dst_buf
dst_buf.template Update<DstInMemOp, dst_vector_t>( dst_buf.template Update<DstInMemOp, dst_vector_t>(
dst_coord_.GetOffset(), dst_coord_.GetOffset(),
is_dst_valid, is_dst_valid,
dst_vector_container.template AsType<dst_vector_t>()[I0]); dst_vector_container.template AsType<dst_vector_t>()[I0]);
// copy data from dst_vector into dst_buf
// DstDataType converted_v = ck::type_convert<DstDataType>(v);
// dst_buf.template Update<DstInMemOp>(dst_coord_.GetOffset(), is_dst_valid, converted_v);
// move coordinate // move coordinate
if constexpr(idx_1d.value != num_access - 1) if constexpr(idx_1d.value != num_access - 1)
{ {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment