-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/tokenizer-fix-decode' into token…
…izer-fix-decode
- Loading branch information
Showing
22 changed files
with
3,004 additions
and
3,867 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: OpenVINO Code Extension Workflow | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize] | ||
paths: | ||
- 'modules/openvino_code/**' | ||
- '.github/workflows/openvino_code.yml' | ||
|
||
concurrency: | ||
group: ${{ github.head_ref || github.ref_name }}-openvino_code | ||
cancel-in-progress: true | ||
|
||
defaults: | ||
run: | ||
working-directory: ./modules/openvino_code | ||
|
||
jobs: | ||
check_extension: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16.x' | ||
cache: 'npm' | ||
cache-dependency-path: modules/openvino_code/package-lock.json | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Run Lint | ||
run: npm run lint:all | ||
|
||
check_server: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.8' | ||
cache: 'pip' | ||
|
||
- name: Install dependencies | ||
run: pip install ruff black | ||
|
||
- name: Lint with ruff and Black | ||
run: | | ||
cd server | ||
ruff check . | ||
black --check . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4,112 changes: 1,264 additions & 2,848 deletions
4,112
.../nvidia_plugin/tests/functional/shared_tests_instances/single_layer_tests/convolution.cpp
Large diffs are not rendered by default.
Oops, something went wrong.
48 changes: 0 additions & 48 deletions
48
...lugin/tests/functional/shared_tests_instances/single_layer_tests/convolution_asym_pad.cpp
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.