...
 
Commits (3)
    https://gitcode.net/OAID/Tengine/-/commit/b70a26cccb0c136ab711259ca13cdec6de664ffe wino_conv层输出结果没转换到目标内存中的bug (#1402) 2023-03-05T22:46:34+08:00 xue 42051931+BigBigBooo@users.noreply.github.com https://gitcode.net/OAID/Tengine/-/commit/5f8394bf9b756194f978943b1734c511ed463ed0 acl_executor.cc fixed bug: scratch_mem invalid memory released condition (#1403) 2023-03-05T22:46:59+08:00 Artem Kopytin slipmetallovec@gmail.com Co-authored-by: <span data-trailer="Co-authored-by:"><a href="mailto:a.kopytin@antisleep.ru" title="a.kopytin@antisleep.ru"></a><a href="javascript:void(0)" class="avatar s16 avatar-inline identicon bg1" style="text-decoration: none">N</a><a href="mailto:a.kopytin@antisleep.ru" title="a.kopytin@antisleep.ru">Artem Kopytin</a> &lt;<a href="mailto:a.kopytin@antisleep.ru" title="a.kopytin@antisleep.ru">a.kopytin@antisleep.ru</a>&gt;</span> https://gitcode.net/OAID/Tengine/-/commit/cb3b6e6a62c699e596dc854f7ae9270465ed203c Update README.md 2023-03-05T22:57:13+08:00 BUG1989 248857878@qq.com
......@@ -8,8 +8,7 @@
# Tengine
[![GitHub license](http://OAID.github.io/pics/apache_2.0.svg)](./LICENSE)
[![Build Status](https://img.shields.io/github/workflow/status/OAID/Tengine/Tengine-Lite-Actions/tengine-lite)](https://github.com/OAID/Tengine/actions?query=workflow%3ATengine-Lite-Actions)
[![Build Status](https://img.shields.io/github/workflow/status/OAID/Tengine-Convert-Tools/Tengine-Convert-Tools-Actions?label=tools%20build)](https://github.com/OAID/Tengine-Convert-Tools/actions?query=workflow%3ATengine-Convert-Tools-Actions)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/OAID/Tengine/build-and-test.yml?branch=tengine-lite)](https://github.com/OAID/Tengine/actions)
[![Test Status](https://img.shields.io/travis/OAID/Tengine/tengine-lite?label=test)](https://travis-ci.org/OAID/Tengine)
[![codecov](https://codecov.io/gh/OAID/Tengine/branch/tengine-lite/graph/badge.svg?token=kz9NcQPRrk)](https://codecov.io/gh/OAID/Tengine)
[![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/OAID/Tengine.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/OAID/Tengine/context:cpp)
......
......@@ -603,7 +603,7 @@ int CLGraph::run(struct subgraph *subgraph)
}
}
if(!scratch_mem)
if(scratch_mem)
sys_free(scratch_mem);
int size = functions_map_.size();
......
......@@ -808,7 +808,7 @@ void conv3x3s1_winograd43_sse(float* bottom_blob, float* top_blob, float* kernel
}
// END transform output
if (outw_align != outw || outh_align != outw)
if (outw_align != outw || outh_align != outh)
{
delete_0_3D(top_blob, top_blob_bordered, outh_align, outw_align, outh, outw, outch, 0, 0);
}
......
......@@ -1109,7 +1109,7 @@ void conv3x3s1_winograd43_sse(float* bottom_blob, float* top_blob, float* kernel
}
// END transform output
if (outw_align != outw || outh_align != outw)
if (outw_align != outw || outh_align != outh)
{
delete_0_3D(top_blob, top_blob_bordered, outh_align, outw_align, outh, outw, outch, 0, 0);
}
......