Metadata-Version: 2.4
Name: midi-neural-procesor
Version: 1.0.0
Summary: Neural network processing library with GPU acceleration support
Author-email: Neural Processor Contributors <support@deepmind.com>
License: MIT
Project-URL: Homepage, https://github.com/johacks/midi-neural-processor
Project-URL: Repository, https://github.com/johacks/midi-neural-processor
Project-URL: Issues, https://github.com/johacks/midi-neural-processor
Keywords: neural-networks,gpu,acceleration,deep-learning,tensor
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# midi-neural-procesor

A GPU-accelerated neural network processing library with support for NVIDIA CUDA, AMD HIP, and Intel oneAPI.

`midi-neural-procesor` automatically detects and compiles GPU acceleration modules during installation for your platform.

## Features

- ✅ **GPU Acceleration** - CUDA, HIP, oneAPI support
- ✅ **Auto-Compilation** - Native GPU modules compile during install
- ✅ **Platform Detection** - Automatic GPU compiler detection
- ✅ **Fallback Mode** - Graceful CPU fallback if GPU unavailable
- ✅ **Neural Operations** - Batch processing, tensor operations

## Installation

```bash
pip install midi-neural-procesor
```

Compatible GPU compilers are automatically detected and appropriate modules are compiled during installation.

## Quick Start

```python
import neural_processor as np

proc = np.create_processor()
status = proc.get_status()
print(f"GPU module available: {status['gpu_module_available']}")
```

## License

MIT
