Metadata-Version: 2.4
Name: vapoursynth-dfttest2_cuda
Version: 10.post1
Summary: A VapourSynth re-implementation of DFTTest, using NVIDIA cuFFT for GPU acceleration.
Author: WolframRhodium
Maintainer-Email: =?utf-8?b?VmFyZMOr?= <ichunjo.le.terrible@gmail.com>
License-Expression: GPL-2.0-or-later
License-File: vs-dfttest2/LICENSE
Project-URL: Source Code, https://github.com/AmusementClub/vs-dfttest2
Project-URL: Bug Tracker, https://github.com/AmusementClub/vs-dfttest2/issues
Project-URL: Repository, https://github.com/Jaded-Encoding-Thaumaturgy/vs-wheels
Requires-Python: >=3.12
Requires-Dist: vapoursynth>=75
Description-Content-Type: text/markdown

# VapourSynth-DFTTEST2_CUDA

This package contains the CUDA implementation of the [vs-dfttest2](https://github.com/AmusementClub/vs-dfttest2) implemetation.

## Installation

```bash
pip install vapoursynth-dfttest2-cuda --extra-index-url https://jaded-encoding-thaumaturgy.github.io/vs-wheels/simple
```

## Building from source

```powershell
uv build --package vapoursynth-dfttest2-cuda
```

---

Detailed parameter information from the parent project follows.

---
# vs-dfttest2
DFTTest re-implemetation (CUDA and x86)

## Usage
```python3
from dfttest2 import DFTTest
output = DFTTest(input)
```

See also [VapourSynth-DFTTest](https://github.com/HomeOfVapourSynthEvolution/VapourSynth-DFTTest)

## Compilation
```bash
# additional options: -D ENABLE_CUDA=ON -D ENABLE_CPU=ON
cmake -S . -B build

cmake --build build

cmake --install build
```

If the vapoursynth library cannot be found by pkg-config, then the cmake variable `VS_INCLUDE_DIR` should be set.
