Le Ngoc Linh

Results 3 issues of Le Ngoc Linh

Hi, All my module instantiation in my old code got error: "Unknown module type" after the update. Simulation and synthesis by vcs and vivado still work.

Hello, I couldn't download anything from the baidu storage. Is there any other mirror?

For example: ```import torch import torch.nn as nn class model(nn.Module): def __init__(self): super().__init__() self.net = nn.ConvTranspose2d(4, 2, kernel_size=4, stride=(2,2), padding=1) def forward(self, x): return self.net(x) def main(): x = torch.rand(2,4,16,16)...