Skip to content

Commit 1c4fcd8

Browse files
[OS][ww18] - Upstreaming compiler repository (#63)
1 parent 0f5fc57 commit 1c4fcd8

File tree

3,901 files changed

+95709
-34267
lines changed

Some content is hidden

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

3,901 files changed

+95709
-34267
lines changed

.github/workflows/job_build_mlir_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ jobs:
161161
-DCMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} \
162162
-DENABLE_LTO=OFF \
163163
-DENABLE_TESTS=${{ env.ENABLE_TESTS_FLAG }} \
164-
-DENABLE_INTEL_CPU=ON \
165-
-DENABLE_INTEL_GPU=ON \
164+
-DENABLE_INTEL_CPU=${{ env.ENABLE_TESTS_FLAG }} \
165+
-DENABLE_INTEL_GPU=${{ env.ENABLE_TESTS_FLAG }} \
166166
-DENABLE_INTEL_NPU=ON \
167167
-DENABLE_IMD_BACKEND=OFF \
168168
-DENABLE_ONEDNN_FOR_GPU=OFF \

.github/workflows/job_tests_unit_mlir_linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,15 @@ jobs:
5252
echo "PROF_PARSER_PATH=$(realpath "${OPENVINO_INSTALL_DIR}/tools/prof_parser")" >> $GITHUB_ENV
5353
echo "LSP_SERVER_PATH=$(realpath "${OPENVINO_INSTALL_DIR}/tools/npu-lsp-server")" >> $GITHUB_ENV
5454
echo "VPUX_OPT_PATH=$(realpath "${OPENVINO_INSTALL_DIR}/tools/vpux-opt")" >> $GITHUB_ENV
55+
echo "VPUX_TRANSLATE_PATH=$(realpath "${OPENVINO_INSTALL_DIR}/tools/vpux-translate")" >> $GITHUB_ENV
5556
chmod +x ${OPENVINO_INSTALL_DIR}/setupvars.sh
5657
chmod +x ${OPENVINO_INSTALL_DIR}/tests/FileCheck
5758
chmod +x ${OPENVINO_INSTALL_DIR}/tests/flatc
5859
chmod +x ${OPENVINO_INSTALL_DIR}/tests/not
5960
chmod +x ${OPENVINO_INSTALL_DIR}/tools/prof_parser/prof_parser
6061
chmod +x ${OPENVINO_INSTALL_DIR}/tools/npu-lsp-server/npu-lsp-server
6162
chmod +x ${OPENVINO_INSTALL_DIR}/tools/vpux-opt/vpux-opt
63+
chmod +x ${OPENVINO_INSTALL_DIR}/tools/vpux-translate/vpux-translate
6264
6365
- name: Run OV NPU Unit tests
6466
if: ${{ inputs.run-unit-tests }}
@@ -78,14 +80,14 @@ jobs:
7880
if: ${{ inputs.run-lit-tests }}
7981
run: |
8082
source ${OPENVINO_INSTALL_DIR}/setupvars.sh
81-
export PATH=$PATH:${PROF_PARSER_PATH}:${LSP_SERVER_PATH}:${VPUX_OPT_PATH}
83+
export PATH=$PATH:${PROF_PARSER_PATH}:${LSP_SERVER_PATH}:${VPUX_OPT_PATH}:${VPUX_TRANSLATE_PATH}
8284
cd ${OPENVINO_INSTALL_DIR}/tests/lit-tests
8385
python3 ./lit-tool/lit.py -v --param arch=NPU37XX NPU/NPU
8486
8587
- name: Run NPU40XX LIT tests
8688
if: ${{ inputs.run-lit-tests }}
8789
run: |
8890
source ${OPENVINO_INSTALL_DIR}/setupvars.sh
89-
export PATH=$PATH:${PROF_PARSER_PATH}:${LSP_SERVER_PATH}:${VPUX_OPT_PATH}
91+
export PATH=$PATH:${PROF_PARSER_PATH}:${LSP_SERVER_PATH}:${VPUX_OPT_PATH}:${VPUX_TRANSLATE_PATH}
9092
cd ${OPENVINO_INSTALL_DIR}/tests/lit-tests
9193
python3 ./lit-tool/lit.py -v --param arch=NPU40XX NPU/NPU

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2022-2023 Intel Corporation.
2+
# Copyright (C) 2022-2025 Intel Corporation.
33
# SPDX-License-Identifier: Apache 2.0
44
#
55

SourcePackageConfig.json

Lines changed: 0 additions & 33 deletions
This file was deleted.

cmake/add_tool_target.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2022 Intel Corporation.
2+
# Copyright (C) 2022-2025 Intel Corporation.
33
# SPDX-License-Identifier: Apache 2.0
44
#
55

cmake/compile_options_llvm.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2024 Intel Corporation.
2+
# Copyright (C) 2024-2025 Intel Corporation.
33
# SPDX-License-Identifier: Apache 2.0
44
#
55

cmake/coverage.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2023 Intel Corporation
2+
# Copyright (C) 2023-2025 Intel Corporation
33
# SPDX-License-Identifier: Apache 2.0
44
#
55

cmake/cross_compilation.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2022 Intel Corporation.
2+
# Copyright (C) 2022-2025 Intel Corporation.
33
# SPDX-License-Identifier: Apache 2.0
44
#
55

cmake/dependencies.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2022 Intel Corporation
2+
# Copyright (C) 2022-2025 Intel Corporation
33
# SPDX-License-Identifier: Apache 2.0
44
#
55

cmake/embed_bin_file.cmake

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
#
2-
# Copyright 2022 Intel Corporation.
2+
# Copyright (C) 2022-2025 Intel Corporation.
33
# SPDX-License-Identifier: Apache 2.0
44
#
5+
# LEGAL NOTICE: Your use of this software and any required dependent software
6+
# (the "Software Package") is subject to the terms and conditions of
7+
# the Intel(R) OpenVINO(TM) Distribution License for the Software Package,
8+
# which may also include notices, disclaimers, or license terms for
9+
# third party or open source software included in or with the Software Package,
10+
# and your use indicates your acceptance of all such terms. Please refer
11+
# to the "third-party-programs.txt" or other similarly-named text file
12+
# included with the Software Package for additional details.
13+
#
514

615
function(vpux_embed_bin_file)
716
set(options)

0 commit comments

Comments
 (0)