Skip to content

[mlir][sparse] removed unused using clauses in support lib #68148

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

Merged
merged 2 commits into from
Oct 3, 2023
Merged
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
9 changes: 1 addition & 8 deletions mlir/include/mlir/ExecutionEngine/SparseTensor/COO.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,7 @@ using ElementConsumer =
template <typename V>
class SparseTensorCOO final {
public:
using value_type = const Element<V>;
using reference = value_type &;
using const_reference = reference;
using vector_type = std::vector<Element<V>>;
using iterator = typename vector_type::const_iterator;
using const_iterator = iterator;
using difference_type = typename vector_type::difference_type;
using size_type = typename vector_type::size_type;
using const_iterator = typename std::vector<Element<V>>::const_iterator;

/// Constructs a new coordinate-scheme sparse tensor with the given
/// sizes and an optional initial storage capacity.
Expand Down