2021-02-06 17:10:44 -08:00
|
|
|
|
#include <pybind11/pybind11.h>
|
|
|
|
|
|
|
|
|
|
void init_superblocking(pybind11::module &m);
|
|
|
|
|
void init_torch_utils(pybind11::module &m);
|
|
|
|
|
void init_triton(pybind11::module &m);
|
2021-03-09 16:32:44 -05:00
|
|
|
|
void init_cutlass(pybind11::module &m);
|
2021-02-06 17:10:44 -08:00
|
|
|
|
|
|
|
|
|
PYBIND11_MODULE(libtriton, m) {
|
|
|
|
|
m.doc() = "Python bindings to the C++ Triton API";
|
|
|
|
|
init_triton(m);
|
|
|
|
|
}
|