File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
mlir/include/mlir/ExecutionEngine/SparseTensor Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -71,14 +71,7 @@ using ElementConsumer =
71
71
template <typename V>
72
72
class SparseTensorCOO final {
73
73
public:
74
- using value_type = const Element<V>;
75
- using reference = value_type &;
76
- using const_reference = reference;
77
- using vector_type = std::vector<Element<V>>;
78
- using iterator = typename vector_type::const_iterator;
79
- using const_iterator = iterator;
80
- using difference_type = typename vector_type::difference_type;
81
- using size_type = typename vector_type::size_type;
74
+ using const_iterator = typename std::vector<Element<V>>::const_iterator;
82
75
83
76
// / Constructs a new coordinate-scheme sparse tensor with the given
84
77
// / sizes and an optional initial storage capacity.
You can’t perform that action at this time.
0 commit comments