From 0665eb765880c83053cef4b95458b512cd54bd03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 06:37:56 +0000 Subject: [PATCH 1/2] Bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.11.0 to 0.12.0. - [Release notes](https://github.com/styfle/cancel-workflow-action/releases) - [Commits](https://github.com/styfle/cancel-workflow-action/compare/0.11.0...0.12.0) --- updated-dependencies: - dependency-name: styfle/cancel-workflow-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-test.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 2ca0abd3f..7845e092e 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -109,7 +109,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: cancel-previous-runs - uses: styfle/cancel-workflow-action@0.11.0 + uses: styfle/cancel-workflow-action@0.12.0 with: access_token: ${{ secrets.GITHUB_TOKEN }} - uses: actions/checkout@v3 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 79c3f98a6..0a0b76b44 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -32,7 +32,7 @@ jobs: steps: - name: cancel-previous-runs - uses: styfle/cancel-workflow-action@0.11.0 + uses: styfle/cancel-workflow-action@0.12.0 with: access_token: ${{ secrets.GITHUB_TOKEN }} - name: Checkout repository From 4cf36a0b90aa8e85e4ed9682d800e4179384985c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Wed, 4 Oct 2023 06:39:01 +0000 Subject: [PATCH 2/2] apply code-format changes --- source/serializer/tmfile/op/tm2_layernorm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/serializer/tmfile/op/tm2_layernorm.c b/source/serializer/tmfile/op/tm2_layernorm.c index 4645e8405..4dbfa7e31 100644 --- a/source/serializer/tmfile/op/tm2_layernorm.c +++ b/source/serializer/tmfile/op/tm2_layernorm.c @@ -40,7 +40,7 @@ static int layernorm_op_map(int op) } static int tm2_load_layernorm(struct graph* ir_graph, struct node* ir_node, const TM2_Node* tm_node, - const TM2_Operator* tm_op) + const TM2_Operator* tm_op) { struct layernorm_Param* gather_param = (struct layernorm_Param*)ir_node->op.param_mem; const struct tm2_priv* tm2_priv = (struct tm2_priv*)ir_graph->serializer_privacy;