KunWillRICH

Results 1 issues of KunWillRICH

Reproducible code: ``` import torch import torch.nn as nn import torch_mlir from torch_mlir import TensorPlaceholder, OutputType class conv1d(nn.Module): def __init__(self): super(conv1d, self).__init__() self.conv1_pre = torch.nn.Conv1d(in_channels=2, out_channels=16, kernel_size=1, stride=1, padding=0, bias=False)...