...
 
Commits (2)
    https://gitcode.net/OAID/Tengine/-/commit/1922410ccb8b37b9558166b23bf99afe5e70c0de Bump styfle/cancel-workflow-action from 0.10.0 to 0.10.1 (#1383) 2022-11-13T19:33:02+08:00 dependabot[bot] 49699333+dependabot[bot]@users.noreply.github.com * Bump styfle/cancel-workflow-action from 0.10.0 to 0.10.1 Bumps [styfle/cancel-workflow-action](<a href="https://github.com/styfle/cancel-workflow-action" rel="nofollow noreferrer noopener" target="_blank">https://github.com/styfle/cancel-workflow-action</a>) from 0.10.0 to 0.10.1. - [Release notes](<a href="https://github.com/styfle/cancel-workflow-action/releases" rel="nofollow noreferrer noopener" target="_blank">https://github.com/styfle/cancel-workflow-action/releases</a>) - [Commits](<a href="https://github.com/styfle/cancel-workflow-action/compare/0.10.0...0.10.1" rel="nofollow noreferrer noopener" target="_blank">https://github.com/styfle/cancel-workflow-action/compare/0.10.0...0.10.1</a>) --- updated-dependencies: - dependency-name: styfle/cancel-workflow-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: <span data-trailer="Signed-off-by:"><a href="mailto:support@github.com" title="support@github.com"></a><a href="javascript:void(0)" class="avatar s16 avatar-inline identicon bg1" style="text-decoration: none">N</a><a href="mailto:support@github.com" title="support@github.com">dependabot[bot]</a> &lt;<a href="mailto:support@github.com" title="support@github.com">support@github.com</a>&gt;</span> * apply code-format changes Signed-off-by: <span data-trailer="Signed-off-by:"><a href="mailto:support@github.com" title="support@github.com"></a><a href="javascript:void(0)" class="avatar s16 avatar-inline identicon bg6" style="text-decoration: none">N</a><a href="mailto:support@github.com" title="support@github.com">dependabot[bot]</a> &lt;<a href="mailto:support@github.com" title="support@github.com">support@github.com</a>&gt;</span> Co-authored-by: <span data-trailer="Co-authored-by:"><a href="mailto:49699333+dependabot%5Bbot%5D@users.noreply.github.com" title="49699333+dependabot[bot]@users.noreply.github.com"></a><a href="javascript:void(0)" class="avatar s16 avatar-inline identicon bg2" style="text-decoration: none">N</a><a href="mailto:49699333+dependabot%5Bbot%5D@users.noreply.github.com" title="49699333+dependabot[bot]@users.noreply.github.com">dependabot[bot]</a> &lt;<a href="mailto:49699333+dependabot%5Bbot%5D@users.noreply.github.com" title="49699333+dependabot[bot]@users.noreply.github.com">49699333+dependabot[bot]@users.noreply.github.com</a>&gt;</span> Co-authored-by: <span data-trailer="Co-authored-by:"><a href="mailto:dependabot%5Bbot%5D@users.noreply.github.com" title="dependabot[bot]@users.noreply.github.com"></a><a href="javascript:void(0)" class="avatar s16 avatar-inline identicon bg2" style="text-decoration: none">N</a><a href="mailto:dependabot%5Bbot%5D@users.noreply.github.com" title="dependabot[bot]@users.noreply.github.com">dependabot[bot]</a> &lt;<a href="mailto:dependabot%5Bbot%5D@users.noreply.github.com" title="dependabot[bot]@users.noreply.github.com">dependabot[bot]@users.noreply.github.com</a>&gt;</span> https://gitcode.net/OAID/Tengine/-/commit/38ef8d46847dfa90fc6f8135aca3ad30414b7c5d flatten.c correction related to output dims (#1381) 2022-11-13T19:33:43+08:00 cubic 1198365636@qq.com After flatten layer, the input dims 4 should be squeezed to 2. The original bug with output dims 4 is corrected.
......@@ -109,7 +109,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: cancel-previous-runs
uses: styfle/cancel-workflow-action@0.10.0
uses: styfle/cancel-workflow-action@0.10.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
......
......@@ -32,7 +32,7 @@ jobs:
steps:
- name: cancel-previous-runs
uses: styfle/cancel-workflow-action@0.10.0
uses: styfle/cancel-workflow-action@0.10.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repository
......
......@@ -53,7 +53,9 @@ static int infer_shape(struct node* node)
output->layout = TENGINE_LAYOUT_NHWC;
set_ir_tensor_shape(output, dims, 4);
//set_ir_tensor_shape(output, dims, 4);
//stephen@20220923
set_ir_tensor_shape(output, dims, 2);
return 0;
}
......
......@@ -1938,8 +1938,9 @@ int tensorflow_serializer::generate_graph(ir_graph_t* graph)
}
op_load_t loader = op_load_map[tf_node->op].second;
if (loader == 0){
continue;
if (loader == 0)
{
continue;
}
if (loader(tf_node, tf_graph, graph, ir_node) < 0)
{
......