fn
conv_transpose1d_op
→TensorImplPtrint conv_transpose1d_op(const int & x, const int & W, const int & b, int stride_l, int pad_l, int opad_l)Python wrappers
Public Python APIs implemented by this engine symbol.One-dimensional transposed convolution (fractionally-strided conv).
Upsamples a 1-D batch by inserting stride - 1 implicit zeros
between consecutive input positions, then applies a regular
cross-correlation against the kernel. This is the primitive used in
decoder / generator architectures to lengthen sequences.
Parameters
xTensorImplPtrInput of shape
(B, C_in, L).WTensorImplPtrFilters of shape
(C_in, C_out, KL).bTensorImplPtrBias of shape
(C_out,) or empty.stride_lint= NoneLength-axis upsampling factor. Default:
1.pad_lint= NoneLength-axis padding subtracted from the output extent. Default:
0.opad_lint= NoneLength-axis output padding (one-sided). Must be
< stride_l. Default: 0.Returns
TensorImplPtrOutput of shape (B, C_out, L_out) where .