Adam Lugowski
Adam Lugowski
Get fileno from ifstream (gcc only): https://www.ginac.de/~kreckel/fileno/
Hi @carlosal1015, can you clarify what you're trying to package? I see both C++ and Python dependencies mixed together even though those are separate packages. There is already a good...
> Hi @alugowski . Were you able to proceed by your own? I glanced through the build process before submitting the issue. I've no idea why it gets stuck at...
FYI, building wheels for all common platforms is no longer the big hassle it used to be. GitHub Actions and cibuildwheel make it easy.
@dependabot rebase
> How well does (or will or can) it handle more advanced numpy dtypes? For example: > > * `np.dtype([("x", np.bool_), ("y", np.int64)], align=True)` > > * We currently render...
> * `np.dtype("(3,)uint16")` > > * We currently render an element of this dtype as e.g. `[1, 2, 3]` One question about this one. Do you prefer it to be...
Sounds good! I added ndarray support so numpy submatricies get rendered all pretty now, too: Let me know how it looks on your datasets. Happy to make tweaks!
BTW this is all that is required to use MatRepr with python-graphblas: ```python def _str_(mat): from matrepr import to_str from matrepr.adapters.graphblas_driver import GraphBLASDriver # Enable terminal width detection return to_str(GraphBLASDriver.adapt(mat),...
One newer feature is to support custom row/column labels. This is handy for something like an adjacency matrix where the matrix elements are edge weights and row/column labels are the...