Metadata-Version: 2.1
Name: gpu-active
Version: 0.1.1
Summary: Utilities for GPU activation and data transfer in PyTorch.
Home-page: https://github.com/dimeneman/get-gpu
Author: Eman Gope
Author-email: gopeeman87@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# get_gpu

`get_gpu` is a Python package that simplifies GPU management in PyTorch projects. It helps users activate a GPU (if available) and move data to GPU memory for faster training and inference.

---

## Features

- Automatically detect and use the GPU if available, else fallback to CPU.
- Transfer tensors or datasets to the selected device.
- Wrap PyTorch DataLoader to seamlessly move data to the GPU during iteration.

---

## Installation

Install the package directly from PyPI:

```bash
pip install get-gpu
