File size: 2,647 Bytes
873c401
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
license: apache-2.0
---
# LTX-Q8-Kernels Pre-built Wheel

This repository contains pre-built wheel files for the LTX-Q8-Kernels to avoid the need for building on SM89 instances with Python 3.11.

## Quick Install

Instead of building the kernels from source (which requires SM89 compute capability), you can directly install the pre-built wheel:

```bash
pip install https://huggingface.co/ModelsLab/LTX-Q8-Kernels-build-ada/resolve/main/q8_kernels-0.0.5-cp311-cp311-linux_x86_64.whl
```

## Requirements

- **Python**: 3.11
- **Platform**: Linux x86_64
- **CUDA**: Compatible CUDA installation
- **Architecture**: Built for Ada Lovelace (RTX 40 series) and compatible GPUs

## Usage

After installation, you can import and use the kernels in your LTX-Video projects:

```python
import q8_kernels
# Your LTX-Video code here
```

## Benefits

- **No SM89 Build Requirements**: Skip the complex build process that requires specific GPU compute capabilities
- **Faster Setup**: Direct installation without compilation time
- **Pre-optimized**: Built with optimal settings for Ada Lovelace architecture

## Compatibility

This wheel is specifically built for:
- **Python 3.11** (`cp311-cp311`)
- **Linux x86_64** systems
- **Ada Lovelace GPU architecture** (RTX 4090, RTX 4080, etc.)

## Alternative Installation Methods

### From Hugging Face Hub

```bash
# Using huggingface_hub
pip install huggingface_hub
python -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='ModelsLab/LTX-Q8-Kernels-build-ada', filename='q8_kernels-0.0.5-cp311-cp311-linux_x86_64.whl', local_dir='.')"
pip install q8_kernels-0.0.5-cp311-cp311-linux_x86_64.whl
```

### Download and Install

```bash
wget https://huggingface.co/ModelsLab/LTX-Q8-Kernels-build-ada/resolve/main/q8_kernels-0.0.5-cp311-cp311-linux_x86_64.whl
pip install q8_kernels-0.0.5-cp311-cp311-linux_x86_64.whl
```

## Troubleshooting

If you encounter issues:

1. **Verify Python version**: `python --version` should show 3.11.x
2. **Check platform**: This wheel only works on Linux x86_64
3. **CUDA compatibility**: Ensure you have a compatible CUDA installation
4. **GPU support**: Verify your GPU supports the required compute capability

## Building from Source (Alternative)

If you need to build from source or for different architectures, refer to the main [LTX-Video repository](https://github.com/Lightricks/LTX-Video) for build instructions.

## Version Information

- **Package Version**: 0.0.5
- **Python**: 3.11
- **Platform**: linux_x86_64
- **Build Target**: Ada Lovelace (SM89)

## License

This package follows the same license as the original LTX-Video project.