"src/include/functional.hip.hpp" did not exist on "fd8de384170d6100a837b19e37139665c89e2054"
Unverified Commit 00ff30af authored by Illia Silin's avatar Illia Silin Committed by GitHub
Browse files

fix a bug for 6-dim kernels (#555)

parent 147b7db5
......@@ -396,7 +396,7 @@ struct Tensor
}
case 6: {
auto f = [&](auto i0, auto i1, auto i2, auto i3, auto i4, auto i5) {
(*this)(i0, i1, i2, i3, i4) = g(i0, i1, i2, i3, i4, i5);
(*this)(i0, i1, i2, i3, i4, i5) = g(i0, i1, i2, i3, i4, i5);
};
make_ParallelTensorFunctor(f,
mDesc.GetLengths()[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