Skip to content

Commit 04212be

Browse files
committed
resolve conflict
2 parents f0380c4 + 79847eb commit 04212be

File tree

337 files changed

+21149
-17206
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

337 files changed

+21149
-17206
lines changed

.github/workflows/debian_10_arm.yml

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ jobs:
122122
runner: 'aks-linux-16-cores-arm'
123123
image: ${{ fromJSON(needs.docker.outputs.images).ov_test.debian_10_arm }}
124124
python-version: '3.7'
125+
scope: ${{ github.event_name == 'workflow_dispatch' && 'nightly' || 'smoke' }}
125126

126127
Overall_Status:
127128
name: ci/gha_overall_status_debian_10_arm

.github/workflows/job_build_windows.yml

+18-2
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@ jobs:
158158
- name: Configure Developer Command Prompt for Microsoft Visual C++
159159
uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
160160
with:
161-
toolset: 14.40 # v2022
161+
toolset: 14.42 # v2022
162162

163163
- name: Set SSL_CERT_FILE for model downloading for unit tests
164164
run: echo SSL_CERT_FILE=$(python3 -m certifi) >> $env:GITHUB_ENV
165165

166166
- name: CMake configure
167-
run: cmake -S ${{ env.OPENVINO_REPO }} -B ${{ env.BUILD_DIR }} ${{ inputs.cmake-options }} -DCMAKE_CXX_FLAGS="/Zi" -DCMAKE_C_FLAGS="/Zi" -DCMAKE_SHARED_LINKER_FLAGS="/DEBUG" -DCMAKE_MODULE_LINKER_FLAGS="/DEBUG"
167+
run: cmake -S ${{ env.OPENVINO_REPO }} -B ${{ env.BUILD_DIR }} ${{ inputs.cmake-options }}
168168

