1. 04 Nov, 2019 5 commits
  2. 01 Nov, 2019 3 commits
  3. 31 Oct, 2019 4 commits
  4. 30 Oct, 2019 6 commits
  5. 29 Oct, 2019 5 commits
  6. 28 Oct, 2019 2 commits
    • Mateusz Bencer's avatar
      [SPEC] Implement StridedSlice:v1 (#3722) · bb9b5be6
      Mateusz Bencer authored
      * DynSlice was adjusted to specyfication
      
      * Fixed documentation
      
      * Fixed styles
      
      * Fixed clang warning
      
      * Introduced StridedSlice as separate op
      
      * revert dyn_slice
      
      * Fixed StrideSlice implementation
      
      * Enable downgrade pass in dynamic backend
      
      * Implemented upgrade/downgrade pass
      
      * Added serialization
      
      * Styles applied
      
      * Styles applied. Part.2
      
      * Updated dynamic backends list
      
      * Move StridedSlice outside experimental
      
      * Make Slice as v0 of StridedSlice
      
      * Styles applied
      
      * Styles applied
      
      * Fixed clang error
      
      * Code review remarks introduced
      
      * Move GenerateMask up in Opset0Downgrade to keep alphabetical sort
      
      * Style apply
      bb9b5be6
    • Leona C's avatar
      Stubs for Provenance documentation (#3781) · 5a61c135
      Leona C authored
      * Initial draft start
      
      * Add provenance doc
      
      * Another effort at resolving doc build warning
      
      * Revert file
      
      * Revise provenance intro
      
      * Ensure Clang dependencies update with new minimum version of clang needed
      
      * PR review feedback, cleanup other change added to collab_ngai
      5a61c135
  7. 25 Oct, 2019 9 commits
    • Scott Cyphers's avatar
    • Pruthvi's avatar
      Softmax + cross Entropy fusion for numerical Stabilization (#3669) · 1e2a3f34
      Pruthvi authored
      * - WIP fusion pattern for softmax + cross entropy
      
      * fix compiler error
      
      *  make summation axis integer for the fusion pattern
      
      * - Fusion pattern for sigmoid cross entropy bprop
      
      * WIP callback implementation for fused sigmod+crossentropy fprop
      
      * - implemented fprop softmax+crossentropy as single layer for numerical
      stabilization
      - added broadcasting nodes to fix elementwise assertions
      
      * Added unit test case for functionality test
      
      * Move the softmax + crossentropy fusion pass to core
      
      * i) style fix ii)added missing header
      
      * - Added new Fused Op for Softmax + CrossEntropy
      - moved the decomposition to the Softmax + CrossEntropy FusedOp
      
      * - Add SoftmaxCrossEntropy for fused tablegen
      - Add serializer support for SoftmaxCrossEntropy
      - fix documentation
      
      * Added missing json file for unit test case
      
      * Addressed PR comment
      
      * Addressed PR comments
      
      * - Fix fusion string
      
      * - Style fix
      
      * - Added Bprop for Softmax + crossEntropy
      
      * - added SoftmaxCrossEntropy support when soft_lable is provided
      - serailizer and deserializer support for SoftmaxCrossEntropyBprop
      
      * - Added support in decompose_op for SM+CE bprop when ignore_mask is specified
      
      * Updated Doc strinng
      
      * - unit test case for SoftmaxCrossEntropy backprop with soft lables
      - fixed decompose_op bug in bprop
      
      * - if soft_label=true, capture pattern only if the labels dont have one
      hot encoding
      
      * - SoftmaxCrossEntropyBprop Support if ignore_index is specified
      
      * add serialized files for unit test
      
      * - fix softmax + CE pattern bug
      - fix softmax + CE decompose_op() bug
      
      * - change reduction_axes to int64_t type in fprop and bprop ctor
      
      * - add soft_labels and ignore_index attribute to SM+CE fprop ctor
      
      * - addition asserts in unit test to ensure SM + CE fprop and bprop fusion is successful
      
      * - move reduction_axis computation to decompose_op from ctor to relax on
      dynamic shapes
      
      * Addressd PR Comments
      
      * - suppprt for SM+CE for ignore_index and softmax=false
      
      * - test case for SM+CE fprop with ignore_mask, soft_labels=false
      - fix bug in decompose_op
      
      * - refactor unit test case
      
      * - fix PDPD unit test
      
      * broadcast delta if shape mismatches
      
      * -fix bdcast issue in decompose_op
      1e2a3f34
    • 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
  8. 24 Oct, 2019 4 commits
  9. 23 Oct, 2019 2 commits