1. 25 Oct, 2019 7 commits
    • mozga-intel's avatar
      Concat operator, negative indexing support (#3708) · f349593d
      mozga-intel authored
      * Concat operator is updated to support dynamic_shape
      1) Added new concat_negative_indexing test
      2) Replaced size_t -> int64_t
      3) Support for a negative indexing, calculate axis = axis + int64(input_rank)
         if (axis < 0) { axis = axis + int64_t(this_input_rank); }
      
      * Remove unwanted #include "ngraph/op/constant.hpp" header
      
      * Refactoring:
      1) The name of variable is replaced: m_concatenation_axis -> m_axis
      
      * Concat negative indexing test is adjusted to support dynamic_shape tensor
      auto pshape_a = PartialShape::dynamic(); for each tensor {a,b,c} result tensor has dynamic_shape
      
      * The backend supports dynamic shapes
      auto backend = runtime::Backend::create("${BACKEND_NAME}", true);
      
      * Other shape is supported by concat:
      set_output_type(0, inputs_et, PartialShape::dynamic(concatenation_axis_output_dim));
      
      * The NODE_VALIDATION_CHECK was moved up to be for a dynamic_shape
      
      * [Test] The shape of output tensor was changed
      [Concat CPU] Added support for a negative indexing on a cpu
      
      * Review changes:
      1) Added axis re-calculate for a reference version of concat
      2) axis is not replied
      
      * Review changes: support for a negative axis
      
      * Comment about variable is added to concat.hpp file
      Removed unused variable
      f349593d
    • Ilya Churaev's avatar
      Added auto generated configs for nGraph (#3790) · 782afe31
      Ilya Churaev authored
      * Added auto generated configs for nGraph
      
      * Fixed absolute paths
      
      * Fixed comments
      782afe31
    • Amy Zhuang's avatar
      Add constant folding for v1 reduce ops. (#3791) · 388f449b
      Amy Zhuang authored
      * Add constant folding for v1 reduce ops.
      
      * Add reference/mean.hpp.
      
      * Remove extra semicolon.
      
      * Address PR feedback.
      388f449b
    • Amy Zhuang's avatar
      Add constant folding for Squeeze and Unsqueeze. (#3794) · 1ad0d723
      Amy Zhuang authored
      * Add constant folding for Squeeze and Unsqueeze.
      
      * Address PR feedback.
      1ad0d723
    • Robert Kimball's avatar
      Fix some copyright dates (#3805) · a24a44e2
      Robert Kimball authored
      a24a44e2
    • baojun's avatar
      Add partial slice fused op for pdpd use (#3759) · f09b512e
      baojun authored
      * add partial slice op placeholder
      
      * fprop implemented
      
      * add a dynamic ut
      
      * implement bprop
      
      * support decrease axis
      
      * add bprop ut
      
      * address comment
      
      * use descriptive var name
      f09b512e
    • Scott Cyphers's avatar
      Fix mac clang compiler error (#3806) · 1d36daea
      Scott Cyphers authored
      1d36daea
  2. 24 Oct, 2019 4 commits
  3. 23 Oct, 2019 2 commits
  4. 22 Oct, 2019 3 commits
    • Robert Kimball's avatar
      Debug cleanup when running unit tests (#3793) · 2856e1c1
      Robert Kimball authored
      * Remove debug output
      
      * More cleanup
      2856e1c1
    • Tomasz Socha's avatar
      [FUSED] Add lstm sequence operator (#3595) · 698aeb2f
      Tomasz Socha authored
      * unfold attributes
      
      * Remove unnecesary if
      
      * Rename run() -> lstm_pass()
      
      * Unify usage of LSTMForward for one and bi directional LSTM
      
      * Unify LSTMForward return values for one and bi directional LSTM
      
      * Dirty moving LSTMForward into fused directory
      
      * Accept lstm direction as string instead of enum
      
      * Fused op which uses decompose_op in onnx_importer
      
      * Rename LSTMForward -> LSTMSequence
      
      * Split LSTMSequence to cpp and hpp
      
      * Remove LSTMDirection enum
      
      * Add getters for class fields
      
      * Adjust constructors
      
      * Add direction validation.
      
      * Add support of LSTMSequence op in serializer
      
      * Reorder fused op input order
      
      * Style fix
      
      * Fix for reorder of inputs
      
      * Use NodeTypeInfo instead of static string
      
      * Node -> value in doc
      
      * Add doc for prepare_input method
      
      * Fix shape inference
      
      * Use enum instead of string for direction
      
      * Add Type prop unit test
      
      * Fix style
      698aeb2f
    • Adam Rogowiec's avatar
      d92ef6b6
  5. 21 Oct, 2019 3 commits
  6. 18 Oct, 2019 4 commits
  7. 17 Oct, 2019 3 commits
    • Jayaram Bobba's avatar
    • Michał Karzyński's avatar
      [ONNX] Add support for ONNX 1.6 TopK (#3771) · 7617d385
      Michał Karzyński authored
      * Minor cleanup
      
      * Add support for ONNX 1.5 version of TopK
      
      * Add unit tests
      
      * Style apply
      
      * Exclude failing tests
      
      * Exclude failing tests
      
      * Add support for ONNX 1.6 TopK attribures: larges and sorted
      
      * Support for ONNX 1.6 TopK
      
      * If k_node is a Constant, recreate as constant with Shape{}
      
      * Extend `interpret_as_scalar` function
      
      * Extend `interpret_as_scalar` function
      
      * Remove merge artifact
      
      * Add doc string
      
      * Exclude failing tests
      
      * Exclude failing tests
      
      * Refactor function
      
      * Remove unnecessary template param
      
      * Use get_k function in OpSet 10 TopK
      
      * Style apply
      
      * Remove merge artifact
      
      * Add tests for `interpret_as_scalar`
      
      * Revert "Add tests for `interpret_as_scalar`"
      
      This reverts commit 8b85965acb39c75ff9e66b06ad8f64df16e1a9da.
      7617d385
    • Jayaram Bobba's avatar
      [SPEC] Added support for v1 Broadcast op specification (#3737) · e741f8f1
      Jayaram Bobba authored
      * - Added support for v1 Broadcast op specification
      - Added upgrade/downgrade conversions between v0 and v1
      
      * Added unit test for pdpd broadcast
      
      * Make numpy default autobroadcast type and some style fixes
      
      * Added support in Dynamic wrapper for dyn elimination and copied over unit tests from DynBroadcast
      
      * Addressed PR feedback
      
      * Addressed PR feedback on documentation
      e741f8f1
  8. 16 Oct, 2019 1 commit
  9. 15 Oct, 2019 4 commits
  10. 14 Oct, 2019 2 commits
  11. 12 Oct, 2019 1 commit
  12. 11 Oct, 2019 6 commits
    • Amy Zhuang's avatar
      81818b79
    • Scott Cyphers's avatar
      f1f85448
    • Michał Karzyński's avatar
      Unify test names for opset transformation passes (#3755) · d0dd4d6c
      Michał Karzyński authored
      * Unify test names for opset transformation passes
      
      * Unify downgrade test names
      d0dd4d6c
    • Ewa Tusień's avatar
      [ONNX] Add Expand op to ONNX importer. (#3692) · b26a53e2
      Ewa Tusień authored
      * [ONNX] Added Expand op to ONNX importer.
      
      * Added support only for static broadcating.
      
      * Changed version of set from 8 to 1.
      
      * Added test for expand op.
      b26a53e2
    • 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
    • baojun's avatar
      Make softmax axes dynamic (#3601) · 47a727a6
      baojun authored
      * make axes dynamic
      
      * add ut
      
      * update softmax deserializer
      
      * check axes to be constant
      
      * remove duplicates
      47a727a6