File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
numba_dpex/examples/kernel Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -41,8 +41,6 @@ for /f %%f in ('dir /b /S .\dist') do (
4141
4242:: Copy wheel package
4343if 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)
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ def _arange_reshaped(shape, dtype):
8383X = dpt .asarray (X )
8484Y = dpt .asarray (Y )
8585device = X .device .sycl_device
86- result = dpt .zeros ((5 , 5 ), dtype , device = device )
86+ result = dpt .zeros ((5 , 5 ), dtype = dtype , device = device )
8787X_slm = kapi .LocalAccessor (shape = work_group_size , dtype = dtype )
8888Y_slm = kapi .LocalAccessor (shape = work_group_size , dtype = dtype )
8989
You can’t perform that action at this time.
0 commit comments