Skip to content

Commit dcee942

Browse files
committed
api: fixed clang-tidy warnings
1 parent 777a1c8 commit dcee942

8 files changed

+14
-10
lines changed

include/oneapi/dnnl/dnnl.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -4201,7 +4201,7 @@ struct primitive_attr : public handle<dnnl_primitive_attr_t> {
42014201
/// Returns post-ops previously set via set_post_ops().
42024202
///
42034203
/// @returns Post-ops.
4204-
const post_ops get_post_ops() const {
4204+
post_ops get_post_ops() const {
42054205
const_dnnl_post_ops_t const_c_post_ops;
42064206
error::wrap_c_api(
42074207
dnnl_primitive_attr_get_post_ops(get(), &const_c_post_ops),
@@ -4220,7 +4220,7 @@ struct primitive_attr : public handle<dnnl_primitive_attr_t> {
42204220
/// by the respective primitive descriptor constructor.
42214221
///
42224222
/// @param ops Post-ops object to copy post-ops from.
4223-
void set_post_ops(const post_ops ops) {
4223+
void set_post_ops(const post_ops &ops) {
42244224
error::wrap_c_api(dnnl_primitive_attr_set_post_ops(get(), ops.get()),
42254225
"could not set post-ops primitive attribute");
42264226
}

include/oneapi/dnnl/dnnl_common.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ template <typename T, typename traits = handle_traits<T>>
128128
struct handle {
129129
private:
130130
static dnnl_status_t dummy_destructor(T) { return dnnl_success; }
131-
std::shared_ptr<typename std::remove_pointer<T>::type> data_ {0};
131+
std::shared_ptr<typename std::remove_pointer<T>::type> data_ {nullptr};
132132

133133
protected:
134134
bool operator==(const T other) const { return other == data_.get(); }
@@ -371,6 +371,7 @@ struct stream : public handle<dnnl_stream_t> {
371371
}
372372
};
373373

374+
//NOLINTBEGIN(bugprone-macro-parentheses)
374375
#define DNNL_DEFINE_BITMASK_OPS(enum_name) \
375376
inline enum_name operator|(enum_name lhs, enum_name rhs) { \
376377
return static_cast<enum_name>( \
@@ -408,6 +409,7 @@ struct stream : public handle<dnnl_stream_t> {
408409
inline enum_name operator~(enum_name rhs) { \
409410
return static_cast<enum_name>(~static_cast<unsigned>(rhs)); \
410411
}
412+
//NOLINTEND(bugprone-macro-parentheses)
411413

412414
DNNL_DEFINE_BITMASK_OPS(stream::flags)
413415

include/oneapi/dnnl/dnnl_threadpool_iface.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ struct threadpool_iface {
6161
/// waiting for the submitted closures to finish execution on its own.
6262
static constexpr uint64_t ASYNCHRONOUS = 1;
6363

64-
virtual ~threadpool_iface() {}
64+
virtual ~threadpool_iface() = default;
6565
};
6666

6767
} // namespace threadpool_interop

include/oneapi/dnnl/dnnl_ukernel.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
#ifndef ONEAPI_DNNL_DNNL_UKERNEL_HPP
2121
#define ONEAPI_DNNL_DNNL_UKERNEL_HPP
22+
// NOLINTBEGIN(readability-identifier-naming)
2223

2324
#include "oneapi/dnnl/dnnl.hpp"
2425
#include "oneapi/dnnl/dnnl_ukernel.h"
@@ -467,4 +468,5 @@ struct transform : public handle<dnnl_transform_t> {
467468

468469
/// @} dnnl_api
469470

471+
// NOLINTEND(readability-identifier-naming)
470472
#endif /* ONEAPI_DNNL_DNNL_UKERNEL_HPP */

src/graph/backend/dnnl/fusion_info.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ dnnl::primitive_attr make_dnnl_primitive_attr(
328328
// not reachable
329329
}
330330
}
331-
attr.set_post_ops(std::move(dnnl_pops));
331+
attr.set_post_ops(dnnl_pops);
332332

333333
return attr;
334334
}

src/graph/backend/dnnl/kernels/mqa_decomp_config.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ status_t mqa_decomp_config_t::construct_params(std::shared_ptr<subgraph_t> &sg,
149149
auto alg
150150
= static_cast<algorithm>(ori_dnnl_pops.get()->entry_[0].binary.alg);
151151
dnnl_pops.append_binary(alg, sub_mm1_post_add_md);
152-
sub_matmul1_attr.set_post_ops(std::move(dnnl_pops));
152+
sub_matmul1_attr.set_post_ops(dnnl_pops);
153153
auto sub_mm1_pd = matmul::primitive_desc(p_engine, sub_mm1_src_md,
154154
sub_mm1_wei_md, sub_mm1_dst_md, sub_matmul1_attr);
155155
sub_mm1_prim = matmul(sub_mm1_pd);

src/graph/backend/dnnl/kernels/sdp_decomp_config.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl::status_t sdp_decomp_config_t::construct_params(
191191
sub_mm1_post_md.emplace_back(new_sub_md);
192192
dnnl_pops.append_binary(alg, new_sub_md);
193193
}
194-
sub_matmul1_attr.set_post_ops(std::move(dnnl_pops));
194+
sub_matmul1_attr.set_post_ops(dnnl_pops);
195195
auto sub_mm1_pd = matmul::primitive_desc(p_engine, sub_mm1_src_md,
196196
sub_mm1_wei_md, sub_mm1_dst_md, sub_matmul1_attr);
197197
sub_mm1_prim = matmul(sub_mm1_pd);

src/graph/backend/dnnl/op_executable.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1653,7 +1653,7 @@ bn_folding_t::desc_t bn_folding_t::create_desc(std::shared_ptr<op_t> &op,
16531653
add_post_ops.append_eltwise(algorithm::eltwise_sqrt, 0.0f, 0.0f);
16541654

16551655
primitive_attr add_attr;
1656-
add_attr.set_post_ops(std::move(add_post_ops));
1656+
add_attr.set_post_ops(add_post_ops);
16571657
desc.add_pd_ = dnnl::binary::primitive_desc(p_engine, algorithm::binary_add,
16581658
variance, desc.epsilon_desc_, variance, add_attr);
16591659

@@ -1689,7 +1689,7 @@ bn_folding_t::desc_t bn_folding_t::create_desc(std::shared_ptr<op_t> &op,
16891689
mul_post_ops.append_binary(algorithm::binary_div, desc.new_variance_desc_);
16901690

16911691
primitive_attr mul_attr;
1692-
mul_attr.set_post_ops(std::move(mul_post_ops));
1692+
mul_attr.set_post_ops(mul_post_ops);
16931693
desc.mul_pd_ = dnnl::binary::primitive_desc(p_engine, algorithm::binary_mul,
16941694
weights, desc.new_scale_desc_, weights, mul_attr);
16951695

@@ -1707,7 +1707,7 @@ bn_folding_t::desc_t bn_folding_t::create_desc(std::shared_ptr<op_t> &op,
17071707
sub_post_ops.append_binary(algorithm::binary_add, shift);
17081708

17091709
primitive_attr sub_attr;
1710-
sub_attr.set_post_ops(std::move(sub_post_ops));
1710+
sub_attr.set_post_ops(sub_post_ops);
17111711
desc.sub_pd_ = dnnl::binary::primitive_desc(p_engine, algorithm::binary_sub,
17121712
valid_bias, mean, valid_bias, sub_attr);
17131713

0 commit comments

Comments
 (0)