forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openvinotoolkit#8 from openvinotoolkit/master
Update forked branch
- Loading branch information
Showing
8,794 changed files
with
77,877 additions
and
374,382 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
jobs: | ||
- job: LinCC | ||
# About 150% of total time | ||
timeoutInMinutes: 90 | ||
|
||
pool: | ||
name: LIN_VMSS_VENV_F16S_WU2 | ||
|
||
variables: | ||
system.debug: true | ||
VSTS_HTTP_RETRY: 5 | ||
VSTS_HTTP_TIMEOUT: 200 | ||
WORKERS_NUMBER: 16 | ||
BUILD_TYPE: Release | ||
REPO_DIR: $(Build.Repository.LocalPath) | ||
OPENVINO_CONTRIB_REPO_DIR: $(REPO_DIR)/../openvino_contrib | ||
MODELS_PATH: $(REPO_DIR)/../testdata | ||
WORK_DIR: $(Pipeline.Workspace)/_w | ||
BUILD_DIR: $(WORK_DIR)/build | ||
BIN_DIR: $(REPO_DIR)/bin/intel64/$(BUILD_TYPE) | ||
INSTALL_DIR: $(WORK_DIR)/install_pkg | ||
SETUPVARS: $(INSTALL_DIR)/bin/setupvars.sh | ||
|
||
steps: | ||
- script: | | ||
curl -H Metadata:true --noproxy "*" "http://169.254.169.254/metadata/instance?api-version=2019-06-01" | ||
whoami | ||
uname -a | ||
echo Python3 info ; which python3 ; python3 --version | ||
echo Python info ; which python ; python --version | ||
echo Java info ; which java ; java -version | ||
echo gcc info ; which gcc ; gcc --version | ||
lsb_release | ||
env | ||
cat /proc/cpuinfo | ||
cat /proc/meminfo | ||
cat /etc/fstab | ||
vmstat -s | ||
df | ||
lsblk -o NAME,HCTL,SIZE,MOUNTPOINT | grep -i "sd" | ||
free -h | ||
displayName: 'System info' | ||
- script: | | ||
rm -rf $(WORK_DIR) ; mkdir $(WORK_DIR) | ||
rm -rf $(BUILD_DIR) ; mkdir $(BUILD_DIR) | ||
displayName: 'Make dir' | ||
- checkout: self | ||
clean: true | ||
lfs: false | ||
submodules: recursive | ||
path: openvino | ||
|
||
- script: | | ||
sudo apt --assume-yes install libusb-1.0-0-dev | ||
python3 -m pip install -r $(REPO_DIR)/inference-engine/ie_bridges/python/requirements.txt | ||
# Speed up build | ||
wget https://github.com/ninja-build/ninja/releases/download/v1.10.0/ninja-linux.zip | ||
unzip ninja-linux.zip | ||
sudo cp -v ninja /usr/local/bin/ | ||
workingDirectory: $(WORK_DIR) | ||
displayName: 'Install dependencies' | ||
- task: CMake@1 | ||
inputs: | ||
cmakeArgs: > | ||
-GNinja | ||
-DVERBOSE_BUILD=ON | ||
-DCMAKE_BUILD_TYPE=$(BUILD_TYPE) | ||
-DENABLE_FASTER_BUILD=ON | ||
-DENABLE_PROFILING_ITT=ON | ||
-DSELECTIVE_BUILD=COLLECT | ||
$(REPO_DIR) | ||
workingDirectory: $(BUILD_DIR) | ||
|
||
- script: ninja | ||
workingDirectory: $(BUILD_DIR) | ||
displayName: 'Build' | ||
|
||
- script: ls -alR $(REPO_DIR)/bin/ | ||
displayName: 'List files' | ||
|
||
- script: cmake -DCMAKE_INSTALL_PREFIX=$(INSTALL_DIR) -P cmake_install.cmake | ||
workingDirectory: $(BUILD_DIR) | ||
displayName: 'Install' | ||
|
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,89 @@ | ||
jobs: | ||
- job: WinCC | ||
# About 150% of total time | ||
timeoutInMinutes: 120 | ||
|
||
pool: | ||
name: WIN_VMSS_VENV_F8S_WU2 | ||
|
||
variables: | ||
system.debug: true | ||
VSTS_HTTP_RETRY: 5 | ||
VSTS_HTTP_TIMEOUT: 200 | ||
WORKERS_NUMBER: 8 | ||
BUILD_TYPE: Release | ||
REPO_DIR: $(Build.Repository.LocalPath) | ||
OPENVINO_CONTRIB_REPO_DIR: $(REPO_DIR)\..\openvino_contrib | ||
MODELS_PATH: $(REPO_DIR)\..\testdata | ||
WORK_DIR: $(Pipeline.Workspace)\_w | ||
BUILD_DIR: D:\build | ||
BIN_DIR: $(REPO_DIR)\bin\intel64 | ||
MSVS_VARS_PATH: C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat | ||
MSVC_COMPILER_PATH: C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.24.28314\bin\Hostx64\x64\cl.exe | ||
INSTALL_DIR: $(WORK_DIR)\install_pkg | ||
SETUPVARS: $(INSTALL_DIR)\bin\setupvars.bat | ||
IB_DIR: C:\Program Files (x86)\IncrediBuild | ||
IB_TESTCONSOLE: $(IB_DIR)\IBTestConsole.exe | ||
TEST_ENV_PATH: $(REPO_DIR)\inference-engine\temp\tbb\bin;$(REPO_DIR)\inference-engine\temp\opencv_4.5.1\opencv\bin;$(IB_DIR);%PATH% | ||
|
||
steps: | ||
- script: | | ||
powershell -command "Invoke-RestMethod -Headers @{\"Metadata\"=\"true\"} -Method GET -Uri http://169.254.169.254/metadata/instance/compute?api-version=2019-06-01 | format-custom" | ||
where python3 | ||
where python | ||
python --version | ||
where java | ||
java -version | ||
wmic computersystem get TotalPhysicalMemory | ||
wmic cpu list | ||
wmic logicaldisk get description,name | ||
wmic VOLUME list | ||
set | ||
displayName: 'System info' | ||
- script: | | ||
rd /Q /S $(WORK_DIR) & mkdir $(WORK_DIR) | ||
rd /Q /S $(BUILD_DIR) & mkdir $(BUILD_DIR) | ||
displayName: 'Make dir' | ||
- script: | | ||
certutil -urlcache -split -f https://incredibuilddiag1wu2.blob.core.windows.net/incredibuild/install_ib_console.bat install_ib_console.bat | ||
call install_ib_console.bat | ||
workingDirectory: $(WORK_DIR) | ||
displayName: 'Install IncrediBuild' | ||
- checkout: self | ||
clean: true | ||
lfs: false | ||
submodules: recursive | ||
path: openvino | ||
|
||
- script: | | ||
certutil -urlcache -split -f https://github.com/ninja-build/ninja/releases/download/v1.10.0/ninja-win.zip ninja-win.zip | ||
powershell -command "Expand-Archive -Force ninja-win.zip" | ||
workingDirectory: $(WORK_DIR) | ||
displayName: 'Install dependencies' | ||
- script: | | ||
set PATH=$(WORK_DIR)\ninja-win;%PATH% | ||
call "$(MSVS_VARS_PATH)" && cmake -GNinja -DENABLE_FASTER_BUILD=ON -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) -DENABLE_PROFILING_ITT=ON -DSELECTIVE_BUILD=COLLECT -DCMAKE_C_COMPILER:PATH="$(MSVC_COMPILER_PATH)" -DCMAKE_CXX_COMPILER:PATH="$(MSVC_COMPILER_PATH)" $(REPO_DIR) | ||
workingDirectory: $(BUILD_DIR) | ||
displayName: 'CMake' | ||
- script: | | ||
set PATH=$(WORK_DIR)\ninja-win;%PATH% | ||
call "$(MSVS_VARS_PATH)" && "C:\Program Files (x86)\IncrediBuild\BuildConsole.exe" /COMMAND="ninja" | ||
workingDirectory: $(BUILD_DIR) | ||
displayName: 'Build Win' | ||
- script: dir $(REPO_DIR)\bin\ /s | ||
displayName: 'List files' | ||
|
||
- script: cmake -DCMAKE_INSTALL_PREFIX=$(INSTALL_DIR) -P cmake_install.cmake | ||
workingDirectory: $(BUILD_DIR) | ||
displayName: 'Install' | ||
|
||
- script: echo Stop IncrediBuild_Agent && net stop IncrediBuild_Agent | ||
displayName: Stop IncrediBuild | ||
continueOnError: true | ||
enabled: false |
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
Oops, something went wrong.