rgl-epfl / cholespy

An easily integrable Cholesky solver on CPU and GPU
BSD 3-Clause "New" or "Revised" License
219 stars 19 forks source link

cholespy does no longer compile due to changing nb::tensor to nb::ndarray in nanobind #27

Closed tatue64 closed 1 year ago

tatue64 commented 1 year ago

I had to change the corresponding specifications in main.cpp

include <nanobind/nanobind.h>

include <nanobind/ndarray.h>

and

nb::tensor -> nb::ndarray

to make it work again.