Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cudf extension #50

Merged
merged 27 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[run]
omit = src/akimbo/cudf.py
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
pip list
- name: test
run: |
python -m pytest -v --cov akimbo
python -m pytest -v --cov-config=.coveragerc --cov akimbo
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# emacs
.dir-locals.el
.idea

# setuptools_scm
src/akimbo/version.py
Expand Down
22 changes: 22 additions & 0 deletions example/cuda_env.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: cuda
channels:
- conda-forge
dependencies:
- python=3.10
- cuda-cudart
- cuda-version=12.2
- pycuda
- cupy
- numba
- awkward
- rapidsai::cudf
- ipython
- numba
- pyarrow
- pandas
- polars
- pytest
- distributed
- dask-awkward
- pytest
- rox
Loading
Loading