import torch
from torch import nn

for i in range(10):
    c = nn.Conv1d(300, 100, 3)
    a = torch.randn(40, 300, 50)
    c(a)
