Causal depthwise conv1d in CUDA, with a PyTorch interface
Project description
Causal depthwise conv1d in CUDA with a PyTorch interface
Features:
- Support fp32, fp16, bf16.
- Kernel size 2, 3, 4.
How to use
from causal_conv1d import causal_conv1d_fn
def causal_conv1d_fn(x, weight, bias=None, activation=None):
"""
x: (batch, dim, seqlen)
weight: (dim, width)
bias: (dim,)
activation: either None or "silu" or "swish"
out: (batch, dim, seqlen)
"""
Equivalent to:
import torch.nn.functional as F
F.conv1d(x, weight.unsqueeze(1), bias, padding=width - 1, groups=dim)[..., :seqlen]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
causal_conv1d-1.1.1.tar.gz
(6.6 kB
view details)
File details
Details for the file causal_conv1d-1.1.1.tar.gz
.
File metadata
- Download URL: causal_conv1d-1.1.1.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbbe1c399af13144b18d72345143aec84b1e7797b836465da0307b19eb6cbc0c |
|
MD5 | 87ae8531fe37fcd959dd94797195f57f |
|
BLAKE2b-256 | 52a576455f95cc4ec73c8387f3ea3fcb63256ca98d8bab2b16cf140edb5407e0 |