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 recipe for numba-cuda #27600

Merged
merged 1 commit into from
Sep 20, 2024
Merged
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
46 changes: 46 additions & 0 deletions recipes/numba-cuda/recipe.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
context:
name: numba-cuda
sdist_name: numba_cuda
version: "0.0.15"

package:
name: ${{ name }}
version: ${{ version }}

source:
url: https://pypi.io/packages/source/${{ name[0] }}/${{ name }}/${{ sdist_name }}-${{ version }}.tar.gz
sha256: 42d3919d006421510004c89ac2de03222da95e4fc59cfc7c3c736891e38ea307

build:
noarch: python
script: python -m pip install . -vv
number: 0

requirements:
host:
- python
- pip
- setuptools
run:
- python
- numba >=0.59.1

tests:
- python:
imports:
- numba_cuda
pip_check: true

about:
homepage: https://github.com/NVIDIA/numba-cuda
summary: 'A CUDA target for Numba'
description: |
A Numba target for compiling Python code to excute on CUDA GPUs.
license: BSD-2-Clause
license_file: LICENSE
documentation: https://nvidia.github.io/numba-cuda
repository: https://github.com/NVIDIA/numba-cuda

extra:
recipe-maintainers:
- gmarkall
Loading