Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion source/serializer/tmfile/op/tm2_layernorm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down