169169
- name: Clean ccache stats
170170
run: '& ccache --zero-stats'
@@ -264,6 +264,15 @@ jobs:
264264
}
265265
Compress-Archive @compress
266266
267+
# Setup Python 3.11 as the default one
268+
- name: Setup Python ${{ env.PYTHON_VERSION }}
269+
uses: ./openvino/.github/actions/setup_python
270+
with:
271+
version: ${{ env.PYTHON_VERSION }}
272+
pip-cache-path: ${{ env.PIP_CACHE_PATH }}
273+
should-setup-pip-paths: 'true'
274+
self-hosted-runner: 'true'
275+
267276
- name: CMake configure, build and install - OpenVINO JS API
268277
if: ${{ fromJSON(inputs.affected-components).JS_API }}
269278
run: |
@@ -285,6 +294,13 @@ jobs:
285294
}
286295
Compress-Archive @compress
287296
297+
- name: Cmake & Build - OpenVINO Contrib
298+
run: |
299+
cmake -DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" -S ${{ env.OPENVINO_REPO }} -B ${{ env.BUILD_DIR }} `
300+
-DOPENVINO_EXTRA_MODULES="${{ env.OPENVINO_CONTRIB_REPO }}/modules/custom_operations;${{ env.OPENVINO_CONTRIB_REPO }}/modules/java_api" `
301+
-DENABLE_WHEEL=OFF
302+
cmake --build ${{ env.BUILD_DIR }} --parallel $ENV:NUMBER_OF_PROCESSORS
303+
288304
#
289305
# Upload build artifacts and logs
290306
#

.github/workflows/job_cpu_functional_tests.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ on:
1616
description: 'Python version to setup. E.g., "3.11"'
1717
type: string
1818
required: true
19+
scope:
20+
description: 'Defines tests scope {nightly | smoke}'
21+
type: string
22+
required: false
23+
default: 'smoke'
1924

2025
permissions: read-all
2126

@@ -35,6 +40,7 @@ jobs:
3540
INSTALL_TEST_DIR: ${{ github.workspace }}/install/tests
3641
PARALLEL_TEST_SCRIPT: ${{ github.workspace }}/install/tests/functional_test_utils/layer_tests_summary/run_parallel.py
3742
PARALLEL_TEST_CACHE: ${{ github.workspace }}/install/tests/test_cache.lst
43+
GTEST_FILTER: ${{ inputs.scope == 'nightly' && '' || '--gtest_filter=smoke' }}
3844
steps:
3945
- name: Download OpenVINO package
4046
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
@@ -106,8 +112,8 @@ jobs:
106112
# Needed as ze_loader.so is under INSTALL_TEST_DIR
107113
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${INSTALL_TEST_DIR}
108114
109-
python3 ${PARALLEL_TEST_SCRIPT} -e ${INSTALL_TEST_DIR}/ov_cpu_func_tests -c ${PARALLEL_TEST_CACHE} -w ${INSTALL_TEST_DIR} -s suite -rf 0 -- --gtest_print_time=1 --gtest_filter=*smoke*
110-
timeout-minutes: 25
115+
python3 ${PARALLEL_TEST_SCRIPT} -e ${INSTALL_TEST_DIR}/ov_cpu_func_tests -c ${PARALLEL_TEST_CACHE} -w ${INSTALL_TEST_DIR} -s suite -rf 0 -- --gtest_print_time=1 ${{ env.GTEST_FILTER }}
116+
timeout-minutes: ${{ inputs.scope == 'nightly' && 125 || 25 }}
111117

112118
- name: Save tests execution time
113119
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2

.github/workflows/job_samples_tests.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
INSTALL_TEST_DIR: ${{ github.workspace }}/install/tests
3434
INSTALL_WHEELS_DIR: ${{ github.workspace }}/install/wheels
3535
BUILD_DIR: ${{ github.workspace }}/build
36+
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
3637
steps:
3738
- name: Download OpenVINO artifacts (tarballs)
3839
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
@@ -88,27 +89,22 @@ jobs:
8889
if: runner.os == 'Windows'
8990
uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
9091
with:
91-
toolset: 14.40 # v2022
92+
toolset: 14.42 # v2022
9293

9394
- name: Build cpp samples
9495
run: $INSTALL_DIR/samples/cpp/build_samples.sh -i $INSTALL_DIR -b $BUILD_DIR/cpp_samples
95-
env:
96-
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
9796

9897
- name: Build cpp samples - Clang
9998
if: runner.os == 'Linux'
10099
run: |
101100
apt-get update && apt-get install -y clang
102101
$INSTALL_DIR/samples/cpp/build_samples.sh -i $INSTALL_DIR -b $BUILD_DIR/cpp_samples_clang
103102
env:
104-
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
105103
CC: clang
106104
CXX: clang++
107105

108106
- name: Build c samples
109107
run: $INSTALL_DIR/samples/c/build_samples.sh -i $INSTALL_DIR -b $BUILD_DIR/c_samples
110-
env:
111-
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
112108

113109
#
114110
# Tests

.github/workflows/linux_arm64.yml

+1
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ jobs:
223223
runner: 'aks-linux-16-cores-arm'
224224
image: ${{ fromJSON(needs.docker.outputs.images).ov_test.ubuntu_20_04_arm64 }}
225225
python-version: '3.11'
226+
scope: ${{ github.event_name == 'workflow_dispatch' && 'nightly' || 'smoke' }}
226227

227228
TensorFlow_Models_Tests:
228229
name: TensorFlow Models tests

.github/workflows/linux_conditional_compilation.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ jobs:
9595
CMAKE_GENERATOR: 'Ninja Multi-Config'
9696
CMAKE_CXX_COMPILER_LAUNCHER: sccache
9797
CMAKE_C_COMPILER_LAUNCHER: sccache
98+
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
9899
SCCACHE_IGNORE_SERVER_IO_ERROR: 1
99100
SCCACHE_SERVER_PORT: 35555
100101
SCCACHE_ERROR_LOG: /__w/openvino/sccache_log.txt
@@ -163,7 +164,6 @@ jobs:
163164
-DENABLE_CPPLINT=OFF \
164165
-DENABLE_CLANG_TIDY=ON \
165166
-DENABLE_NCC_STYLE=OFF \
166-
-DCMAKE_COMPILE_WARNING_AS_ERROR=ON \
167167
-DENABLE_PROFILING_ITT=ON \
168168
-DSELECTIVE_BUILD=COLLECT \
169169
-DENABLE_FASTER_BUILD=ON \
@@ -188,13 +188,11 @@ jobs:
188188
189189
- name: Build C++ samples - OpenVINO build tree
190190
run: |
191-
cmake -G "${{ env.CMAKE_GENERATOR }}" -DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DOpenVINO_DIR=${BUILD_DIR} -S ${INSTALL_DIR}/samples/cpp -B ${BUILD_DIR}/cpp_samples
191+
cmake -G "${{ env.CMAKE_GENERATOR }}" -DOpenVINO_DIR=${BUILD_DIR} -S ${INSTALL_DIR}/samples/cpp -B ${BUILD_DIR}/cpp_samples
192192
cmake --build ${BUILD_DIR}/cpp_samples --parallel $(nproc) --config ${{ env.CMAKE_BUILD_TYPE }} --target hello_query_device
193193
194194
- name: Build C samples - OpenVINO install tree
195195
run: ${INSTALL_DIR}/samples/c/build_samples.sh -i ${INSTALL_DIR} -b ${BUILD_DIR}/c_samples
196-
env:
197-
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
198196

199197
- name: Ctest - OpenVINO unit tests
200198
run: ctest -C ${{ env.CMAKE_BUILD_TYPE }} --test-dir ${BUILD_DIR} -V -L UNIT

.github/workflows/mac.yml

+1
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,7 @@ jobs:
416416
with:
417417
runner: 'macos-13'
418418
python-version: '3.11'
419+
scope: ${{ contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name) && 'nightly' || 'smoke' }}
419420

420421
upload_artifacts:
421422
name: Upload OpenVINO artifacts

.github/workflows/mac_arm64.yml

+1
Original file line numberDiff line numberDiff line change
@@ -376,3 +376,4 @@ jobs:
376376
with:
377377
runner: 'macos-13-xlarge'
378378
python-version: '3.11'
379+
scope: ${{ contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name) && 'nightly' || 'smoke' }}

.github/workflows/ubuntu_22.yml

+1
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@ jobs:
363363
runner: 'aks-linux-8-cores-32gb'
364364
image: ${{ fromJSON(needs.docker.outputs.images).ov_test.ubuntu_22_04_x64 }}
365365
python-version: '3.11'
366+
scope: ${{ contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name) && 'nightly' || 'smoke' }}
366367

367368
TensorFlow_Models_Tests_Precommit:
368369
name: TensorFlow Models tests

.github/workflows/windows_conditional_compilation.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
runs-on: aks-win-32-cores-128gb
5858
env:
5959
CMAKE_BUILD_TYPE: 'Release'
60+
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
6061
# CMAKE_GENERATOR: 'Ninja Multi-Config'
6162
CMAKE_GENERATOR: 'Visual Studio 17 2022'
6263
CMAKE_CXX_COMPILER_LAUNCHER: ccache
@@ -158,7 +159,7 @@ jobs:
158159
- name: Configure Developer Command Prompt for Microsoft Visual C++
159160
uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
160161
with:
161-
toolset: 14.40 # v2022
162+
toolset: 14.42 # v2022
162163

163164
- name: Set SSL_CERT_FILE for model downloading for unit tests
164165
run: echo SSL_CERT_FILE=$(python3 -m certifi) >> $env:GITHUB_ENV
@@ -171,16 +172,10 @@ jobs:
171172
-DENABLE_TESTS=ON `
172173
-DENABLE_CPPLINT=OFF `
173174
-DENABLE_NCC_STYLE=OFF `
174-
-DCMAKE_COMPILE_WARNING_AS_ERROR=ON `
175175
-DENABLE_PROFILING_ITT=ON `
176176
-DSELECTIVE_BUILD=COLLECT `
177177
-DENABLE_FASTER_BUILD=ON `
178178
-DCMAKE_DISABLE_FIND_PACKAGE_PkgConfig=ON `
179-
-DCMAKE_CXX_FLAGS="/Zi" `
180-
-DCMAKE_C_FLAGS="/Zi" `
181-
-DCMAKE_SHARED_LINKER_FLAGS="/DEBUG" `
182-
-DCMAKE_MODULE_LINKER_FLAGS="/DEBUG" `
183-
-DCMAKE_EXE_LINKER_FLAGS="/DEBUG" `
184179
-S ${{ env.OPENVINO_REPO }} `
185180
-B ${{ env.BUILD_DIR }}
186181
@@ -203,7 +198,7 @@ jobs:
203198
204199
- name: Build C++ samples - OpenVINO build tree
205200
run: |
206-
cmake -G "${{ env.CMAKE_GENERATOR }}" -DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DOpenVINO_DIR=${{ env.BUILD_DIR }} -S ${{ env.INSTALL_DIR }}/samples/cpp -B ${{ env.BUILD_DIR }}/cpp_samples
201+
cmake -G "${{ env.CMAKE_GENERATOR }}" -DOpenVINO_DIR=${{ env.BUILD_DIR }} -S ${{ env.INSTALL_DIR }}/samples/cpp -B ${{ env.BUILD_DIR }}/cpp_samples
207202
cmake --build ${{ env.BUILD_DIR }}/cpp_samples --parallel $ENV:NUMBER_OF_PROCESSORS --config ${{ env.CMAKE_BUILD_TYPE }} --target hello_query_device
208203
209204
- name: Ctest - OpenVINO unit tests
@@ -272,13 +267,12 @@ jobs:
272267
# install PDB files to OpenVINO main installation folder to ensure that they are used instead of PDB files from build folder
273268
cmake --install ${{ env.BUILD_DIR }} --config ${{ env.CMAKE_BUILD_TYPE }} --prefix ${{ env.INSTALL_DIR }} --component pdb
274269
# then, we need to clean build tree to remove PDB files
275-
cmake --build ${{ env.BUILD_DIR }} --parallel 16 --config ${{ env.CMAKE_BUILD_TYPE }} --target clean
270+
cmake --build ${{ env.BUILD_DIR }} --parallel $ENV:NUMBER_OF_PROCESSORS --config ${{ env.CMAKE_BUILD_TYPE }} --target clean
276271
& ${{ env.INSTALL_DIR }}/samples/c/build_samples.ps1 -i ${{ env.INSTALL_DIR }} -b ${{ env.BUILD_DIR }}/c_samples
277272
env:
278273
CXXFLAGS: "/Zi"
279274
CFLAGS: "/Zi"
280275
LDFLAGS: "/DEBUG"
281-
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
282276
CMAKE_GENERATOR: "Visual Studio 17 2022"
283277

284278
#

.github/workflows/windows_vs2022_debug.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ jobs:
6565
-DENABLE_TESTS=ON `
6666
-DCMAKE_COMPILE_WARNING_AS_ERROR=ON `
6767
-DENABLE_STRICT_DEPENDENCIES=OFF `
68-
-DCMAKE_DISABLE_FIND_PACKAGE_PkgConfig=ON `
69-
-DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" `
70-
-DOPENVINO_EXTRA_MODULES="${env:OPENVINO_CONTRIB_REPO }}/modules/custom_operations;${env:OPENVINO_CONTRIB_REPO}/modules/java_api"
68+
-DCMAKE_DISABLE_FIND_PACKAGE_PkgConfig=ON
7169
7270
CXX_Unit_Tests:
7371
name: C++ unit tests

