1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#include <nanobind/nanobind.h>
#include <nanobind/ndarray.h>
namespace nb = nanobind;
int destruct_count = 0;
NB_MODULE(test_tensorflow_ext, m) {
m.def("destruct_count", []() { return destruct_count; });
m.def("ret_tensorflow", []() {
struct alignas(256) Buf {
float f[8];
};
Buf *buf = new Buf({ 1, 2, 3, 4, 5, 6, 7, 8 });
size_t shape[2] = { 2, 4 };
nb::capsule deleter(buf, [](void *data) noexcept {
destruct_count++;
delete (Buf *) data;
});
return nb::ndarray<nb::tensorflow, float, nb::shape<2, 4>>(buf->f, 2, shape,
deleter);
});
}
|