implicit gemm v1r3 nchw_cyxk_nkhw

This commit is contained in:
Chao Liu
2019-04-25 15:14:39 -05:00
parent 569ad66e2a
commit a903146427
18 changed files with 1202 additions and 523 deletions

View File

@@ -24,7 +24,7 @@ struct Array
{
Array<TData, NSize + 1> new_array;
static_for<0, NSize, 1>{}([=](auto I) {
static_for<0, NSize, 1>{}([&](auto I) {
constexpr index_t i = I.Get();
new_array[i] = mData[i];
});