Skip to content

Commit

Permalink
release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jbogaardt committed Feb 3, 2020
1 parent 9bf31da commit 27e5ba3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ We figure an actuary who uses python has reasonable familiarity with pandas and
scikit-learn, so they can spend as little mental energy as possible learning yet
another API.

##### Now with GPU support
New in version `0.5.0` - `chainladder` now supports CUDA-based GPU computations by way of [CuPY](https://github.com/cupy/cupy). You can now swap `array_backend` between `numpy` and `cupy` to switch between CPU and GPU-based computations.

Array backends can be set globally:
```python
import chainladder as cl
cl.array_backend('cupy')
```
Alternatively, they can be set per `Triangle` instance.
```python
cl.Triangle(..., array_backend='cupy')
```
**Note** you must have a CUDA-enabled graphics card and [CuPY](https://github.com/cupy/cupy) installed to use the GPU backend.


## Documentation
Please visit the [Documentation](https://chainladder-python.readthedocs.io/en/latest/) page for examples, how-tos, and source
code documentation.
Expand Down

0 comments on commit 27e5ba3

Please sign in to comment.