moe.cpp 6.27 KB
Newer Older
Jiezhong Qiu's avatar
can run  
Jiezhong Qiu committed
1
2
3
4
5
6
#include <torch/extension.h>

#include <cstdio>
#include <iostream>
#include <vector>

7
#include "moe_cuda_kernel.h"
Jiezhong Qiu's avatar
update  
Jiezhong Qiu committed
8
9
10
11
12
13

// NOTE: AT_ASSERT has become AT_CHECK on master after 0.4.
#define CHECK_CUDA(x) AT_ASSERTM(x.type().is_cuda(), #x " must be a CUDA tensor")
#define CHECK_CONTIGUOUS(x) AT_ASSERTM(x.is_contiguous(), #x " must be contiguous")
#define CHECK_INPUT(x) CHECK_CUDA(x); CHECK_CONTIGUOUS(x)

Rick Ho's avatar
Rick Ho committed
14
std::vector<torch::Tensor> moe_expert_count(
15
16
17
18
        torch::Tensor gate, 
        size_t num_expert) {
    CHECK_INPUT(gate);
    return moe_cuda_expert_count(gate, num_expert);
Rick Ho's avatar
Rick Ho committed
19
20
21
}

std::vector<torch::Tensor> moe_local_scatter(
22
23
24
25
        torch::Tensor input,
        torch::Tensor pos) {
    CHECK_INPUT(input);
    return moe_cuda_local_scatter(input, pos);
Rick Ho's avatar
Rick Ho committed
26
27
28
}

std::vector<torch::Tensor> moe_local_gather(
29
30
31
32
        torch::Tensor output_buf,
        torch::Tensor pos) {
    CHECK_INPUT(output_buf);
    return moe_cuda_local_gather(output_buf, pos);
Rick Ho's avatar
Rick Ho committed
33
34
35
}


36
void merge_bias(torch::Tensor &input_buf, torch::Tensor &weight, at::optional<torch::Tensor> bias_o) {
37
38
39
40
41
42
43
44
45
46
47
    torch::Tensor bias = bias_o.value();
    
    weight = at::cat({weight, bias.unsqueeze(2)}, 2); // [W b]
    
    auto options = torch::TensorOptions()
        .device(input_buf.device())
        .dtype(input_buf.dtype());
    
    auto ones = at::ones(input_buf.size(0), options).unsqueeze(1);
    
    input_buf = at::cat({input_buf, ones}, 1); // [X 1]
48
49
}

Jiezhong Qiu's avatar
Jiezhong Qiu committed
50
std::vector<torch::Tensor> moe_forward(
51
        torch::Tensor input_buf,     		// [batch_size x in_feat]
52
        torch::Tensor expert_count,  		// [batch_size]
53
        torch::Tensor weight,        		// [num_expert x out_feat x in_feat]
54
        at::optional<torch::Tensor> bias_o  // [num_expert x out_feat] or None
Jiezhong Qiu's avatar
update  
Jiezhong Qiu committed
55
        ) {
56

57
    // Wx+b = [W b] [x]
58
    //              [1]  
59
    if (bias_o.has_value()) merge_bias(input_buf, weight, bias_o);
60

Rick Ho's avatar
Rick Ho committed
61
    CHECK_INPUT(input_buf);
Rick Ho's avatar
Rick Ho committed
62
    CHECK_INPUT(weight);
63

64
    return moe_cuda_forward(input_buf, expert_count, weight);
Jiezhong Qiu's avatar
update  
Jiezhong Qiu committed
65
66
}

Jiezhong Qiu's avatar
Jiezhong Qiu committed
67
std::vector<torch::Tensor> moe_backward(
68
69
        torch::Tensor grad_output_buf, 		// [batch_size x out_feat]
        torch::Tensor input_buf,       		// [batch_size x in_feat]
70
        torch::Tensor expert_count,
71
        torch::Tensor weight,           	// [num_expert x out_feat x in_feat]
72
        at::optional<torch::Tensor> bias_o  // [num_expert x out_feat] or None
Jiezhong Qiu's avatar
update  
Jiezhong Qiu committed
73
        ) {
74
75
    
    // Wx+b = [W b] [x]
76
    //              [1]  
77
    if (bias_o.has_value()) merge_bias(input_buf, weight, bias_o);
78

Rick Ho's avatar
Rick Ho committed
79
80
    CHECK_INPUT(grad_output_buf);
    CHECK_INPUT(input_buf);
Jiezhong Qiu's avatar
update  
Jiezhong Qiu committed
81
    CHECK_INPUT(weight);
82
    
83
    return moe_cuda_backward(grad_output_buf, input_buf, expert_count, weight, bias_o.has_value());
Jiezhong Qiu's avatar
can run  
Jiezhong Qiu committed
84
85
}

86
87
#ifdef MOE_USE_NCCL

Rick Ho's avatar
Rick Ho committed
88
std::vector<torch::Tensor> moe_expert_exchange(
89
90
91
        torch::Tensor local_expert_count,
        size_t num_expert, size_t n_workers) {
    return moe_cuda_expert_exchange(local_expert_count, num_expert, n_workers);
Rick Ho's avatar
Rick Ho committed
92
93
}

