Skip to content

Commit

Permalink
Merge pull request #1432 from IntelPython/main
Browse files Browse the repository at this point in the history
Update gold/2021 with latest changes from main
  • Loading branch information
Diptorup Deb authored Apr 6, 2024
2 parents d735c49 + 6b89cb0 commit eb5bbc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions conda-recipe/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ for /f %%f in ('dir /b /S .\dist') do (

:: Copy wheel package
if NOT "%WHEELS_OUTPUT_FOLDER%"=="" (
for /f %%f in ('dir /b /S .\dist') do (
copy %%f %WHEELS_OUTPUT_FOLDER%
if %ERRORLEVEL% neq 0 exit 1
)
copy dist\numba_dpex*.whl %WHEELS_OUTPUT_FOLDER%
if errorlevel 1 exit 1
)
2 changes: 1 addition & 1 deletion numba_dpex/examples/kernel/matmul.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _arange_reshaped(shape, dtype):
X = dpt.asarray(X)
Y = dpt.asarray(Y)
device = X.device.sycl_device
result = dpt.zeros((5, 5), dtype, device=device)
result = dpt.zeros((5, 5), dtype=dtype, device=device)
X_slm = kapi.LocalAccessor(shape=work_group_size, dtype=dtype)
Y_slm = kapi.LocalAccessor(shape=work_group_size, dtype=dtype)

Expand Down

0 comments on commit eb5bbc3

Please sign in to comment.