Lingbin_kong

Results 4 comments of Lingbin_kong

you need to install make,referance https://gnuwin32.sourceforge.net/packages/make.htm, then configure environment variables, next,you can run make command

maybe you have not configure environment variables about the make

![image](https://github.com/user-attachments/assets/16d2a1e6-5627-44d2-af1c-3fe6d599d89b) ![image](https://github.com/user-attachments/assets/4043a11f-02c1-4cbf-b904-5a1b6985e74a)

> RuntimeError: Input type (torch.cuda.FloatTensor) and weight type (CUDABFloat16Type) should be the same这个是为什么?改了好多地方了,都是数据类型需要转换 将这句代码enc_out, n_vars = self.patch_embedding(x_enc.to(torch.bfloat16))改成enc_out, n_vars = self.patch_embedding(x_enc.to(torch.float))