Metadata-Version: 2.2
Name: fastnorm_cpp
Version: 0.1.2
Summary: Test: A super fast C++ implementation of RMSNorm
Author-Email: Mario Raach <marioraach01@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: C++
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.10
Requires-Dist: numpy>=2.2.6
Description-Content-Type: text/markdown

# fastnorm_cpp 🚀

High-performance C++ implementation of RMSNorm for Python.

## 🛠 Installation

### From Source
```bash
git clone [https://github.com/mariorch22/fastnorm_cpp.git](https://github.com/mariorch22/fastnorm_cpp.git)
cd fastnorm-cpp
uv pip install -e .
```

## 🚀 Usage
```python
import fastnorm

data = [1.0, 2.0, 3.0, 4.0]
result = fastnorm.rmsnorm(data)
print(result)
```
