-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CPU] Apply 'readability-implicit-bool-conversion' clang-tidy remarks #29218
base: master
Are you sure you want to change the base?
[CPU] Apply 'readability-implicit-bool-conversion' clang-tidy remarks #29218
Conversation
da9560c
to
4a358b4
Compare
15f90a2
to
0dfd36c
Compare
c596127
to
9106f2f
Compare
9106f2f
to
a739676
Compare
@@ -37,7 +37,7 @@ struct regs_to_spill { | |||
static std::vector<Xbyak::Reg> get(const std::set<snippets::Reg>& live_regs) { | |||
std::vector<Xbyak::Reg> regs_to_spill; | |||
auto push_if_live = [&live_regs, ®s_to_spill](Xbyak::Reg&& reg) { | |||
if (live_regs.empty() || live_regs.count(Xbyak2SnippetsReg(reg))) { | |||
if (live_regs.empty() || (live_regs.count(Xbyak2SnippetsReg(reg)) != 0u)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please double check the changes with respect to the relaxed requirements.
The best way probably would be to reapply them from scratch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Re-applied it from scratch. It seems this is covered in any case.
674c90d
to
cc0bd43
Compare
@@ -2460,11 +2460,11 @@ void TopK::calc_dims_size(const VectorDims& layout_dims) { | |||
void TopK::topk_ref(const float* in_ptr, float* out_ptr, int32_t* dst_idx) { | |||
if (mode_max) { | |||
topk_ref_process(in_ptr, out_ptr, dst_idx, src_dims, [](float x, float y) -> float { | |||
return x > y; | |||
return static_cast<float>(x > y); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's change the return type to 'bool'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed
src/plugins/intel_cpu/src/node.cpp
Outdated
@@ -108,11 +108,11 @@ Node::Node(const std::shared_ptr<ov::Node>& op, GraphContext::CPtr ctx, const Sh | |||
} | |||
|
|||
const auto& rtInfo = op->get_rt_info(); | |||
if (rtInfo.count("originalLayersNames")) { | |||
if (rtInfo.count("originalLayersNames") != 0u) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we just remove the check?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, done
src/plugins/intel_cpu/src/node.cpp
Outdated
@@ -1218,10 +1218,10 @@ void Node::toNumaNodeImpl(int numaNodeID) { | |||
} | |||
|
|||
// mbind constant prim args to numa nodes | |||
if (primArgs.count(DNNL_ARG_WEIGHTS)) { | |||
if (primArgs.count(DNNL_ARG_WEIGHTS) != 0u) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's replace with std::find here and below if possible
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done for all cases where it is applicable
cc0bd43
to
8458e7f
Compare
Details:
AllowIntegerConditions
andAllowPointerConditions
Tickets: