1. 01 Aug, 2019 4 commits
  2. 31 Jul, 2019 9 commits
  3. 30 Jul, 2019 3 commits
    • Adam Procter's avatar
      ConstantFolding for Not (#3326) · 5ece6de2
      Adam Procter authored
      * CF for Sign, and extend element type capabilities for unary arithop CF
      
      * CF for Ceiling and Floor
      
      * Update CPU CF builders
      
      * Update CPU CF builders
      
      * CF for Not
      
      * Add tests for new CPU CF folders
      
      * Add tests for recently added CPU CF functors
      
      * Add tests for non-CPU ceiling/floor CF
      
      * Unit tests
      
      * Add test for CPU folder
      5ece6de2
    • Adam Procter's avatar
      ConstantFolding for Ceiling and Floor (#3320) · 09952c0b
      Adam Procter authored
      * CF for Sign, and extend element type capabilities for unary arithop CF
      
      * CF for Ceiling and Floor
      
      * Update CPU CF builders
      
      * Update CPU CF builders
      
      * Add tests for new CPU CF folders
      
      * Add tests for recently added CPU CF functors
      
      * Add tests for non-CPU ceiling/floor CF
      
      * Unit tests
      09952c0b
    • Adam Procter's avatar
      Add tests for recently added CPU CF functors (#3328) · 831df41d
      Adam Procter authored
      * Add tests for new CPU CF folders
      
      * Add tests for recently added CPU CF functors
      831df41d
  4. 29 Jul, 2019 4 commits
  5. 28 Jul, 2019 2 commits
  6. 27 Jul, 2019 2 commits
  7. 25 Jul, 2019 1 commit
  8. 24 Jul, 2019 1 commit
  9. 23 Jul, 2019 4 commits
  10. 22 Jul, 2019 1 commit
  11. 19 Jul, 2019 4 commits
  12. 18 Jul, 2019 1 commit
  13. 16 Jul, 2019 4 commits
    • Mohammad Mahbubuzzaman's avatar
      Provenance fix for new nodes during replace (#3202) · 824d6144
      Mohammad Mahbubuzzaman authored
      * Fixes pprovenance issue for replace_node() when new nodes are added by the replacement.
      
      * Updates unit test comment and adds one more.
      824d6144
    • Adam Rogowiec's avatar
      [ONNX] Use nGraph auto padding in ONNX operators. (#3175) · 599f0f21
      Adam Rogowiec authored
      * Helper function converting ONNX auto_pad into nGraph PadType.
      
      Separate auto_pad support from explicitly provided paddings.
      
      * Add support for more PadType values for GroupConvolutionTranspose.
      
      * Pass auto_pad attribute value to nGraph operator.
      
      * Helper class for generating ONNX pooling operators.
      
      * Pass auto pad type to nGraph Convolution operator.
      
      * Use pooling factory.
      
      * Helper function calculating pads taking into account auto_pad attribute.
      
      * Fix attribute type in UT ONNX models.
      
      * Take auto_pad attribute value into account.
      
      * Rename helper function and update doc.
      
      * Retain old API for GroupConvoloutionTranspose
      
      * Remove PadType::INVALID and use other approach to validate auto_pad
      value.
      
      * Style apply.
      
      * Fix clang err on documentation style.
      
      * Refactor get_auto_pad method.
      
      * Fix segfaults on CentOS 7.
      
      When using const reference the node member m_attributes had invalid
      data.
      599f0f21
    • Adam Rogowiec's avatar
      [ONNX] Fix backward pass for bidirectional LSTM. (#3194) · 7ccb6cf1
      Adam Rogowiec authored
      * Fix used operator for reversing input sequences in LSTM.
      
      * Fix backward pass for bidirectional LSTM.
      
      * UT for LSTM with sequence_lens shorter than input sequence size.
      
      * Skip LSTM UT using ReverseSequence since it is not supported yet on
      PlaidML.
      7ccb6cf1
    • Scott Cyphers's avatar
      Maintain control_deps in replace_node (#3138) · 13210138
      Scott Cyphers authored
      * Maintain control_deps in replace_node
      Add helpers for mainting control_deps in other ways
      Fix compiler warning about shadowing a local
      
      * Clone control dependencies
      
      * Export symbol for Windows
      
      * Callers of copy_with_new_args
      
      * Need copy
      
      * Need shared pointer
      
      * GOE needed
      
      * goe
      
      * goe
      
      * Need pointer
      
      * Review comments
      13210138