Torch-style 1D convolution in NCW layout: x is
[batch, in_channels, width], weight is
[out_channels, in_channels / groups, kW], output is
[batch, out_channels, out_w]. Symmetric zero padding.
Usage
nv_conv1d(
x,
weight,
stride = 1L,
padding = 0L,
dilation = 1L,
groups = 1L,
precision = "highest"
)Value
arrayish [N, C_out, out_W].