Metadata-Version: 2.1
Name: cuda-py
Version: 1.0.1
Summary: A very simple python wrapper for running code on CUDA devices.
Author-email: GloriousGlider8 <sam.g.plimmer@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# cuda-py

A very simple python wrapper for running code on CUDA devices.

```python
@cuda.run()
def myCudaFunc():
    print("Look! I'm running on the GPU!")

myCudaFunc() # Run the function normally.
```

If no CUDA device is found, the code will run normally on the CPU and `WARN: No CUDA device found!` will be printed.
