Skip to content

Merge master into gold/2021 #1318

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 38 commits into from
Feb 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
938a0a6
Complete support of python 3.10 in external CI (#1269)
antonwolfy Jan 16, 2023
12e7bd5
Set minimum required versions & fix debug building (#1270)
antonwolfy Jan 16, 2023
9209351
Add support of NumPy 1.24 (#1276)
antonwolfy Jan 23, 2023
082fb92
Get rid of 'has_aspect_host' property in tests (#1274)
antonwolfy Jan 23, 2023
67e7f87
Add support of dpnp.less_equal() (#1275)
antonwolfy Jan 24, 2023
09a387a
Add support of comparison operations (#1278)
antonwolfy Jan 25, 2023
20defc5
Use eye() function from dpctl.tensor. (#1271)
npolina4 Jan 31, 2023
733b32c
Get rid of unsupported types in array creation tests (#1283)
antonwolfy Jan 31, 2023
744a3f2
Add support of logical comparison operations (#1280)
antonwolfy Feb 1, 2023
351c6a6
Add device and sycl_queue keyword arguments to random calls (#1277)
antonwolfy Feb 3, 2023
3228470
add __repr__
vtavana Jan 23, 2023
333b4fc
add __str__
vtavana Jan 24, 2023
67d5cb1
reviewer's comments
vtavana Feb 1, 2023
cb3421c
Fixed gh-1272 (#1287)
npolina4 Feb 7, 2023
9308f64
Support high=None in dpnp.randint() (#1284)
antonwolfy Feb 8, 2023
30d3ada
linter changes applied
oleksandr-pavlyk Feb 8, 2023
06533eb
Add operation __index__ and __complex__ (#1285)
antonwolfy Feb 9, 2023
e327dfb
Update tests with proper call of dpctl.SyclQueue() (#1290)
antonwolfy Feb 9, 2023
5018352
Merge branch 'master' into print_dpnp_array
oleksandr-pavlyk Feb 9, 2023
d1acfaf
Update minimum required versions of dependent components. (#1289)
antonwolfy Feb 9, 2023
0189d6b
Merge branch 'master' into print_dpnp_array
oleksandr-pavlyk Feb 9, 2023
863f587
dpnp.add() doesn't work properly with a scalar (#1288)
antonwolfy Feb 11, 2023
0f7420e
Merge pull request #1279 from IntelPython/print_dpnp_array
oleksandr-pavlyk Feb 13, 2023
03450eb
Add dlpack support with tests and docstrings
vlad-perevezentsev Feb 14, 2023
75695ce
Add a test for dlpack with dpt
vlad-perevezentsev Feb 14, 2023
4c158da
Fix remarks, add _create_from_usm_ndarray func and move tests to test…
vlad-perevezentsev Feb 15, 2023
439f2b5
Use tril() and triu() function from dpctl.tensor (#1286)
npolina4 Feb 16, 2023
103eb88
Merge branch 'master' into dlpack_support
antonwolfy Feb 16, 2023
a516f1c
dpnp.subtract() doesn't work properly with a scalar (#1292)
antonwolfy Feb 16, 2023
6640e9e
Merge pull request #1296 from vlad-perevezentsev/dlpack_support
oleksandr-pavlyk Feb 16, 2023
19715de
dpnp.divide() doesn't work properly with a scalar (#1295)
antonwolfy Feb 16, 2023
d22214c
Updae example3 building from debug build script (#1298)
antonwolfy Feb 17, 2023
7bddfbe
Remove temporary solution accepting CFD with equal SYCL context inste…
antonwolfy Feb 17, 2023
d7219e2
Intel LLVM is to use conda's gcc toolchain, sysroot and target librar…
antonwolfy Feb 18, 2023
4012c98
Tests are crashing if no default device (#1311)
antonwolfy Feb 21, 2023
307fceb
Setting version to 0.11.1 (#1308)
antonwolfy Feb 23, 2023
384302c
Update versions of external github actions (#1316)
antonwolfy Feb 24, 2023
4f8032d
Merge remote-tracking branch 'upstream/gold/2021' into merge_to_gold
antonwolfy Feb 24, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
sudo apt-get install -y nvidia-cuda-toolkit clinfo

- name: Checkout repo
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.3.0

# https://github.com/marketplace/actions/setup-miniconda
- name: Setup miniconda
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:

# https://github.com/marketplace/actions/doxygen-action
- name: Build backend docs
uses: mattnotmitt/[email protected].4
uses: mattnotmitt/[email protected].5
with:
working-directory: 'dpnp/backend/doc'

Expand All @@ -106,7 +106,7 @@ jobs:
if: |
!github.event.pull_request.head.repo.fork &&
(github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true) || github.event_name == 'push' && contains(github.ref, 'refs/tags/'))
uses: peaceiris/[email protected].0
uses: peaceiris/[email protected].2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: doc/_build/html/
16 changes: 8 additions & 8 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
access_token: ${{ github.token }}

- name: Checkout DPNP repo
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.3.0
with:
fetch-depth: 0

Expand All @@ -74,7 +74,7 @@ jobs:
run: conda install conda-build

- name: Cache conda packages
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.6
env:
CACHE_NUMBER: 1 # Increase to reset cache
with:
Expand All @@ -89,7 +89,7 @@ jobs:
run: conda build --no-test --python ${{ matrix.python }} ${{ env.CHANNELS }} conda-recipe

- name: Upload artifact
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
path: ${{ env.pkg-path-in-channel }}
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}'

- name: Cache conda packages
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.6
env:
CACHE_NUMBER: 1 # Increase to reset cache
with:
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
path: ${{ env.pkg-path-in-channel }}
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
run: more lockfile

- name: Cache conda packages
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.6
env:
CACHE_NUMBER: 1 # Increase to reset cache
with:
Expand Down Expand Up @@ -398,7 +398,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/setup-python@v4.3.0
- uses: actions/checkout@v3.3.0
- uses: actions/setup-python@v4.5.0
with:
python-version: '3.10'
- uses: pre-commit/[email protected]