ND operations for PyTorch
Project description
torchnd
N-dimensional operations for PyTorch with flexible dimension specification.
torchnd provides convolution, transposed convolution, padding/cropping, linear interpolation, and corresponding adjoint operations for tensors with arbitrary dimension layouts. It supports complex tensors where applicable and uses native PyTorch 1D/2D/3D kernels whenever possible.
Installation
pip install torchnd
Usage
2D convolution:
import torch
from torchnd import conv_nd
x = torch.randn(2, 4, 16, 16)
weight = torch.randn(8, 4, 3, 3)
out = conv_nd(x, weight, dim=(-2, -1), padding=1, stride=2)
4D convolution (batch × time × height × width):
x = torch.randn(2, 4, 10, 16, 16)
weight = torch.randn(8, 4, 3, 3, 3)
out = conv_nd(x, weight, dim=(-3, -2, -1), padding=1)
Channel-last layout:
x = torch.randn(2, 16, 16, 4)
weight = torch.randn(8, 4, 3, 3)
out = conv_nd(x, weight, dim=(1, 2), channel_dim=-1, padding=1)
Transposed convolution:
x = torch.randn(2, 4, 8, 8)
weight = torch.randn(4, 8, 3, 3)
out = conv_nd(x, weight, dim=(-2, -1), padding=1, stride=2, transposed=True)
Complex numbers:
x = torch.randn(2, 4, 16, 16, dtype=torch.complex64)
weight = torch.randn(8, 4, 3, 3, dtype=torch.complex64)
out = conv_nd(x, weight, dim=(-2, -1), padding=1)
Asymmetric parameters per dimension:
x = torch.randn(2, 4, 16, 16)
weight = torch.randn(8, 4, 3, 3)
out = conv_nd(
x, weight,
dim=(-2, -1),
stride=(2, 1),
padding=(1, 2),
dilation=(1, 2)
)
Modules:
from torchnd import ConvNd, ConvTransposeNd
conv = ConvNd(4, 8, 3, dim=(-2, -1), padding=1)
out = conv(x)
Padding:
from torchnd import pad_nd, adjoint_pad_nd
# Pad or crop arbitrary dimensions
padded = pad_nd(x, pad=(1, 1, 2, 2), dims=(-2, -1), mode="reflect")
cropped = pad_nd(x, pad=(-1, -1), dims=(0,)) # Negative values crop
# Adjoint of padding (unpads)
unpadded = adjoint_pad_nd(padded, pad=(1, 1, 2, 2), dims=(-2, -1))
Linear interpolation:
from torchnd import linear_interpolation_nd, adjoint_linear_interpolation_nd
x = torch.randn(2, 4, 64, 64)
low = linear_interpolation_nd(x, size=(32, 32), dims=(-2, -1))
# Adjoint of the interpolation operator
high_adjoint = adjoint_linear_interpolation_nd(low, input_size=(64, 64), dims=(-2, -1))
Adjoint operators:
from torchnd import ConvNd
conv = ConvNd(4, 8, 3, dim=(-2, -1), padding=1, bias=False)
x = torch.randn(2, 4, 16, 16)
y = torch.randn_like(conv(x))
# Adjoint satisfies: <conv(x), y> = <x, conv.adjoint(y)>
# For ConvNd: adjoint is transposed convolution with conjugated weights
adj_y = conv.adjoint(y, input_shape=(16, 16))
Functions
conv_nd
N-dimensional convolution with flexible dimension specification. Supports arbitrary spatial dimensions via recursive decomposition when native PyTorch implementations (1D, 2D, 3D) are unavailable. Handles complex numbers, grouped convolution, dilation, stride, and transposed convolution.
The dim parameter specifies which dimensions are spatial. The channel_dim parameter specifies the channel dimension. This allows for arbitrary tensor layouts (e.g., channel-last).
pad_nd
N-dimensional padding and cropping with flexible dimension specification. Supports arbitrary dimension layouts, not limited to the last N dimensions. Negative padding values crop the tensor.
Modes: constant, reflect, replicate, circular. Each dimension can use a different mode. For constant mode, negative padding crops symmetrically. For non-constant modes, negative padding is not supported.
The dims parameter specifies which dimensions to pad. If None, pads the last N dimensions where N = len(pad) // 2. Padding is specified as pairs (left, right) per dimension.
pad_or_crop_to_size
Pad or crop a tensor to a target size, centering the original content. Combines padding and cropping in a single operation. Useful for resizing tensors to a fixed shape while keeping the content centered.
adjoint_pad_nd
Computes the adjoint of pad_nd via autograd. For a padding operator P, the adjoint P* satisfies the inner product identity: <Px, y> = <x, P*y> for all x, y. The adjoint unpads the tensor, summing contributions from padded regions back into the original shape. For constant/zeros mode, the adjoint is equivalent to cropping. For other modes, it correctly handles the adjoint of the boundary extension.
linear_interpolation_nd
Resizes selected tensor dimensions using linear interpolation. The dims parameter specifies which dimensions are interpolated; if None, the last len(size) dimensions are used. For more than three interpolated dimensions, the operation is split into chunks of up to three dimensions to use PyTorch's native interpolation kernels.
Complex tensors are handled by applying interpolation to real and imaginary parts separately.
adjoint_linear_interpolation_nd
Computes the adjoint of linear_interpolation_nd. The adjoint is evaluated with PyTorch's native interpolation backward kernels and satisfies the inner product identity <Ax, y> = <x, A*y> for the linear interpolation operator A.
The adjoint supports autograd, forward-mode AD, and torch.func.vmap.
Adjoint convolution
The ConvNd and ConvTransposeNd modules provide adjoint() methods. For ConvNd, the adjoint is the transposed convolution with conjugated weights (for complex) or identical weights (for real). For ConvTransposeNd, the adjoint is the forward convolution with conjugated weights.
The adjoint satisfies the inner product identity: <Ax, y> = <x, A*y> where A is the convolution operator and A* is its adjoint. This is verified via dot product tests. The adjoint is undefined when bias is present.
Implementation
For dimensions beyond 3D, conv_nd recursively decomposes the convolution into lower-dimensional operations. A 4D convolution becomes a sum of 3D convolutions applied to strided slices of the input.
For interpolation of more than three dimensions, linear_interpolation_nd applies native PyTorch interpolation to chunks of up to three dimensions. The adjoint applies the corresponding chunks in reverse order.
Complex convolution is handled by decomposing into real operations: (a+bi)*(c+di) = (ac-bd) + (ad+bc)i.
The implementation uses native PyTorch operations when possible (1D, 2D, 3D) and falls back to recursion only for higher dimensions, minimizing memory overhead with strided views.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file torchnd-0.2.0.tar.gz.
File metadata
- Download URL: torchnd-0.2.0.tar.gz
- Upload date:
- Size: 24.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac63e2953924579b40292373caa3d7b33ea22d144ebbeb7f9a169c12611be0e9
|
|
| MD5 |
358805349897453ee8afb6ca30b81bec
|
|
| BLAKE2b-256 |
b1b8ac544b8f27ca749ccdef24b6e5fdef09f974cbbc357c13357a7e1b710234
|
Provenance
The following attestation bundles were made for torchnd-0.2.0.tar.gz:
Publisher:
release.yml on fzimmermann89/torchnd
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchnd-0.2.0.tar.gz -
Subject digest:
ac63e2953924579b40292373caa3d7b33ea22d144ebbeb7f9a169c12611be0e9 - Sigstore transparency entry: 1524512123
- Sigstore integration time:
-
Permalink:
fzimmermann89/torchnd@3b776f5c3494f44218773f56bd1586b1d3f7f5de -
Branch / Tag:
refs/tags/0.2.0 - Owner: https://github.com/fzimmermann89
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3b776f5c3494f44218773f56bd1586b1d3f7f5de -
Trigger Event:
release
-
Statement type:
File details
Details for the file torchnd-0.2.0-py3-none-any.whl.
File metadata
- Download URL: torchnd-0.2.0-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
934e09776f2a2478e93c6bc7eeae8e0e22c8ce795cdde61a5b17c15e5c8b7274
|
|
| MD5 |
38b43acf2b57e43fc7723ab5af4ccbe2
|
|
| BLAKE2b-256 |
dcbccab606e4e2f38af3d161a5c071769418996314c9b42a79d4dac67c5e8c61
|
Provenance
The following attestation bundles were made for torchnd-0.2.0-py3-none-any.whl:
Publisher:
release.yml on fzimmermann89/torchnd
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchnd-0.2.0-py3-none-any.whl -
Subject digest:
934e09776f2a2478e93c6bc7eeae8e0e22c8ce795cdde61a5b17c15e5c8b7274 - Sigstore transparency entry: 1524512130
- Sigstore integration time:
-
Permalink:
fzimmermann89/torchnd@3b776f5c3494f44218773f56bd1586b1d3f7f5de -
Branch / Tag:
refs/tags/0.2.0 - Owner: https://github.com/fzimmermann89
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3b776f5c3494f44218773f56bd1586b1d3f7f5de -
Trigger Event:
release
-
Statement type: