Skip to content

Commit 42d54e6

Browse files
Remove float16 dtype and move all dtype tests to separate task
1 parent 17f1b99 commit 42d54e6

File tree

2 files changed

+195
-2
lines changed

2 files changed

+195
-2
lines changed

.github/workflows/conda-package.yml

Lines changed: 194 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,85 @@ jobs:
192192
193193
python -m pytest -n auto -ra --pyargs ${{ env.PACKAGE_NAME }}.tests
194194
195+
test_linux_all_dtypes:
196+
name: Test ['ubuntu-latest', python='${{ matrix.python }}']
197+
198+
needs: build
199+
200+
runs-on: ubuntu-latest
201+
202+
defaults:
203+
run:
204+
shell: bash -el {0}
205+
206+
strategy:
207+
matrix:
208+
python: ['3.12']
209+
210+
continue-on-error: true
211+
212+
env:
213+
channel-path: '${{ github.workspace }}/channel/'
214+
pkg-path-in-channel: '${{ github.workspace }}/channel/linux-64/'
215+
extracted-pkg-path: '${{ github.workspace }}/pkg/'
216+
ver-json-path: '${{ github.workspace }}/version.json'
217+
218+
steps:
219+
- name: Download artifact
220+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
221+
with:
222+
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
223+
path: ${{ env.pkg-path-in-channel }}
224+
225+
- name: Extract package archive
226+
run: |
227+
mkdir -p ${{ env.extracted-pkg-path }}
228+
tar -xvf ${{ env.pkg-path-in-channel }}/${{ env.PACKAGE_NAME }}-*.tar.bz2 -C ${{ env.extracted-pkg-path }}
229+
230+
- name: Setup miniconda
231+
uses: conda-incubator/setup-miniconda@d2e6a045a86077fb6cad6f5adf368e9076ddaa8d # v3.1.0
232+
with:
233+
miniforge-version: latest
234+
use-mamba: 'true'
235+
channels: conda-forge
236+
conda-remove-defaults: 'true'
237+
python-version: ${{ matrix.python }}
238+
activate-environment: ${{ env.TEST_ENV_NAME }}
239+
240+
- name: Install conda-index
241+
run: mamba install conda-index=${{ env.CONDA_INDEX_VERSION }}
242+
243+
- name: Create conda channel
244+
run: |
245+
python -m conda_index ${{ env.channel-path }}
246+
247+
- name: Test conda channel
248+
run: |
249+
mamba search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
250+
cat ${{ env.ver-json-path }}
251+
252+
- name: Get package version
253+
run: |
254+
export PACKAGE_VERSION=$(python -c "${{ env.VER_SCRIPT1 }} ${{ env.VER_SCRIPT2 }}")
255+
256+
echo PACKAGE_VERSION=${PACKAGE_VERSION}
257+
echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV
258+
259+
- name: Install dpnp
260+
run: mamba install ${{ env.PACKAGE_NAME }}=${{ env.PACKAGE_VERSION }} pytest pytest-xdist python=${{ matrix.python }} ${{ env.TEST_CHANNELS }}
261+
env:
262+
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}'
263+
MAMBA_NO_LOW_SPEED_LIMIT: 1
264+
265+
- name: List installed packages
266+
run: mamba list
267+
268+
- name: Smoke test
269+
run: |
270+
python -c "import dpnp, dpctl; dpctl.lsplatform()"
271+
python -c "import dpnp; print(dpnp.__version__)"
272+
195273
- name: Run full tests
196-
if: matrix.python == '3.12'
197274
env:
198275
DPNP_TEST_ALL_TYPES: 1
199276
run: |
@@ -331,6 +408,122 @@ jobs:
331408
command: |
332409
python -m pytest -n auto -ra --pyargs ${{ env.PACKAGE_NAME }}.tests
333410
411+
test_windows_all_dtypes:
412+
name: Test ['windows-2019', python='${{ matrix.python }}']
413+
414+
needs: build
415+
416+
runs-on: windows-2019
417+
418+
defaults:
419+
run:
420+
shell: cmd /C CALL {0}
421+
422+
strategy:
423+
matrix:
424+
python: ['3.12']
425+
426+
continue-on-error: true
427+
428+
env:
429+
channel-path: '${{ github.workspace }}\channel\'
430+
pkg-path-in-channel: '${{ github.workspace }}\channel\win-64\'
431+
extracted-pkg-path: '${{ github.workspace }}\pkg'
432+
ver-json-path: '${{ github.workspace }}\version.json'
433+
workdir: '${{ github.workspace }}'
434+
435+
steps:
436+
- name: Download artifact
437+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
438+
with:
439+
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
440+
path: ${{ env.pkg-path-in-channel }}
441+
442+
- name: Extract package archive
443+
run: |
444+
@echo on
445+
mkdir -p ${{ env.extracted-pkg-path }}
446+
447+
set SEARCH_SCRIPT="DIR ${{ env.pkg-path-in-channel }} /s/b | FINDSTR /r "dpnp-.*\.tar\.bz2""
448+
FOR /F "tokens=* USEBACKQ" %%F IN (`%SEARCH_SCRIPT%`) DO (
449+
SET FULL_PACKAGE_PATH=%%F
450+
)
451+
echo FULL_PACKAGE_PATH: %FULL_PACKAGE_PATH%
452+
453+
python -c "import shutil; shutil.unpack_archive(r\"%FULL_PACKAGE_PATH%\", extract_dir=r\"${{ env.extracted-pkg-path }}\")"
454+
dir ${{ env.extracted-pkg-path }}
455+
456+
- name: Setup miniconda
457+
uses: conda-incubator/setup-miniconda@d2e6a045a86077fb6cad6f5adf368e9076ddaa8d # v3.1.0
458+
with:
459+
miniforge-version: latest
460+
use-mamba: 'true'
461+
channels: conda-forge
462+
conda-remove-defaults: 'true'
463+
python-version: ${{ matrix.python }}
464+
activate-environment: ${{ env.TEST_ENV_NAME }}
465+
466+
- name: Store conda paths as envs
467+
run: |
468+
@echo on
469+
(echo CONDA_LIB_PATH=%CONDA_PREFIX%\Library\lib\) >> %GITHUB_ENV%
470+
(echo CONDA_LIB_BIN_PATH=%CONDA_PREFIX%\Library\bin\) >> %GITHUB_ENV%
471+
472+
- name: Install conda-index
473+
run: mamba install conda-index=${{ env.CONDA_INDEX_VERSION }}
474+
475+
- name: Create conda channel
476+
run: |
477+
@echo on
478+
python -m conda_index ${{ env.channel-path }}
479+
480+
- name: Test conda channel
481+
run: |
482+
@echo on
483+
mamba search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
484+
485+
- name: Dump version.json
486+
run: more ${{ env.ver-json-path }}
487+
488+
- name: Get package version
489+
run: |
490+
@echo on
491+
set "SCRIPT=${{ env.VER_SCRIPT1 }} ${{ env.VER_SCRIPT2 }}"
492+
FOR /F "tokens=* USEBACKQ" %%F IN (`python -c "%SCRIPT%"`) DO (
493+
set PACKAGE_VERSION=%%F
494+
)
495+
echo PACKAGE_VERSION: %PACKAGE_VERSION%
496+
(echo PACKAGE_VERSION=%PACKAGE_VERSION%) >> %GITHUB_ENV%
497+
498+
- name: Install dpnp
499+
run: |
500+
@echo on
501+
mamba install ${{ env.PACKAGE_NAME }}=${{ env.PACKAGE_VERSION }} pytest pytest-xdist python=${{ matrix.python }} ${{ env.TEST_CHANNELS }}
502+
env:
503+
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}'
504+
MAMBA_NO_LOW_SPEED_LIMIT: 1
505+
506+
- name: List installed packages
507+
run: mamba list
508+
509+
- name: Activate OCL CPU RT
510+
shell: pwsh
511+
run: |
512+
$script_path="$env:CONDA_PREFIX\Scripts\set-intel-ocl-icd-registry.ps1"
513+
if (Test-Path $script_path) {
514+
&$script_path
515+
} else {
516+
Write-Warning "File $script_path was NOT found!"
517+
}
518+
# Check the variable assisting OpenCL CPU driver to find TBB DLLs which are not located where it expects them by default
519+
$cl_cfg="$env:CONDA_PREFIX\Library\lib\cl.cfg"
520+
Get-Content -Tail 5 -Path $cl_cfg
521+
522+
- name: Smoke test
523+
run: |
524+
python -c "import dpnp, dpctl; dpctl.lsplatform()"
525+
python -c "import dpnp; print(dpnp.__version__)"
526+
334527
- name: Run full tests
335528
if: matrix.python == '3.12'
336529
env:

dpnp/tests/third_party/cupy/testing/_loops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ def _get_int_dtypes():
10491049

10501050
_complex_dtypes = _get_supported_complex_dtypes()
10511051
_regular_float_dtypes = _get_supported_float_dtypes()
1052-
_float_dtypes = _regular_float_dtypes + (numpy.float16,)
1052+
_float_dtypes = _regular_float_dtypes # + (numpy.float16,)
10531053
_signed_dtypes = tuple(numpy.dtype(i).type for i in "bhilq")
10541054
_unsigned_dtypes = tuple(numpy.dtype(i).type for i in "BHILQ")
10551055
_int_dtypes = _get_int_dtypes()

0 commit comments

Comments
 (0)