"vscode:/vscode.git/clone" did not exist on "c9bb42f961b1c9ff657d699c742dceee5d58544f"
Commit 1f89fcf3 authored by rocking's avatar rocking
Browse files

fix compile error

parent a16bb52d
......@@ -29,7 +29,8 @@ struct BlockReduce2d
sweep_tile<XDistributedTensor_>(
[&](auto... idx_) {
constexpr auto idx_0 = make_tuple(make_tuple(idx_[number<0>{}]...)[number<0>{}]);
y_tensor(idx_0) = reduce_func(y_tensor(idx_0), x_tensor[idx_]...);
y_tensor(idx_0) = reduce_func(
y_tensor(idx_0), ck_tile::type_convert<ComputeDataType>(x_tensor[idx_])...);
},
ReducePacksPerXDim{});
#if 0
......
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