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

Implemented Tensor.setShape in Node.js API #29842

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

Conversation

sanleo-wq
Copy link

This fixes #29757
Implemented Tensor.setShape() in Node.js API

Updated TypeScript definitions in addon.ts

Added unit tests in tensor.test.js

Validated input parameters for setShape()

Changes:
Exposed ov::Tensor::set_shape method to JavaScript

Added setShape(shape: number[]) to Tensor interface

Implemented corresponding tests for different shape inputs

@sanleo-wq sanleo-wq requested a review from a team as a code owner March 31, 2025 13:32
@github-actions github-actions bot added the category: JS API OpenVino JS API Bindings label Mar 31, 2025
@sys-openvino-ci sys-openvino-ci added the ExternalPR External contributor label Mar 31, 2025
akashchi and others added 10 commits April 1, 2025 10:11
…tage (openvinotoolkit#29672)

### Details:
- *To reduce overheads in runtime, we moved repacking of second constant
input of `Brgemm` from inference stage to model compilation stage.*
 - *Introduced helper `utils::get_planar_layout`*
 
### Tickets:
 - *CVS-164529*

---------

Co-authored-by: Vladislav Golubev <vladislav.golubev@intel.com>
…nvinotoolkit#29825)

### Details:
Remove `-Warray-bounds` warning suppression flag, fix reported warnings

### Tickets:
 - N/A
…kit#29442)

### Details:
 - *Gather node support mixed precision real16 to f32*
 - *Fuse precision convert to gather node in cpu plugin transformation*
- *The convert in this pattern should be skipped in snippets
tokenization*

### Tickets:
 - *CVS-163987*
… not load tokenizer using specified model ID or path. OpenVINO tokenizer/detokenizer models won't be generated. (openvinotoolkit#29397)

### Details:

During test LLM models with NPU, I followed below configuration from
[page](https://docs.openvino.ai/nightly/openvino-workflow-generative/inference-with-genai/inference-with-genai-on-npu.html).

However, I met below issue during convert the HF tokenizer to Openvino
tokenizer.
```bash
Could not load tokenizer using specified model ID or path. OpenVINO tokenizer/detokenizer models won't be generated. 
```

After some test, we found the issue can be solved by update the
optimum-intel to `1.22.0` and that's why I created a PR for this.

Co-authored-by: Karol Blaszczak <karol.blaszczak@intel.com>
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
### Details:
Add OV Transformation statistics doc file
Fixed links

### Tickets:
 - *CVS-151320*
…inotoolkit#29839)

### Details:
Amendment for openvinotoolkit#29817

Disable both batch1 and batch2 tests on ConvPoolReul_i32, since there
are two failing tests.

### Tickets:
 - 164799
Add multiple Multiply pattern instead of Pow.


### Tickets:
 - *155289*

---------

Signed-off-by: hyunback <hyunback.kim@intel.com>
@sanleo-wq sanleo-wq requested review from a team as code owners April 1, 2025 08:12
@sanleo-wq sanleo-wq requested review from tsavina and itikhono and removed request for a team April 1, 2025 08:12
@github-actions github-actions bot added category: Core OpenVINO Core (aka ngraph) category: IE Tests OpenVINO Test: plugins and common labels Apr 1, 2025
@github-actions github-actions bot added category: CPU OpenVINO CPU plugin category: build OpenVINO cmake script / infra category: transformations OpenVINO Runtime library - Transformations category: CI OpenVINO public CI category: docs OpenVINO documentation github_actions Pull requests that update GitHub Actions code category: NPU OpenVINO NPU plugin category: NPUW NPUW plugin labels Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
category: build OpenVINO cmake script / infra category: CI OpenVINO public CI category: Core OpenVINO Core (aka ngraph) category: CPU OpenVINO CPU plugin category: docs OpenVINO documentation category: IE Tests OpenVINO Test: plugins and common category: JS API OpenVino JS API Bindings category: NPU OpenVINO NPU plugin category: NPUW NPUW plugin category: transformations OpenVINO Runtime library - Transformations ExternalPR External contributor github_actions Pull requests that update GitHub Actions code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Good First Issue]: Enable Tensor.setShape() method