github-actions[bot] commented on code in PR #15972:
URL: https://github.com/apache/doris/pull/15972#discussion_r1070948666
##########
be/src/gutil/cpu.cc:
##########
@@ -253,6 +256,7 @@ void CPU::Initialize() {
#endif
}
CPU::IntelMicroArchitecture CPU::GetIntelMicroArchitecture() const {
+ if (has_avx512()) return AVX512;
Review Comment:
warning: statement should be inside braces
[readability-braces-around-statements]
```suggestion
if (has_avx512()) { return AVX512;
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]