.github/workflows/windows_vs2022_release.yml

+2-11
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,7 @@ jobs:
6969
-DENABLE_TESTS=ON `
7070
-DCMAKE_COMPILE_WARNING_AS_ERROR=ON `
7171
-DENABLE_STRICT_DEPENDENCIES=OFF `
72-
-DCMAKE_DISABLE_FIND_PACKAGE_PkgConfig=ON `
73-
-DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" `
74-
-DOPENVINO_EXTRA_MODULES="${env:OPENVINO_CONTRIB_REPO}/modules/custom_operations;${env:OPENVINO_CONTRIB_REPO}/modules/java_api"
72+
-DCMAKE_DISABLE_FIND_PACKAGE_PkgConfig=ON
7573
7674
Samples:
7775
needs: [ Build, Smart_CI ]
@@ -82,6 +80,7 @@ jobs:
8280
shell: pwsh
8381
runs-on: aks-win-4-cores-8gb
8482
env:
83+
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
8584
OPENVINO_REPO: "${{ github.workspace }}\\openvino"
8685
INSTALL_DIR: "${{ github.workspace }}\\install"
8786
INSTALL_TEST_DIR: "${{ github.workspace }}\\install\\tests"
@@ -131,15 +130,11 @@ jobs:
131130
- name: Build cpp samples
132131
run: |
133132
& ${{ env.SAMPLES_INSTALL_DIR }}/cpp/build_samples.ps1 -i ${{ env.INSTALL_DIR }} -b ${{ env.BUILD_DIR }}/cpp_samples
134-
env:
135-
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
136133
137134
# Test with the full names of the arguments
138135
- name: Build c samples
139136
run: |
140137
& ${{ env.SAMPLES_INSTALL_DIR }}/c/build_samples.ps1 -InstallDirectory ${{ env.INSTALL_DIR }} -BuildDirectory ${{ env.BUILD_DIR }}/c_samples
141-
env:
142-
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
143138
144139
# Install Python benchmark_app by installing openvino-*.whl
145140
- name: Install OpenVINO Python wheels
@@ -165,14 +160,10 @@ jobs:
165160
- name: Build cpp samples (bat)
166161
run: |
167162
& ${{ env.SAMPLES_INSTALL_DIR }}/cpp/build_samples_msvc.bat -i ${{ env.INSTALL_DIR }}/samples_bat -b ${{ env.BUILD_DIR }}/cpp_samples_bat
168-
env:
169-
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
170163
171164
- name: Build c samples (bat)
172165
run: |
173166
& ${{ env.SAMPLES_INSTALL_DIR }}/c/build_samples_msvc.bat -i ${{ env.INSTALL_DIR }}/samples_bat -b ${{ env.BUILD_DIR }}/c_samples_bat
174-
env:
175-
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
176167
177168
JS_API:
178169
name: JS API

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@
8989
url = https://github.com/openvinotoolkit/shl.git
9090
[submodule "src/plugins/intel_cpu/thirdparty/kleidiai"]
9191
path = src/plugins/intel_cpu/thirdparty/kleidiai
92-
url = https://git.gitlab.arm.com/kleidi/kleidiai.git
92+
url = https://github.com/ARM-software/kleidiai.git

