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

Commit

Permalink
Merge pull request #577 from rapidsai/branch-23.06
Browse files Browse the repository at this point in the history
Forward-merge branch-23.06 to branch-23.08
  • Loading branch information
GPUtester authored May 30, 2023
2 parents 13439a9 + c993961 commit 6a3ba26
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ dependencies:
- ipython
- matplotlib-base
- notebook
- numba >=0.49.0
- numpy >=1.19,<1.24
- numba >=0.57.0
- numpy >=1.21
- numpydoc
- pre-commit
- pydata-sphinx-theme
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/cusignal/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ requirements:
- setuptools
run:
- cupy >=12.0.0
- numba >=0.49.0
- numpy >=1.19,<1.24
- numba >=0.57.0
- numpy >=1.21
- python
- scipy >=1.6.0

Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ dependencies:
- output_types: [conda, requirements]
packages:
- cupy >=12.0.0
- numba >=0.49.0
- numpy >=1.19,<1.24
- numba >=0.57.0
- numpy >=1.21
- scipy >=1.6.0
test_notebooks:
common:
Expand Down
8 changes: 4 additions & 4 deletions python/cusignal/convolution/_convolution_cuda.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def _convolve(
in2 = in2.astype(promType)

# Create empty array to hold number of aout dimensions
out_dimens = np.empty(in1.ndim, np.int)
out_dimens = np.empty(in1.ndim, int)
if val == VALID:
for i in range(in1.ndim):
out_dimens[i] = (
Expand Down Expand Up @@ -465,7 +465,7 @@ def _convolve2d(in1, in2, use_convolve, mode, boundary, fillvalue):
raise Exception("Unable to create fill array")

# Create empty array to hold number of aout dimensions
out_dimens = np.empty(in1.ndim, np.int)
out_dimens = np.empty(in1.ndim, int)
if val == VALID:
for i in range(in1.ndim):
out_dimens[i] = in1.shape[i] - in2.shape[i] + 1
Expand Down Expand Up @@ -539,7 +539,7 @@ def _convolve1d2o(in1, in2, mode):
in2 = in2.astype(promType)

# Create empty array to hold number of aout dimensions
out_dimens = np.empty(in1.ndim, np.int)
out_dimens = np.empty(in1.ndim, int)
if val == VALID:
for i in range(in1.ndim):
out_dimens[i] = in1.shape[i] - in2.shape[i] + 1
Expand Down Expand Up @@ -602,7 +602,7 @@ def _convolve1d3o(in1, in2, mode):
in2 = in2.astype(promType)

# Create empty array to hold number of aout dimensions
out_dimens = np.empty(in1.ndim, np.int)
out_dimens = np.empty(in1.ndim, int)
if val == VALID:
for i in range(in1.ndim):
out_dimens[i] = in1.shape[i] - in2.shape[i] + 1
Expand Down

0 comments on commit 6a3ba26

Please sign in to comment.