Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dpctl/tensor/libtensor/include/kernels/accumulators.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ template <typename T> class stack_t
: src_(src), size_(sz), local_scans_(local_scans)
{
}
~stack_t(){};
~stack_t() {};

T *get_src_ptr() const { return src_; }

Expand All @@ -140,7 +140,7 @@ template <typename T> class stack_strided_t
local_stride_(local_stride)
{
}
~stack_strided_t(){};
~stack_strided_t() {};

T *get_src_ptr() const { return src_; }

Expand Down
2 changes: 1 addition & 1 deletion dpctl/tensor/libtensor/include/utils/offset_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ namespace detail

struct sink_t
{
sink_t(){};
sink_t() {};
template <class T> sink_t(T &&){};
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ struct DMatrix
: n_(rows), m_(columns), q_(q), alloc_(q), vec_(n_ * m_, alloc_)
{
}
~DMatrix(){};
~DMatrix() {};
DMatrix(const DMatrix &) = default;
DMatrix(DMatrix &&) = default;

Expand Down
Loading