Skip to content
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

Update numpy requirement from <2.2.0,>=1.16.6 to >=1.16.6,<2.3.0 in /src/bindings/python #250

Open
wants to merge 468 commits into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

Updates the requirements on numpy to permit the latest version.

Release notes

Sourced from numpy's releases.

2.2.0 (Dec 8, 2024)

NumPy 2.2.0 Release Notes

The NumPy 2.2.0 release is quick release that brings us back into sync with the usual twice yearly release cycle. There have been an number of small cleanups, as well as work bringing the new StringDType to completion and improving support for free threaded Python. Highlights are:

  • New functions matvec and vecmat, see below.
  • Many improved annotations.
  • Improved support for the new StringDType.
  • Improved support for free threaded Python
  • Fixes for f2py

This release supports Python versions 3.10-3.13.

Deprecations

  • _add_newdoc_ufunc is now deprecated. ufunc.__doc__ = newdoc should be used instead.

    (gh-27735)

Expired deprecations

  • bool(np.array([])) and other empty arrays will now raise an error. Use arr.size > 0 instead to check whether an array has no elements.

    (gh-27160)

Compatibility notes

  • numpy.cov now properly transposes single-row (2d array) design matrices when rowvar=False. Previously, single-row design matrices would return a scalar in this scenario, which is not correct, so this is a behavior change and an array of the appropriate shape will now be returned.

    (gh-27661)

New Features

  • New functions for matrix-vector and vector-matrix products

    Two new generalized ufuncs were defined:

    • numpy.matvec - matrix-vector product, treating the arguments as stacks of matrices and column vectors,

... (truncated)

Changelog

Sourced from numpy's changelog.

This is a walkthrough of the NumPy 2.1.0 release on Linux, modified for building with GitHub Actions and cibuildwheels and uploading to the anaconda.org staging repository for NumPy <https://anaconda.org/multibuild-wheels-staging/numpy>_. The commands can be copied into the command line, but be sure to replace 2.1.0 by the correct version. This should be read together with the :ref:general release guide <prepare_release>.

Facility preparation

