1. 27 Feb, 2020 2 commits
  2. 26 Feb, 2020 7 commits
  3. 25 Feb, 2020 3 commits
  4. 24 Feb, 2020 7 commits
  5. 21 Feb, 2020 11 commits
  6. 20 Feb, 2020 2 commits
    • Mateusz Bencer's avatar
      [ONNX] Add dynamic shapes support for pooling ops (#4285) · fdd8db66
      Mateusz Bencer authored
      * Switch to PartialShape in onnx_importer ValueInfo
      
      * Construct dynamic dimensions out of ONNX dimensions defined as dim_param
      
      * Validate the PartialShape of inputs created from an ONNX model with dynamic shapes
      
      * Validate the output shape inference for a dynamic ONNX model
      
      * Test the execution of an ONNX model with dynamic dimensions
      
      * Test the Ax+B with more than one batch size
      
      * Provenance tagging adjustments - PartialShape instead of Shape
      
      * Correct translation of ONNX shapes to nG shapes
      
      * Test the shape of Constant produced by scalar initializers
      
      * Review comments & more strict assertions in UT
      
      * UT checking a dynamic rank input
      
      * Fully dynamic input inference test
      
      * first dynamic version
      
      * modified UTs
      
      * Added assert checks
      
      * Added specialised methods
      
      * first verion of AvgPool
      
      * code review remarks introduced
      
      * Changed tests to use default BackendMode value
      
      * Reverted not related changes
      
      * first verion of AvgPool
      
      code review remarks introduced
      
      Changed tests to use default BackendMode value
      
      * first version of maxpool
      
      * Changed PoolingFactory to support dynamic shapes
      
      * fixed Pad op
      
      * Added Uts to global ops
      
      * Code review remarks introduced
      
      * code review remarks introduced
      
      * Code refactor
      
      * Code review remarks introduced
      Co-authored-by: 's avatarTomasz Dołbniak <tomasz.dolbniak@intel.com>
      Co-authored-by: 's avatarSang Ik Lee <sang.ik.lee@intel.com>
      fdd8db66
    • Ewa Tusień's avatar
      Add Round op to ONNX importer (#4303) · d605e7fa
      Ewa Tusień authored
      * Added Round op to onnx importer.
      
      * Added a new line.
      
      * Excluded test from plaidml.
      
      * Code formatting.
      
      * Added header.
      
      * Unabled test on gpu.
      Co-authored-by: 's avatarChris Sullivan <chris.sullivan@intel.com>
      Co-authored-by: 's avatarSang Ik Lee <sang.ik.lee@intel.com>
      d605e7fa
  7. 19 Feb, 2020 5 commits
  8. 18 Feb, 2020 3 commits
    • Adam Osewski's avatar
      Unify (static) auto-broadcasting helpers. (#4242) · fe054d67
      Adam Osewski authored
      * Helper function get_axes_mapping.
      
      * Enhance Broadcast:v1 NUMPY broadcasting.
      
      - Enable NUMPY broadcasting mechanism to work in bothdirections:
          target_shape <-> arg_shape
      
      * Add opset1:squeeze and fix bug in reading squeezed axis idx.
      
      * Fix and enhance downgrade pass for Broadcast:v1
      
      * Use Broadcast:v1 in ONNX Expand operator.
      
      * Replace Broadcast:v0 with v1 in some helper functions.
      
      * Remove call to deprecated legacy_broadcasting helper function.
      
      * Add helper get_axes_mapping_output function.
      
      * Use directly Broadcast:v1 instead of helper function.
      
      * Get back operators from v0 in helper function.
      
      * Use helper function and some refactoring.
      
      * Add legacy style broadcast helper function for opset1.
      
      * User helper broadcasting function for arithmetic operators.
      
      * Add empty axis only if its size is equal to one.
      
      * Aplly review remarks:
      
      - Rename broadcasting function deleting _values_ infix
      - Remove variables used only once.
      - Use STL library where possible.
      - Remove unnecessary conditions.
      
      * Add helper for Broadcast:v1.
      
      * Fix merge artifact and force unsigned type for argument.
      
      * Review. Add additional check for static output.
      
      * Apply clang-format.
      
      * Fix: call v0 ops in ngraph::builder namespace.
      
      * Move opset1 boradcasting helpers from util/broadcasting.hpp
      
      * Use autobroadcast built-in mechanism for arithmetic operators in RNN.
      
      * Move helper functions to autobroadcast.hpp file.
      
      - Update calls with new namespace ngraph::builder
      - Remove calls using shared_ptr<ngraph::Node> and replace them with
        one accepting Output<ngraph::Node>
      - Some small formatting (remove unnecesary namespace prefix)
      
      * Remove unused function.
      
      * Rename error class to reflect it's NumPy related.
      
      * Fix thrown error name in autobroadcast UT.
      
      * Code refactoring.
      
      - Use one one set of helpers to broadcast node according to NumPy scheme
      
      * Documentation formatting.
      
      * Remove include to deleted header.
      
      * Apply style format.
      
      * Remove std:: prefix.
      
      * Do reshape and/or broadcast only when necessary.
      
      * Remove std:: and ngraph:: prefixes.
      
      * UT for numpy_broadcast_for_matmul and legacy boradcast.
      
      * Rename helper function.
      
      * UT for opset1 legacy broadcast helper function.
      
      * Add more UT for get_axes_mapping and style-format.
      
      * Review comments.
      
      * Restrict if with NGRAPH_WARN to NGRAPH_CHECK.
      Co-authored-by: 's avatarMichał Karzyński <postrational@users.noreply.github.com>
      Co-authored-by: 's avatarSang Ik Lee <sang.ik.lee@intel.com>
      fe054d67
    • Diego Caballero's avatar
    • Michał Karzyński's avatar
      5803d20f