Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Remove double semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
bgawrych committed Jun 9, 2021
1 parent 2dc22c6 commit 336e442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operator/subgraph/mkldnn/mkldnn_transformer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ void MKLDNNSelfAttValAttOp::Initialize(const OpContext &ctx,

result_md = memory::desc(out_dims, result_mkldnn_dtype, memory::format_tag::abcd);
tmp_md = memory::desc(transpose_dims, result_mkldnn_dtype, memory::format_tag::abcde);
transpose_md = memory::desc(transpose_dims, result_mkldnn_dtype, memory::format_tag::acbde);;
transpose_md = memory::desc(transpose_dims, result_mkldnn_dtype, memory::format_tag::acbde);

// multiply by 2 as we need to skip query and key
const size_t value_offset = inputs[1].shape()[2] / QKV_NUM * 2;
Expand Down

0 comments on commit 336e442

Please sign in to comment.