1. 26 Feb, 2020 1 commit
  2. 01 Jan, 2020 1 commit
  3. 22 Nov, 2019 1 commit
    • Tomasz Dołbniak's avatar
      [SPEC] HardSigmoid adjustments (#3857) · 28a96f83
      Tomasz Dołbniak authored
      * Construct HardSigmoid with alpha and beta as inputs
      
      * Switch to the new HardSigmoid constructor entirely
      
      * Broadcast with numpy style in hard sigmoid
      
      * Python bindings adjustment to the new constructor
      
      * Different way of creating constants
      
      * Accept scalars instead of 1D vectors for alpha and beta
      
      * Adjust the python tests to the new HardSigmoid constructor
      
      * Use v1 ops in fused HardSigmoid
      
      * Relax the static shape requirement for alpha and beta
      
      * Fix merge
      28a96f83
  4. 15 Nov, 2019 1 commit
  5. 08 Nov, 2019 1 commit
  6. 05 Nov, 2019 1 commit
  7. 23 Oct, 2019 1 commit
  8. 14 Oct, 2019 1 commit
  9. 11 Oct, 2019 1 commit
    • Ewa Tusień's avatar
      [Py] Added operators GroupConvolution and RNNCell to Python API. (#3425) · 8d1e2196
      Ewa Tusień authored
      * [Py] Added operators GroupConvolution and RNNCell to Pythpn API
      
      * [Py] Removed code unrealated to branch.
      
      * [Py] Undo removed test.
      
      * [Py] Added removed decorator.
      
      * [Py] Code formatting.
      
      * [Py] Added ops to documentation's list.
      
      * [Py] Added skipped file.
      
      * [Py] Code formatting.
      
      * [Py] Code formatting.
      
      * Revert "Merge branch 'master' into etusien/GroupConv_RNNCell"
      
      This reverts commit a1848ea48916b293d5260869b2a52827bea21981, reversing
      changes made to 6a60068abf8e5391bf875ee22573eb1aa388b047.
      
      * [Py] Reverted changes.
      
      * [Py] Changed imports' list
      
      * [Py] Added missed imports.
      
      * [Py] Added operators GroupConvolution and RNNCell to Pythpn API
      
      * [Py] Removed code unrealated to branch.
      
      * [Py] Undo removed test.
      
      * [Py] Added removed decorator.
      
      * [Py] Added ops to documentation's list.
      
      * [Py] Added skipped file.
      
      * [Py] Code formatting.
      
      * [Py] Code formatting.
      
      * [Py] Reverted changes.
      
      * Revert "Revert "Merge branch 'master' into etusien/GroupConv_RNNCell""
      
      This reverts commit 9c46ce5d289dadc4979e4712c79fff84bb538652.
      
      * [Py] Reverted changes.
      
      * [Py] Code formatting.
      
      * [Py] Code formatting.
      
      * [Py] Added PadType to Group Conv op.
      8d1e2196
  10. 04 Sep, 2019 2 commits
    • Michał Karzyński's avatar
      Add support for operator sets and Softmax:1 (#3420) · d218ccf9
      Michał Karzyński authored
      * Add opset_version field to Node
      
      * Add opset version aliases to Softmax
      
      * Add op::set1::Softmax operator
      
      * Disable opset 1 ops in INTERPRETER
      
      * Add serializer support for Softmax opset 1
      
      * Opset1Transformation pass
      
      * Added unit tests to softmax pass
      
      * Code refactoring
      
      * Added missing virtual to set_opset_version
      
      * Clang styles applied
      
      * Update src/ngraph/pass/opset1_transform.cpp
      Co-Authored-By: 's avatarAdam Procter <adam.m.procter@intel.com>
      
      * Part.1 Code review remarks introduced
      
      * Part.2 Code review remarks introduced
      
      * Changed opset_version to op_version
      
      * Code review remarks introduced
      
      * Code review remarks introduced
      
      * Set Op as base class for Softmax instead of UnaryElementwiseArithmetic
      
      * Fixed unit tests
      
      * v1::Softmax::generate_adjoints mark temporarily as not supported
      
      * Fix CI. Part.2
      
      * Fix CI. Part.3
      
      * Code review remarks introduced
      
      * Rename Opset1Transformation to Opset1Upgrade
      
      * Fixed clag style problem with enum switch
      
      * Fixes clang compilator error
      
      * Removed unused foward declaration
      
      * Code review remarks introduced
      
      * Added checking if input rank is static
      d218ccf9
    • Ewa Tusień's avatar
      [Py] Added Dequantize, Quantize, Quantized Convolution, Quantized Dot… (#3527) · 7809effd
      Ewa Tusień authored
      * [Py] Added Dequantize, Quantize, Quantized Convolution, Quantized Dot operators to Python API.
      
      * [Py] Removed unnecess import.
      
      * [Py] Changed docstring.
      Co-Authored-By: 's avatarTomasz Socha <tomasz.socha@intel.com>
      
      * [Py] Changed docstring.
      
      * [Py] Changed docstring.
      
      * [Py] Added missed imports.
      7809effd
  11. 28 Aug, 2019 1 commit
  12. 21 Aug, 2019 1 commit
  13. 15 Aug, 2019 1 commit
  14. 12 Aug, 2019 1 commit
  15. 09 Aug, 2019 1 commit
  16. 08 Aug, 2019 1 commit
  17. 02 Aug, 2019 1 commit
  18. 30 Jul, 2019 2 commits
  19. 29 Jul, 2019 1 commit
  20. 25 Jul, 2019 1 commit
  21. 24 Jul, 2019 2 commits
  22. 23 Jul, 2019 2 commits
  23. 22 Jul, 2019 4 commits
  24. 19 Jul, 2019 1 commit
  25. 10 Jul, 2019 1 commit
  26. 26 Jun, 2019 2 commits
    • Robert Kimball's avatar
      fix license header · c0c87d67
      Robert Kimball authored
      c0c87d67
    • tsocha's avatar
      [ONNX] Add support for EyeLike operator (#3050) · 5e19c25c
      tsocha authored
      * [ONNX] Add eyelike operator
      
      * Use shifted square identity in square identity
      
      * Make new helper function to map onnx_types<->ngraph_types
      
      * Add fp16 support to ngraph Python API
      
      * Move helper common.hpp => common.cpp
      
      * Add checker for attribute presence
      
      * Style check
      
      * Add definition of shifted word
      
      * Change return value of attribute presence !(==) -> !=
      
      * Rename is_attribute_present => has_attribute
      
      * Clean-up headers in eyelike.cpp
      
      * Organize headers in common.*pp
      
      * Minor review fixes
      
      * Style check
      
      * Add test for EyeLike with negative k
      5e19c25c
  27. 05 Jun, 2019 1 commit
    • Robert Kimball's avatar
      Remove tensor offset from tensor read/write calls because it was never used (#2979) · c555b36a
      Robert Kimball authored
      * remove tensor offset from tensor read/write calls because it was never used
      
      * fix build errors
      
      * fix build errors
      
      * fix python test errors
      
      * more python fixes
      
      * revert change
      
      * Make old version of read/write deprecated
      
      * fix python read overload
      
      * one more try to fix python binding
      
      * fix python
      
      * yet another try
      
      * why is this so hard
      
      * fix?
      
      * add text to changes.md
      c555b36a
  28. 10 May, 2019 1 commit
    • Adam Procter's avatar
      Dynamic-shape backend API change, with prototype implementation (#2844) · 5b0c6a32
      Adam Procter authored
      * Add create_dynamic_tensor function to Backend signature
      
      * Add skeleton of dynamic wrapper class
      
      * Simple test for construction
      
      * Some progress on dynamic tensor creation
      
      * Compile dynamic wrapper into core; change config string to a factory option
      
      * Add wrapped executable, working on simple example
      
      * Add wrapped dynamic tensor
      
      * Update to match new tensor API
      
      * Update wrapper to clone the graph; basic dyn test now passes
      
      * Update call_with_validate to grok dynamic
      
      * Make the unit tests a little prettier
      
      * Make get_element_type virtual
      
      * Change dynamic tests to be backend-parametric; fix get_element_type check for dyn tensors
      
      * Add dynamic.in.cpp
      
      * CODEOWNERS entry for dynamic_wrapper
      
      * Remove overly-accommodating behavior for create_dynamic_tensor on non-dynamic BEs
      
      * Pass enable_performance_collection to wrapped compile() calls
      
      * More comments in the 'abc' test
      
      * Fix 'create' wrapper in pybind11
      
      * Remove unnecessary WrappedStaticTensor class
      
      * Better names for the classes, and add some docstrings
      
      * Fix pybind for 'create' to return shared_ptr now
      5b0c6a32
  29. 08 May, 2019 1 commit
  30. 01 May, 2019 1 commit
  31. 25 Apr, 2019 1 commit
  32. 23 Apr, 2019 1 commit