Before beginning to make a release, use the requirements/*_requirements.txt files to ensure that you have the needed software. Most software can be installed with pip, but some will require apt-get, dnf, or whatever your system uses for software. You will also need a GitHub personal access token (PAT) to push the documentation. There are a few ways to streamline things:

  • Git can be set up to use a keyring to store your GitHub personal access token. Search online for the details.
  • You can use the keyring app to store the PyPI password for twine. See the online twine documentation for details.

Prior to release

Add/drop Python versions

When adding or dropping Python versions, three files need to be edited:

  • .github/workflows/wheels.yml # for github cibuildwheel
  • tools/ci/cirrus_wheels.yml # for cibuildwheel aarch64/arm64 builds
  • pyproject.toml # for classifier and minimum version check.

Make these changes in an ordinary PR against main and backport if necessary. Add [wheel build] at the end of the title line of the commit summary so that wheel builds will be run to test the changes. We currently release wheels for new Python versions after the first Python rc once manylinux and cibuildwheel support it. For Python 3.11 we were able to release within a week of the rc1 announcement.

Backport pull requests

Changes that have been marked for this release must be backported to the maintenance/2.1.x branch.

Update 2.1.0 milestones

... (truncated)

Commits
  • e7a123b Merge pull request #27928 from charris/prepare-2.2.0
  • d97d071 MAINT: Try fixing MacOS cirrus build failures. [wheel build]
  • 1ed7b67 REL: Prepare for the NumPy 2.2.0 release [wheel build]
  • fd9e7ef Merge pull request #27916 from charris/backport-27915
  • 2e0941f MAINT: Bump actions/cache from 4.1.2 to 4.2.0
  • 013656d Merge pull request #27912 from charris/backport-27877
  • 7895ba6 Merge pull request #27913 from charris/backport-27896
  • ee8d1cd PERF: improve multithreaded ufunc scaling (#27896)
  • 77fff6b ENH: Refactor __qualname__ across API (#27877)
  • b30a338 Merge pull request #27911 from charris/backport-27891
  • Additional commits viewable in compare view

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

akashchi and others added 30 commits November 4, 2024 14:15
### Details:
- Added support for bf16 LoRA adapters
- Minor debug code cleanup
### Tickets:
 - *[153069](https://jira.devtools.intel.com/browse/CVS-153069)*
…27386)

### Details:
- Fix OPENVINO_OP macro for STFT with opset15 (without that it is
registered and serialized with version="extension" by default, and can't
be deserialized)
- It follows all of the other ops OPENVINO_OP macro, the "opset15" has
been missed for STFT
Example:
https://github.com/openvinotoolkit/openvino/blob/4d8ff86bd2e853b84a28acd2ece1836d28523f9e/src/core/include/openvino/op/slice_scatter.hpp#L17
 
 

### Tickets:
 - 156667
### Details:
- Fix error found in mixtral model for shape [8, 2, 8] and permute order
[2, 1, 0], which was optimized out unexpectedly
 - Reimplemented skipping algorithm 

### Tickets:
 - 154591
### Details:
 - *Remove unused crop layers created by VariadicSplit.*


### Tickets:
 - *153542*
…lkit#27376)

Flux.1 text_encoder_2_int4 model has unusual WC pattern. (Needs extra
multiply)
Add this in the target matcher.


### Tickets:
 - *154194*

---------

Signed-off-by: hyunback <[email protected]>
### Details:
- Primitives can be opt-out. In that case, it does not have kernel data.

### Tickets:
 - 156592
### Details:
 - Add script to fetch static
 - Update run instructions
 - Remove logic of downloading model from notebooks
 - Put image manipulation logic in one file
 - Refactor notebooks structure
 - Remove opencv-wasm dependency

### Tickets:
 - 154015
…otoolkit#27374)

**Details:** Provide better validation for TopKV2 and stabilize test

**Ticket:** TBD

---------

Signed-off-by: Kazantsev, Roman <[email protected]>
…otoolkit#27340)

### Details:
- *This PR extends LoraFusion transformation: convert on states support
is added*
 - *The corresponding transformation tests are extended*
- *Fixed a critical bug in the memory reuse between the LoRA subgraph
and the main CPU graph*

### Tickets:
 - CVS-155112
 - CVS-153035

---------

Co-authored-by: Maksim Kutakov <[email protected]>
Updating the `Interactive Tutorials` section.
### Details:
- move dependency for torchvision preprocessing to the part where it
tests
 - update numpy upperbound for testing PyOV & numpy 2.1

### Tickets:
 - *ticket-id*
### Details:
 - Add image padding support in PrePostProcessor for C API

### Continuation of PR:
- openvinotoolkit#26730 

### Tickets:
 - CVS-152252

---------

Co-authored-by: panhaiqi <[email protected]>
### Details:
 - Remove LSTM Sequence v0 operator

### Tickets:
 - CVS-156182

---------

Signed-off-by: Pawel Raasz <[email protected]>
### Details:
 - Remove legacy name from tensor descriptor

### Related PR:
- openvinotoolkit#26855

### Tickets:
 - CVS-156182

---------

Signed-off-by: Pawel Raasz <[email protected]>
### Details:
 - Use commit action versions as security requirement

### Tickets:
 - *ticket-id*
…kit#27385)

### Details:
- Moved pipeline to ubuntu 20.04 image
- Enabled sccache
-
### Tickets:
 -156658
…vinotoolkit#27375)

**Details:** Check OV and FW outputs shapes and types in layer tests

**Ticket:** TBD

---------

Signed-off-by: Kazantsev, Roman <[email protected]>
### Details:
 - Removed deprecated and not used element Type constructor

### Tickets:
 - CVS-156179
…oolkit#27355)

### Details:
- Align LSTM sequence version in specification, after LSTM sequence v0
removal from OV opset.

### Blocked by:
- openvinotoolkit#27330 

### Tickets:
 - CVS-156182
)

### Details:
 - Partial fix for https://jira.devtools.intel.com/browse/CVS-156022
 - explicit call for release memory is required

### Tickets:
 - *ticket-id*
…27339)

### Details:
 - Remove deprecated members of Concat operator:
   * get_concatenation_axis
   * set_concatenation_axis

### Tickets:
 - CVS-156181
### Details:
- *Disable crop fusing that was enabled in the
openvinotoolkit#26951

### Tickets:
 - *[156367](https://jira.devtools.intel.com/browse/CVS-156367)*
### Details:
 - Increased RAM

### Tickets:
 - *156361*

---------

Co-authored-by: Alina Kladieva <[email protected]>
### Details:
- add a test where exported model saved to file and then imported from
file
- fix a problem with `inc_ref` and `dec_ref` when python callbacks are
passed

### Tickets:
 - *ticket-id*
Bumps
[codecov/codecov-action](https://github.com/codecov/codecov-action) from
4.5.0 to 4.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/codecov/codecov-action/releases">codecov/codecov-action's
releases</a>.</em></p>
<blockquote>
<h2>v4.6.0</h2>
<h2>What's Changed</h2>
<ul>
<li>build(deps): bump github/codeql-action from 3.25.8 to 3.25.10 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1481">codecov/codecov-action#1481</a></li>
<li>build(deps): bump actions/checkout from 4.1.6 to 4.1.7 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1480">codecov/codecov-action#1480</a></li>
<li>build(deps-dev): bump ts-jest from 29.1.4 to 29.1.5 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1479">codecov/codecov-action#1479</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
7.13.0 to 7.13.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1485">codecov/codecov-action#1485</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 7.13.0 to 7.13.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1484">codecov/codecov-action#1484</a></li>
<li>build(deps-dev): bump typescript from 5.4.5 to 5.5.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1490">codecov/codecov-action#1490</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
7.13.1 to 7.14.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1493">codecov/codecov-action#1493</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 7.13.1 to 7.14.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1492">codecov/codecov-action#1492</a></li>
<li>build(deps): bump github/codeql-action from 3.25.10 to 3.25.11 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1496">codecov/codecov-action#1496</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 7.14.1 to 7.15.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1501">codecov/codecov-action#1501</a></li>
<li>build(deps-dev): bump typescript from 5.5.2 to 5.5.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1500">codecov/codecov-action#1500</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
7.14.1 to 7.15.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1499">codecov/codecov-action#1499</a></li>
<li>build(deps): bump actions/upload-artifact from 4.3.3 to 4.3.4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1502">codecov/codecov-action#1502</a></li>
<li>build(deps-dev): bump ts-jest from 29.1.5 to 29.2.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1504">codecov/codecov-action#1504</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 7.15.0 to 7.16.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1503">codecov/codecov-action#1503</a></li>
<li>build(deps-dev): bump ts-jest from 29.2.0 to 29.2.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1507">codecov/codecov-action#1507</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
7.15.0 to 7.16.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1505">codecov/codecov-action#1505</a></li>
<li>build(deps): bump github/codeql-action from 3.25.11 to 3.25.12 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1509">codecov/codecov-action#1509</a></li>
<li>chore(ci): restrict scorecards to codecov/codecov-action by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1512">codecov/codecov-action#1512</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 7.16.0 to 7.16.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1514">codecov/codecov-action#1514</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
7.16.0 to 7.16.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1513">codecov/codecov-action#1513</a></li>
<li>test: <code>versionInfo</code> by <a
href="https://github.com/marcobiedermann"><code>@​marcobiedermann</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1407">codecov/codecov-action#1407</a></li>
<li>build(deps-dev): bump ts-jest from 29.2.2 to 29.2.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1515">codecov/codecov-action#1515</a></li>
<li>build(deps): bump github/codeql-action from 3.25.12 to 3.25.13 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1516">codecov/codecov-action#1516</a></li>
<li>build(deps-dev): bump typescript from 5.5.3 to 5.5.4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1521">codecov/codecov-action#1521</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
7.16.1 to 7.17.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1520">codecov/codecov-action#1520</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
7.17.0 to 7.18.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1528">codecov/codecov-action#1528</a></li>
<li>build(deps): bump github/codeql-action from 3.25.13 to 3.25.15 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1526">codecov/codecov-action#1526</a></li>
<li>build(deps): bump ossf/scorecard-action from 2.3.3 to 2.4.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1525">codecov/codecov-action#1525</a></li>
<li>build(deps-dev): bump ts-jest from 29.2.3 to 29.2.4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1532">codecov/codecov-action#1532</a></li>
<li>build(deps): bump actions/upload-artifact from 4.3.4 to 4.3.5 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1534">codecov/codecov-action#1534</a></li>
<li>build(deps): bump github/codeql-action from 3.25.15 to 3.26.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1542">codecov/codecov-action#1542</a></li>
<li>build(deps): bump actions/upload-artifact from 4.3.5 to 4.3.6 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1541">codecov/codecov-action#1541</a></li>
<li>ref: Tidy up types and remove string coercion by <a
href="https://github.com/nicholas-codecov"><code>@​nicholas-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1536">codecov/codecov-action#1536</a></li>
<li>build(deps-dev): bump <code>@​octokit/webhooks-types</code> from
3.77.1 to 7.5.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1545">codecov/codecov-action#1545</a></li>
<li>build(deps): bump github/codeql-action from 3.26.0 to 3.26.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1551">codecov/codecov-action#1551</a></li>
<li>feat: pass tokenless value as branch override by <a
href="https://github.com/joseph-sentry"><code>@​joseph-sentry</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1511">codecov/codecov-action#1511</a></li>
<li>build(deps): bump actions/upload-artifact from 4.3.6 to 4.4.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1563">codecov/codecov-action#1563</a></li>
<li>Create makefile.yml by <a
href="https://github.com/Hawthorne001"><code>@​Hawthorne001</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1555">codecov/codecov-action#1555</a></li>
<li>build(deps): bump github/codeql-action from 3.26.2 to 3.26.6 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1562">codecov/codecov-action#1562</a></li>
<li>build(deps-dev): bump ts-jest from 29.2.4 to 29.2.5 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1557">codecov/codecov-action#1557</a></li>
<li>Spell <code>evenName</code> in the logs correctly by <a
href="https://github.com/webknjaz"><code>@​webknjaz</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1560">codecov/codecov-action#1560</a></li>
<li>build(deps-dev): bump typescript from 5.5.4 to 5.6.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1566">codecov/codecov-action#1566</a></li>
<li>build(deps-dev): bump <code>@​types/jest</code> from 29.5.12 to
29.5.13 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1567">codecov/codecov-action#1567</a></li>
<li>build(deps): bump github/codeql-action from 3.26.6 to 3.26.7 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1569">codecov/codecov-action#1569</a></li>
<li>build(deps-dev): bump eslint from 8.57.0 to 8.57.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1571">codecov/codecov-action#1571</a></li>
<li>build(deps): bump github/codeql-action from 3.26.7 to 3.26.8 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1575">codecov/codecov-action#1575</a></li>
<li>build(deps-dev): bump <code>@​vercel/ncc</code> from 0.38.1 to
0.38.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1577">codecov/codecov-action#1577</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/codecov/codecov-action/commit/b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238"><code>b9fd7d1</code></a>
chore(release):4.6.0 (<a
href="https://redirect.github.com/codecov/codecov-action/issues/1587">#1587</a>)</li>
<li><a
href="https://github.com/codecov/codecov-action/commit/6f7612c64d7caf2e5f3d18f51fdfc167708e5e4d"><code>6f7612c</code></a>
fix: bump eslint parser deps (<a
href="https://redirect.github.com/codecov/codecov-action/issues/1586">#1586</a>)</li>
<li><a
href="https://github.com/codecov/codecov-action/commit/26c7e28d7e3a90542b75f62e4f1e4191eb53ad20"><code>26c7e28</code></a>
build(deps): bump actions/checkout from 4.1.7 to 4.2.0 (<a
href="https://redirect.github.com/codecov/codecov-action/issues/1583">#1583</a>)</li>
<li><a
href="https://github.com/codecov/codecov-action/commit/6f744f78de377f4f149ffc93565e64c8a670f536"><code>6f744f7</code></a>
build(deps): bump github/codeql-action from 3.26.8 to 3.26.9 (<a
href="https://redirect.github.com/codecov/codecov-action/issues/1584">#1584</a>)</li>
<li><a
href="https://github.com/codecov/codecov-action/commit/543c3d42fc76502218ecdadc04e65dbd2640a67a"><code>543c3d4</code></a>
chore: fix typo of OSS (<a
href="https://redirect.github.com/codecov/codecov-action/issues/1578">#1578</a>)</li>
<li><a
href="https://github.com/codecov/codecov-action/commit/e379426d37e685eaea0ce29fe26dc3579b027c63"><code>e379426</code></a>
build(deps-dev): bump <code>@​vercel/ncc</code> from 0.38.1 to 0.38.2
(<a
href="https://redirect.github.com/codecov/codecov-action/issues/1577">#1577</a>)</li>
<li><a
href="https://github.com/codecov/codecov-action/commit/42656e4cb1f70386950b0ec8a4421ee9ba06526e"><code>42656e4</code></a>
build(deps): bump github/codeql-action from 3.26.7 to 3.26.8 (<a
href="https://redirect.github.com/codecov/codecov-action/issues/1575">#1575</a>)</li>
<li><a
href="https://github.com/codecov/codecov-action/commit/2296b6ba9eee85301a5ef2c7c2cdc738faf1f939"><code>2296b6b</code></a>
build(deps-dev): bump eslint from 8.57.0 to 8.57.1 (<a
href="https://redirect.github.com/codecov/codecov-action/issues/1571">#1571</a>)</li>
<li><a
href="https://github.com/codecov/codecov-action/commit/bd77bc323cd6112f528fe493c071212824878695"><code>bd77bc3</code></a>
build(deps): bump github/codeql-action from 3.26.6 to 3.26.7 (<a
href="https://redirect.github.com/codecov/codecov-action/issues/1569">#1569</a>)</li>
<li><a
href="https://github.com/codecov/codecov-action/commit/180b964407756d9f1d1629a946b1bda4e5a76d46"><code>180b964</code></a>
build(deps-dev): bump <code>@​types/jest</code> from 29.5.12 to 29.5.13
(<a
href="https://redirect.github.com/codecov/codecov-action/issues/1567">#1567</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/codecov/codecov-action/compare/e28ff129e5465c2c0dcc6f003fc735cb6ae0c673...b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=codecov/codecov-action&package-manager=github_actions&previous-version=4.5.0&new-version=4.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

> **Note**
> Automatic rebases have been disabled on this pull request as it has
been open for over 30 days.

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AsyaPronina and others added 26 commits November 29, 2024 13:02
### Details:
 - *Fixed `AUTO_CAUSES_COPY` issues found in NPUW by Coverity*
 
### Tickets:
 - *EISW-146516*
### Details:
- Keep tensors for decompression cut-off in a host-side closure, not
lazy tensor - so they are not uploaded to bank & detached after that
  - This leads to 2x memory consumption and the subsequent crash
- Relaxed requirements to enable the unfolded execution - so it may
still happen if there's single-call functions that require DCOFF
(previously having those would reject this unfolded path

### Tickets:
 - C-155523 (most likely, related to)

@smirnov-alexey please take care of the release branch cherry-pick
### Details:
- Fixed invalid memory reuse that caused accuracy issue for SD3
transformer model in case of iGPUs

### Tickets:
 - *CVS-157962*

Signed-off-by: Vladimir Paramuzov <[email protected]>
…7821)

### Details:
 - Update docs related to KV-cache quantization on GPU
- Allow to use `element::u8` as data type for KV-cache quantization to
be aligned with CPU Plugin
### Details:
 - *item1*
 - *...*

### Tickets:
 - *ticket-id*
### Details:
 - *Check `runtim_options` from IR model*
- *Set `KV_CACHE_PRECISION` & `DYNAMIC_QUANTIZATION_GROUP_SIZE`* from
`runtim_options` of IR model
 - Example IR model with  `runtim_options`
- openvinotoolkit#27778 to
releases/2024/5
```
        <rt_info>
                <runtime_options>
                        <KV_CACHE_PRECISION value="f16" />
                </runtime_options>
        </rt_info>
```

### Tickets:
 - *CVS-157571*
### Details:
 - *item1*
 - *...*
 
### Related PRs:
- GenAI: *openvinotoolkit/openvino.genai#1240
### Tickets:
 - *ticket-id*

---------

Co-authored-by: TolyaTalamanov <[email protected]>
Bumps [attrs](https://github.com/sponsors/hynek) from 23.2.0 to 24.2.0.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/sponsors/hynek/commits">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=attrs&package-manager=pip&previous-version=23.2.0&new-version=24.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

> **Note**
> Automatic rebases have been disabled on this pull request as it has
been open for over 30 days.

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ilya Lavrenov <[email protected]>
### Details:
 - *Fix invalid output memory usages by reset output  memory*
- *At the previous iteration, gather primitive has output memory which
is refer input memory because it is optimized out but it also use input
memory as output without reallocation memory at the next iteration which
turns to executed from optimized out. it makes memory corruption issue.*
- *Reset output memory when the current prim status is changed from
optimized / skipped to executed*

![image](https://github.com/user-attachments/assets/7fa53f2b-80ec-4fa2-8e4d-b3df0f052c51)


### Tickets:
 - *154591*
…kit#27629)

### Details:
- The issue only happens is fp16 model and even fp32 model if a hint for
fp32 is not set.
- The NaN starts to produce after the comit 27780a6 which reverts the
fake alignment. *CVS-155861*
 - 


### Tickets:
 - *CVS-156289*
…nsor (openvinotoolkit#27452)

### Details:
- *Supported repacking of first input BrgemmCPU in AMX case only of the
tensor `[M_blk, K_tail]` in `BrgemmAMXKernelExecutor`*
- *Add offset alignment with cache line size in dynamic case and replace
32 bytes with 64 bytes*

### Tickets:
 - *153388*


### Prerequisites:
- [x] openvinotoolkit#26957
… run on all platforms (openvinotoolkit#27844)

**Details:** Decouple tests for Logical binary ops into separate suite
and run on all platforms

**Ticket:** TBD

Signed-off-by: Kazantsev, Roman <[email protected]>
### Details:
- *The gemm onednn requires non-transposed output shape and transposed
order info. But the current impl uses output-transposed shape itself. It
needs to use non-transposed output shape.*

### Tickets:
 - *155222*
### Details:
 - *Support converting models quantized with AWQ algorithm from hf*

### Tickets:
 - *CVS-136653*

---------

Signed-off-by: Maxim Vafin <[email protected]>
…toolkit#27820)

Will require switching env.GITHUB_WORKSPACE workaround to
github.workspace mount in pipelines using OV provider

Signed-off-by: Alina Kladieva <[email protected]>
Co-authored-by: Mikhail Ryzhov <[email protected]>
### Details:
 - Fix OVC to not override logger if `verbose` is turned on.

### Tickets:
 - CVS-152753
### Details:
This PR introduces a workflow with syntax checks for GitHub Actions
Workflows. There's only `semgrep` scan for now, but more can be added
later, if needed
### Details:
- Switch Docker images builds to smaller runners
- Switch compilation to newer generation of ARM VMs
- Switch tests to newer generation of ARM VMs and/or smaller runners,
where applicable
Fixing formatting issues.

Signed-off-by: sgolebiewski-intel <[email protected]>
…#27854)

### Details:
 - Avoids exceptions from dtors.

### Tickets:
 - CVS-157159

---------

Signed-off-by: Tomasz Jankowski <[email protected]>
…t#27750)

### Details:
 - Align internal GLU shape_infer
 - Move shape_infer from the op to the shape_inference directory 
 - Update shape_infer to use template as a shape type
- Remove VariadicSplit object creation to call variadic split
shape_infer
 - Register GLU shape_infer for CPU
 - Update GPU calc_output to use common GLU shape_infer
 
### Tickets:
 - 157615
Updates the requirements on [numpy](https://github.com/numpy/numpy) to permit the latest version.
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.16.6...v2.2.0)

---
updated-dependencies:
- dependency-name: numpy
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.