cmake/developer_package/compile_flags/os_flags.cmake

+10
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,16 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
118118
"$<$<COMPILE_LANGUAGE:CXX>:/d1trimfile:${OV_NATIVE_PROJECT_ROOT_DIR}\\>"
119119
"$<$<COMPILE_LANGUAGE:CXX>:/d1trimfile:${CMAKE_SOURCE_DIR}/>")
120120
endif()
121+
122+
#
123+
# PDB related flags
124+
#
125+
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /Zi")
126+
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /Zi")
127+
128+
set(CMAKE_SHARED_LINKER_FLAGS_RELEASE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE} /DEBUG /OPT:REF /OPT:ICF")
129+
set(CMAKE_MODULE_LINKER_FLAGS_RELEASE "${CMAKE_MODULE_LINKER_FLAGS_RELEASE} /DEBUG /OPT:REF /OPT:ICF")
130+
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /DEBUG /OPT:REF /OPT:ICF")
121131
elseif(OV_COMPILER_IS_INTEL_LLVM AND WIN32)
122132
#
123133
# Warnings as errors

docs/articles_en/about-openvino/performance-benchmarks.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,10 @@ For a listing of all platforms and configurations used for testing, refer to the
160160
**Disclaimers**
161161

162162
* Intel® Distribution of OpenVINO™ toolkit performance results are based on release
163-
2025.0 as of January 28, 2025.
163+
2025.0, as of February 13, 2025.
164164

