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.
* Fix gna tests * Squashed commit of the following: commit 565b504 Author: Alexander Zhogov <[email protected]> Date: Tue Oct 13 13:27:34 2020 +0300 GitHub CI: Add files_size.yml (openvinotoolkit#2570) * GitHub CI: Add files_size.yml * Update job name commit ab0fb29 Author: Vladislav Vinogradov <[email protected]> Date: Tue Oct 13 11:37:30 2020 +0300 [IE][BUILD] Fix C5208 warning under Windows (openvinotoolkit#2628) * C++ feature in C `typedef struct` code. * The warning can be promoted to error in dependent projects. C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes commit 15a338e Author: helmutg <[email protected]> Date: Mon Oct 12 22:24:24 2020 +0200 add build option USE_SYSTEM_PUGIXML (openvinotoolkit#2502) It allows skipping inference-engine/thirdparty/pugixml and using the system copy instead. Thanks to @Osse for helping understand cmake scoping rules. Co-authored-by: Helmut Grohne <[email protected]> commit 7ac8cd8 Author: Alexander Zhogov <[email protected]> Date: Mon Oct 12 19:23:00 2020 +0300 Azure CI: Fix nGraph ONNX commit 3a2e339 Author: Alexander Zhogov <[email protected]> Date: Mon Oct 12 19:20:28 2020 +0300 Azure CI: Disable steps in nGraph ONNX commit 5835974 Author: azhogov <[email protected]> Date: Mon Oct 12 18:46:14 2020 +0300 Azure CI: Add linux_ngraph_onnx.yml
- Loading branch information
Showing
7 changed files
with
179 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
jobs: | ||
- job: nGraph_ONNX_Lin | ||
|
||
# About 150% of total time | ||
timeoutInMinutes: 60 | ||
|
||
pool: | ||
name: LIN_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) | ||
WORK_DIR: $(Pipeline.Workspace)/_w | ||
BUILD_DIR: $(WORK_DIR)/build | ||
BIN_DIR: $(REPO_DIR)/bin/intel64/$(BUILD_TYPE) | ||
INSTALL_DIR: $(WORK_DIR)/install | ||
|
||
steps: | ||
- checkout: self | ||
clean: true | ||
lfs: false | ||
submodules: recursive | ||
path: openvino | ||
|
||
- script: | | ||
curl -H Metadata:true --noproxy "*" "http://169.254.169.254/metadata/instance?api-version=2019-06-01" | ||
whoami | ||
uname -a | ||
which python3 | ||
python3 --version | ||
gcc --version | ||
lsb_release | ||
env | ||
cat /proc/cpuinfo | ||
cat /proc/meminfo | ||
vmstat -s | ||
df | ||
displayName: 'System info' | ||
- script: | | ||
rm -rf $(WORK_DIR) ; mkdir $(WORK_DIR) | ||
displayName: 'Make dir' | ||
- script: | | ||
sudo apt --assume-yes install libusb-1.0-0-dev | ||
python3 -m pip install -r ./inference-engine/ie_bridges/python/requirements.txt | ||
# For running Python API tests | ||
python3 -m pip install -r ./inference-engine/ie_bridges/python/src/requirements-dev.txt | ||
displayName: 'Install dependencies' | ||
enabled: false | ||
- script: | | ||
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 Ninja' | ||
enabled: false | ||
- task: CMake@1 | ||
inputs: | ||
# CMake must get Python 3.x version by default | ||
cmakeArgs: -GNinja -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) -DENABLE_VPU=OFF -DENABLE_GNA=OFF -DENABLE_OPENCV=OFF -DENABLE_CPPLINT=OFF -DENABLE_TESTS=OFF -DENABLE_BEH_TESTS=OFF -DENABLE_FUNCTIONAL_TESTS=OFF -DENABLE_MKL_DNN=ON -DENABLE_CLDNN=OFF -DENABLE_PROFILING_ITT=OFF -DENABLE_SAMPLES=OFF -DENABLE_SPEECH_DEMO=OFF -DENABLE_PYTHON=ON -DPYTHON_EXECUTABLE=/usr/bin/python3.6 -DNGRAPH_ONNX_IMPORT_ENABLE=ON -DNGRAPH_INTERPRETER_ENABLE=ON -DNGRAPH_DEBUG_ENABLE=OFF -DNGRAPH_DYNAMIC_COMPONENTS_ENABLE=ON -DCMAKE_INSTALL_PREFIX=$(INSTALL_DIR) $(REPO_DIR) | ||
workingDirectory: $(BUILD_DIR) | ||
enabled: false | ||
|
||
- script: ninja | ||
workingDirectory: $(BUILD_DIR) | ||
displayName: 'Build' | ||
enabled: false | ||
|
||
- script: make install | ||
workingDirectory: $(BUILD_DIR) | ||
displayName: 'Install' | ||
enabled: false | ||
|
||
- script: | | ||
ls -alR $(REPO_DIR)/bin/ | ||
ls -alR $(INSTALL_DIR) | ||
displayName: 'List files' | ||
enabled: false | ||
- script: docker build --tag=openvino-onnx-ci-image --file=$(REPO_DIR)/.ci/openvino-onnx/Dockerfile . | ||
workingDirectory: $(BUILD_DIR) | ||
displayName: 'Docker build' | ||
enabled: false | ||
|
||
- script: docker run --name openvino-onnx-ci-container openvino-onnx-ci-image | ||
workingDirectory: $(BUILD_DIR) | ||
displayName: 'Docker run tests' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Files Size | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
Check-Files-Size: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: git ls-tree | ||
run: | | ||
git ls-tree -r -t -l --full-name HEAD | sort -n -r -k 4 | ||
- name: git lfs ls-files | ||
run: | | ||
git lfs ls-files --size | ||
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