This commit is contained in:
Starrick
2025-09-07 14:59:17 +08:00
commit 24dbdbd24b
40 changed files with 10754 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <torch/extension.h>
void AsymmetricDualExpertGemm(
torch::Tensor input_expert0,
torch::Tensor input_expert1,
torch::Tensor weight_expert0,
torch::Tensor weight_expert1,
torch::Tensor output_expert0,
torch::Tensor output_expert1,
bool trans_a, bool trans_b);