1. 25 Dec, 2020 9 commits
  2. 24 Dec, 2020 10 commits
    • Anastasiya Ageeva's avatar
      Avladimi/cherry pick raspbian gsg (#3654) · cc019e0a
      Anastasiya Ageeva authored
      * Added Get Started Guide for Raspbian
      
      * Updated the TOC xml file
      
      * Minor fixes
      
      * Implemented review comments
      
      * Fixed broken link
      cc019e0a
    • Sergey Lyubimtsev's avatar
      CMake based build for pyngraph module (#3080) · 2e6ea1e2
      Sergey Lyubimtsev authored
      
      * [MO] Add CMake install for Model Optimizer
      
      * [MO] Update test for version.py
      
      * [MO] Add CMake install for Model Optimizer
      
      * [MO] Update test for version.py
      
      * [MO] Add CMake install for Model Optimizer
      
      * [MO] Update test for version.py
      
      * [nGraph] Python API should be compiled and installed via CMake (41857)
      
      * Refactored wheel setup script to build module using CMake
      
      * Update build instructions
      
      * Added USE_SOURCE_PERMISSIONS to cmake install
      
      * Adjust CMake compiler flags conditions
      
      * fix CPack issue for CI build pipeline
      
      * case insensitive option check
      
      * build only python API if ngraph_DIR provided
      
      * fix lib extension for macOS
      
      * -fixed style (flake8)
      
       -added paralllel build option & description
      
      * fix flake8 B006 check
      
      * add ngraph_DIR & remove unsed env. variables.
      
      * Reworked build & test instructions to make it more straightforward
      
      * remove unused CMake arguments for setup.py
      
      * make source dir condition more general
      
      * Update BUILDING.md
      
      * Update BUILDING.md
      
      * Update BUILDING.md
      
      * beautified instructions wording
      
      * fix wheel build issue after sourcing setupvars
      
      * Extend user options to build, install and develop commands
      Co-authored-by: default avatarAndrey Zaytsev <andrey.zaytsev@intel.com>
      2e6ea1e2
    • Maksim Kutakov's avatar
      [CPU BF16] Fix for fusing depthwise operation into BF16 convolutions (#3671) · 4a624919
      Maksim Kutakov authored
      * Fix for fusing depthwise operations into bf16 convolutions.
      
      * ScaleShift layer was returned to _complementbf16 list.
      4a624919
    • Andrew Bakalin's avatar
      [IE][VPU]: Fix loading previous NMS versions (#3696) · 29d82b7a
      Andrew Bakalin authored
      * Description: currently IRs with NMS version < 5 don't work because conversion of previous NMS versions to NMS-5 happens after DTS (in opset1 to legacy conversion), while for Myriad Plugin it's necessary to do so at the very beginning of ngraph conversion pipeline.
      29d82b7a
    • Ilya Churaev's avatar
      Removed global factory for nodes (#3701) · ad3405ef
      Ilya Churaev authored
      ad3405ef
    • Nikolay Tyukaev's avatar
      ovino doc assets (#3046) · dbedeae9
      Nikolay Tyukaev authored
      * ovino doc assets
      
      * update cmake doc build
      
      * fixes
      dbedeae9
    • Maxim Andronov's avatar
      Added memory format attribute (#3395) · cdf7f5ef
      Maxim Andronov authored
      * [CPU] Added memory format attribute
      cdf7f5ef
    • Yury Gaydaychuk's avatar
    • Ilya Lavrenov's avatar
    • Szymon Durawa's avatar
      Visitor api ti implementation (#3576) · 431485e4
      Szymon Durawa authored
      * TensorIterator deserialization. Introduce new on_adapter(Function) and add implementation in on_adapter(void) for Input and Output Descriptions. Remove factory adapter.
      
      * Add comments to functions provided. Add missing  on_adapter() after rebase.
      
      * Apply formatting.
      
      * Remove visit_attributes from SubGraphOp, remove declaration for createSubGraphLayer.
      
      * Add port map parsing to address not consecutive order of external_port_id appearance.
      
      * Remove header for factory_adapter.
      
      * Add on_adapter() in V10Parse::parse() function.
      
      * Add m_num_iterations initialization for concat output.
      
      * Remove redundant lines, add doxygen comments.
      
      * Change cpp/ie_cnn_network.h to local include, remove temporary map object from range for loop.
      
      * Restore protected access for SubGraphOp.
      431485e4
  3. 23 Dec, 2020 12 commits
  4. 22 Dec, 2020 9 commits
    • Ilya Lavrenov's avatar
      856ab82b
    • Mikhail Ryzhov's avatar
      [IE CORE] enable plugins & dependent libs loading using absolute path (#3639) · f224c52f
      Mikhail Ryzhov authored
      * [IE CORE] enable plugins & dependent libs loading using absolute path
      
      urrently this allowed to use plugins.xml file to specify full path to specific plugin with it's all dependency, not to be persisted in CWD or in PATH
      
      * Code review fixes
      f224c52f
    • Mateusz Bencer's avatar
      Disable tests which read prototxt files if protobuf-lite is used (#3691) · 00181d51
      Mateusz Bencer authored
      * Disable tests which read prototxt if protobuf lite is used
      
      * added missing line
      
      * cmake flags refactor
      00181d51
    • Ilya Lavrenov's avatar
      Introduce IEDevScripts package (#3661) · 9465073f
      Ilya Lavrenov authored
      * Refactored developer package
      
      * Added fuzzing for CMAKE_MODULE_LINKER_FLAGS as well
      
      * Added options for developer package
      
      * More improvements
      
      * Further improvements
      
      * Removed global CMAKE_MODULE_PATH population
      
      * Fixes
      
      * Final fixes
      
      * Fixed python build
      
      * Fix for TBB
      
      * Fixed Find TBB
      
      * Fixed install
      
      * Fixes for OV features
      
      * Split developer targets per component
      
      * Fixed IE build tree config
      
      * Fixed ITT
      
      * Fixed review comments
      
      * Clean export dependencies
      
      * Fixed export of pugixml
      
      * Added IEDevScripts_DIR for Android
      
      * Fixed Android #2
      
      * Fixed Android #3
      
      * Fixed python cc
      
      * Disabled Core threading tests on GNA
      9465073f
    • Ilya Churaev's avatar
      Changed OV_SCOPE semantic (#3692) · 1926179b
      Ilya Churaev authored
      * Added if DEFINE construction
      
      * Changed OV_SCOPE semantic
      
      * Fixed the code style
      
      * Fixed redundant lines
      1926179b
    • Jozef Daniecki's avatar
      Regenerate MO models with current MO version. (#3668) · 967c040e
      Jozef Daniecki authored
      Constant port numbering was changed in MO serialization, needed to
      regenerate models for serialization functional tests to reflect current
      MO IR.
      967c040e
    • Gladilov, Gleb's avatar
      [IE][nGraph]: Fixes Loop shape inference (#3641) · 2ffa6f47
      Gladilov, Gleb authored
      
      Previously Loop shape inference function
      produced dynamic shapes for body parameters
      and loop outputs if iteration count is
      unknown (dynamic) or loop input data is
      dynamic. At the same, time some dimensions
      of input/outputs of body/loop could be
      inferred under this circumstances which could
      critical for model enablement (ex. Myriad-X
      could support convolutions with dynamic batch,
      but could not support convolutions with dynamic
      spatial dimensions)
      Signed-off-by: default avatarGladilov, Gleb <gleb.gladilov@intel.com>
      2ffa6f47
    • Mateusz Tabaka's avatar
    • iliya mironov's avatar
      Remove broadcasting (#3574) · b17e0d47
      iliya mironov authored
      * Remove broadcusting
      
      * Refactoring some code
      
      * Add unit tests
      
      * Update description
      
      * Refactoring transformation
      
      * Add is_broadcastable_shapes checks
      
      * Update is_eliminate_broadcast func
      
      * Add unit tests
      
      * Update unit tests
      
      * Add unit tests
      
      * Add unit tests
      
      * Remove unused include
      
      * Add dynemic tests
      
      * Update unit tests
      
      * Fix code style
      
      * Fix unit tests code style
      
      * Fix code style
      
      * Add one more case for elumenate broadcast
      
      * Fix according to review
      
      * Refactoring transformation code
      b17e0d47