Fix lint error (#9067)

This commit is contained in:
Taylor Yeonbok Lee 2021-12-08 15:43:02 +09:00 committed by GitHub
parent c45a8f1e18
commit 0704c08555
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ protected:
// In such case, using larger worksize will result in larger computational inefficiency
// w.r.t the unalined output feature
if (params.output.Feature().v > 8 || !IsSIMDSizeSupported(params.engineInfo, 8)
|| (params.output.GetDType() == Datatype::F16) && params.output.Feature().v == 8) {
|| ((params.output.GetDType() == Datatype::F16) && params.output.Feature().v == 8)) {
return 16;
} else {
return 8;