Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

[REVIEW] Use Numba 0.49+ API where required #53

Merged
merged 3 commits into from Apr 13, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -12,7 +12,8 @@
- PR #50 - Update README to reorganize install instructions

## Bug Fixes
- PR #44 - Fix issues in pytests
- PR #44 - Fix issues in pytests
- PR #52 - Mirror API change in Numba 0.49

# cuSignal 0.13 (31 Mar 2020)

Expand Down
2 changes: 1 addition & 1 deletion python/cusignal/_signaltools.py
Expand Up @@ -26,7 +26,7 @@
int64,
void,
)
from numba.types.scalars import Complex
from numba.core.types.scalars import Complex

from .fir_filter_design import firwin

Expand Down
2 changes: 1 addition & 1 deletion python/cusignal/_upfirdn.py
Expand Up @@ -17,7 +17,7 @@

import cupy as cp
from numba import complex64, complex128, cuda, float32, float64, int64, void
from numba.types.scalars import Complex
from numba.core.types.scalars import Complex

_numba_kernel_cache = {}
_cupy_kernel_cache = {}
Expand Down