Remove redundant transpose

This commit is contained in:
海境 2019-11-13 13:45:43 +08:00
parent a005e9c46d
commit 57b0190bc4
1 changed files with 0 additions and 2 deletions

View File

@ -168,8 +168,6 @@ WinogradGenerater::WinogradGenerater(int computeUnit, int kernelSize, float inte
}
{
auto B = computeB(a, alpha);
Matrix::transpose(mB.get(), B.get());
Matrix::transpose(B.get(), mB.get());
mB = B;
}
}