Metadata-Version: 2.1
Name: configure-gpu
Version: 0.1
Summary: a package for allocating tensorflow gpu memory use in python
Home-page: https://github.com/kongaevans/configure_gpu
Author: Evans Kiplagat
Author-email: evanskiplagat3@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Gpu allocator

## install
```bash
$ pip install configure_gpu
```

This is a package for allocating gpu memory to prevent clogging the gpu memory.

## Usage
```python
# tensorflow import
import tensorflow as tf

# gpu allocator package
from configure_gpu import gpu_allocator

# configuring gpu
gpu_memory_allocator(tf, percentage_allocation=0.95)

```


