From 336e4425d79b3d662a3ade1f0296ac745f548831 Mon Sep 17 00:00:00 2001 From: "B. Gawrych" Date: Wed, 2 Jun 2021 08:29:31 +0200 Subject: [PATCH] Remove double semicolon --- src/operator/subgraph/mkldnn/mkldnn_transformer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operator/subgraph/mkldnn/mkldnn_transformer.cc b/src/operator/subgraph/mkldnn/mkldnn_transformer.cc index c6293c9ef70d..91529bc0a652 100644 --- a/src/operator/subgraph/mkldnn/mkldnn_transformer.cc +++ b/src/operator/subgraph/mkldnn/mkldnn_transformer.cc @@ -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;