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

fix compile error

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