You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The mdspan_example in particular expects mdspan. The other examples will likely compile just fine without it, but that one will require mdspan. One option is to install it from here, or you could just try compiling other specific examples (e.g. make basic_ewise).
Thanks for your reply. I was trying to implement sparse matrix format considering hardware features like CISR format in https://arxiv.org/pdf/1810.07517.pdf.
I have found that the underlying sparse matrix format of class grb::matrix cannot be directly changed by user input. It seems I need to change the format used in pick_backend_type.
template <>
structpick_backend_type<sparse> {
template <typename... Args>
using type = grb::csr_matrix<Args...>;
};
As for new format, I think I need to create corresponding file in the containers/backend and create its iterator.
Hi. I am interested in adding custom sparse matrix format. Is there a tutorial on adding new formats to help me get started quickly?
BTW, when I ran
make
in theexamples/
folder, I got the following error. I wondered if my inappropriate c++ version led to these errors.My c++ version are as follows
Thank you in advance!
The text was updated successfully, but these errors were encountered: