Skip to content

Commit eb5bbc3

Browse files
author
Diptorup Deb
authored
Merge pull request #1432 from IntelPython/main
Update gold/2021 with latest changes from main
2 parents d735c49 + 6b89cb0 commit eb5bbc3

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

conda-recipe/bld.bat

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ for /f %%f in ('dir /b /S .\dist') do (
4141

4242
:: Copy wheel package
4343
if NOT "%WHEELS_OUTPUT_FOLDER%"=="" (
44-
for /f %%f in ('dir /b /S .\dist') do (
45-
copy %%f %WHEELS_OUTPUT_FOLDER%
46-
if %ERRORLEVEL% neq 0 exit 1
47-
)
44+
copy dist\numba_dpex*.whl %WHEELS_OUTPUT_FOLDER%
45+
if errorlevel 1 exit 1
4846
)

numba_dpex/examples/kernel/matmul.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def _arange_reshaped(shape, dtype):
8383
X = dpt.asarray(X)
8484
Y = dpt.asarray(Y)
8585
device = X.device.sycl_device
86-
result = dpt.zeros((5, 5), dtype, device=device)
86+
result = dpt.zeros((5, 5), dtype=dtype, device=device)
8787
X_slm = kapi.LocalAccessor(shape=work_group_size, dtype=dtype)
8888
Y_slm = kapi.LocalAccessor(shape=work_group_size, dtype=dtype)
8989

0 commit comments

Comments
 (0)