From d2622a324f45c243c69fe8c2019eeaca9162ca0a Mon Sep 17 00:00:00 2001 From: Liu Liu Date: Mon, 16 Sep 2024 00:50:52 -0400 Subject: [PATCH] Fix a typo. --- lib/nnc/mfa/v2/AttentionKernelDescriptor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nnc/mfa/v2/AttentionKernelDescriptor.cpp b/lib/nnc/mfa/v2/AttentionKernelDescriptor.cpp index adaaae98b..88b962969 100644 --- a/lib/nnc/mfa/v2/AttentionKernelDescriptor.cpp +++ b/lib/nnc/mfa/v2/AttentionKernelDescriptor.cpp @@ -16,7 +16,7 @@ bool AttentionKernelDescriptor::operator==(const AttentionKernelDescriptor& rhs) registerPrecisions == rhs.registerPrecisions && transposeState == rhs.transposeState && leadingDimensions == rhs.leadingDimensions && - type == rhs.type &&; + type == rhs.type && scale == rhs.scale; }