You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
205 B
11 lines
205 B
#include "common.h"
|
|
|
|
#include "storage/model.h"
|
|
#include "storage/matrix.h"
|
|
|
|
PYBIND11_PLUGIN(storage) {
|
|
py::module m("storage");
|
|
define_model(m);
|
|
define_sparse_matrix(m);
|
|
return m.ptr();
|
|
}
|