Hi Tyler. I've started to work on R wrapper here. There several challenges so far:
- I'm getting
too many arguments provided to function-like macro here dselivanov@master#diff-137530b9340672b840093302a73c2bf3L29. So I had to comment out assert statements.
- indices and pointers in sparse matrices in R are integers. In order to work with sparse matrices "in place" I had to re-define
size_t and index_t to be uint32_t - dselivanov@master#diff-137530b9340672b840093302a73c2bf3R21.
Let me know what do you think whether such adjustments can be merged to master.
Also I found a bit confusing how Parameters are defined and passed from python code. Mb it worth to have a structure for that? construction of such small object shouldn't hurt performance.
Hi Tyler. I've started to work on R wrapper here. There several challenges so far:
too many arguments provided to function-like macrohere dselivanov@master#diff-137530b9340672b840093302a73c2bf3L29. So I had to comment outassertstatements.size_tandindex_tto beuint32_t- dselivanov@master#diff-137530b9340672b840093302a73c2bf3R21.Let me know what do you think whether such adjustments can be merged to master.
Also I found a bit confusing how Parameters are defined and passed from python code. Mb it worth to have a structure for that? construction of such small object shouldn't hurt performance.