2024-02-05 17:38:02 -08:00
|
|
|
#include "moe_ops.h"
|
|
|
|
|
|
|
|
#include <torch/extension.h>
|
|
|
|
|
|
|
|
PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
|
2024-05-22 03:18:41 -04:00
|
|
|
m.def("topk_softmax", &topk_softmax,
|
|
|
|
"Apply topk softmax to the gating outputs.");
|
2024-02-05 17:38:02 -08:00
|
|
|
}
|