94
std::vector<torch::Tensor> moe_global_scatter(
95
96
97
98
99
100
101
102
        torch::Tensor input_buf,
        torch::Tensor local_expert_count,
        torch::Tensor global_expert_count,
        size_t batch_size, size_t n_workers) {
    CHECK_INPUT(input_buf);
    return moe_cuda_global_scatter(input_buf,
               local_expert_count, global_expert_count,
            batch_size, n_workers);
103
104
105
}

std::vector<torch::Tensor> moe_global_gather(
106
107
108
109
110
111
112
113
        torch::Tensor output_buf,
        torch::Tensor local_expert_count,
        torch::Tensor global_expert_count,
        size_t batch_size, size_t n_workers) {
    CHECK_INPUT(output_buf);
    return moe_cuda_global_gather(output_buf,
               local_expert_count, global_expert_count,
            batch_size, n_workers);
114
115
}

Rick Ho's avatar
Rick Ho committed
116
117

std::vector<torch::Tensor> moe_global_fused_forward(
118
        torch::Tensor input_buf,
Rick Ho's avatar
Rick Ho committed
119
        torch::Tensor weight,
120
121
122
123
124
125
126
127
        torch::Tensor local_expert_count,
        torch::Tensor global_expert_count,
        long global_batch_size, long local_batch_size, long n_workers) {
    CHECK_INPUT(input_buf);
    CHECK_INPUT(weight);
    return moe_cuda_global_fused_forward(
            input_buf, weight, local_expert_count, global_expert_count,
            global_batch_size, local_batch_size, n_workers);
Rick Ho's avatar
Rick Ho committed
128
129
}

Rick Ho's avatar
Rick Ho committed
130
131
132
133
134
#include <c10d/ProcessGroupNCCL.hpp>
#include "cuda_stream_manager.h"

class HackNCCLGroup: public c10d::ProcessGroupNCCL {
public:
135
136
    ncclComm_t getcomm(at::Device dev) {
        auto key = std::to_string(dev.index());
137
#ifdef ENABLE_NCCL_P2P_SUPPORT
138
139
140
141
142
143
144
145
146
147
148
149
        ncclUniqueId ncclID;
        int rank = getRank();
        if (rank == 0) {
            ncclGetUniqueId(&ncclID);
        }
        broadcastUniqueNCCLID(&ncclID,
                c10d::OpType::SEND,
                "fastmoe_nccl_comm",
                rank);
        ncclComm_t comm;
        ncclCommInitRank(&comm, getSize(), ncclID, rank);
        return comm;
150
#else
151
152
153
154
155
156
157
158
159
        auto v = getNCCLComm(key, {dev});
        if (v.size() == 0) {
            std::cerr << "PyTorch has nothing\n";
            return 0;
        }
        int count;
        ncclCommCount(v[0]->getNcclComm(), &count);
        std::cerr << "PyTorch has " << v.size() << " comms, comm 0 size " << count << "\n";
        return v[0]->getNcclComm();
Rick Ho's avatar
Rick Ho committed
160
#endif
161
    }
Rick Ho's avatar
Rick Ho committed
162
163
164
};

void moe_ensure_nccl(c10d::ProcessGroupNCCL& p, torch::Tensor t) {
165
166
167
168
169
170
171
172
173
174
175
    auto smgr = getCudaStreamManager(t.device().index());
    if (smgr->ncclgood) {
        return;
    }
    HackNCCLGroup* h = (HackNCCLGroup*)(void*)&p;
    smgr->ncclcomm = h->getcomm(t.device());
    if (smgr->ncclcomm != 0) {
        smgr->ncclgood = 1;
    } else {
        std::cerr << "Nccl initialization failed\n";
    }
Jiezhong Qiu's avatar
update  
Jiezhong Qiu committed
176
}
Rick Ho's avatar
Rick Ho committed
177
178

#endif  // MOE_USE_NCCL
Jiezhong Qiu's avatar
update  
Jiezhong Qiu committed
179
180

PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
Rick Ho's avatar
Rick Ho committed
181
182
183
  m.def("expert_count", &moe_expert_count, "MoE expert count (CUDA)");
  m.def("local_scatter", &moe_local_scatter, "MoE local scatter (CUDA)");
  m.def("local_gather", &moe_local_gather, "MoE local gather (CUDA)");
184
#ifdef MOE_USE_NCCL
Rick Ho's avatar
Rick Ho committed
185
  m.def("expert_exchange", &moe_expert_exchange, "MoE expert exchange (CUDA)");
186
187
  m.def("global_scatter", &moe_global_scatter, "MoE global scatter (CUDA)");
  m.def("global_gather", &moe_global_gather, "MoE global gather (CUDA)");
Rick Ho's avatar
Rick Ho committed
188
  m.def("global_fused_forward", &moe_global_fused_forward, 
189
          "MoE global gather (CUDA)");
Rick Ho's avatar
Rick Ho committed
190
  m.def("ensure_nccl", &moe_ensure_nccl, "MoE ensure torch nccl comm");
191
#endif
Jiezhong Qiu's avatar
Jiezhong Qiu committed
192
193
  m.def("forward", &moe_forward, "MoE forward (CUDA)");
  m.def("backward", &moe_backward, "MoE backward (CUDA)");
Rick Ho's avatar
Rick Ho committed
194
}