Eager Tensor Operations #
PyTorch-style tensor operations backed by the eager CPU/CUDA tapes. These wrappers record runtime
nodes, dispatch CUDA kernels when requested, and preserve the typed TensorRef surface.
Convolution operations #
N-D convolution for channels-first tensors (inC, spatial...) (no batch axis).
This is the generic counterpart to conv2d.
PyTorch comparison: torch.nn.functional.conv{d}d specialized to a single sample.
Instances For
2D convolution for channel-first images (C,H,W) (no batch axis). PyTorch:
torch.nn.functional.conv2d.
Instances For
N-D transpose convolution for channels-first tensors (inC, spatial...) (no batch axis).
This is the generic counterpart to conv_transpose2d.
PyTorch comparison: torch.nn.functional.conv_transpose{d}d specialized to a single sample.
Instances For
2D transpose convolution for channel-first images (C,H,W) (no batch axis). PyTorch:
torch.nn.functional.conv_transpose2d.