165165
* OpenVINO Model Server performance results are based on release
166-
2024.5, as of November 20, 2024.
166+
2025.0, as of February 13, 2025.
167167

168168
The results may not reflect all publicly available updates. Intel technologies' features and
169169
benefits depend on system configuration and may require enabled hardware, software, or service

docs/articles_en/about-openvino/performance-benchmarks/model-accuracy-int8-fp32.rst

+21-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ the table for more information.
6666
- -0.09%
6767
- -0.02%
6868
- -0.04%
69-
7069
.. list-table:: Model Accuracy for BF16, FP32 and FP16 (FP16: Arc only. BF16: Xeon® 6972P only)
7170
:header-rows: 1
7271

@@ -126,7 +125,6 @@ the table for more information.
126125
- 0.01%
127126
-
128127
- -0.03%
129-
130128
.. list-table:: Model Accuracy for AMX-FP16, AMX-INT4, Arc-FP16 and Arc-INT4 (Arc™ B-series)
131129
:header-rows: 1
132130

@@ -137,6 +135,27 @@ the table for more information.
137135
- B, AMX-INT4
138136
- C, Arc-FP16
139137
- D, Arc-INT4
138+
* - DeepSeek-R1-Distill-Llama-8B
139+
- Data Default WWB
140+
- Similarity
141+
- 10.3%
142+
- 21.4%
143+
- 0.21%
144+
- 23.5%
145+
* - DeepSeek-R1-Distill-Qwen-1.5B
146+
- Data Default WWB
147+
- Similarity
148+
- 16.1%
149+
- 34.5%
150+
- 2.48%
151+
- 36.4%
152+
* - DeepSeek-R1-Distill-Qwen-7B
153+
- Data Default WWB
154+
- Similarity
155+
- 25.5%
156+
- 35.6%
157+
- 3.9%
158+
- 37.2%
140159
* - GLM4-9B-Chat
141160
- Data Default WWB
142161
- Similarity

0 commit comments

Comments
 (0)