1. 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
  2. 21 Oct, 2019 3 commits
  3. 18 Oct, 2019 4 commits
  4. 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
  5. 16 Oct, 2019 1 commit
  6. 15 Oct, 2019 4 commits
  7. 14 Oct, 2019 2 commits
  8. 12 Oct, 2019 1 commit
  9. 11 Oct, 2019 8 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
    • Mateusz Bencer's avatar
      [SPEC] Implement ReduceSum:v1 and ReduceProd:v1 downgrade pass (#3676) · 5a6cf4d0
      Mateusz Bencer authored
      * Implemented downgrade pass
      
      * Using Pad:v1 in onnx_importer
      
      * Downgrade transformation doc fixed
      
      * Added downgrade pass for reduce_prod
      
      * Using ReduceProd:v1 in onnx_importer
      
      * Added ReduceProd:1 downgrade support
      
      * Clang styles applied
      
      * Downgrade pass added for all backends
      
      * Added downgrade pass for reduce_prod
      
      * Using ReduceProd:v1 in onnx_importer
      
      * Added ReduceProd:1 downgrade support
      
      * Clang styles applied
      
      * Apply suggestions from code review
      
      Changed pad_opset_pass to opset_downgrade
      Co-Authored-By: 's avatarTomasz Socha <tomasz.socha@intel.com>
      
      * Fix names
      
      * Apply suggestions from code review
      
      Removed redundant include, renamed tests
      Co-Authored-By: 's avatarTomasz Socha <tomasz.socha@intel.com>
      
      * Changed order of passes
      
      * Changed way of op casting
      
      * Changed order of passes
      
      * Changed downgrade pass order of CPU backend
      
      * Changed downgrade pass order of CPU backend
      
      * styles applied
      
      * [SPEC] Fixed NormalizeL2 (#3695)
      
      * Fixed NormalizeL2
      
      * style applied
      
      * Fixed axes rank checking
      
      * removed redundant comma
      
      * Set keep_dims by function argument
      
      * Improved error message
      
      * Fixed casting method
      
      * fix styles
      
      * styles applied
      
      * Fixed normalize tests
      
      * unit tests names refactor
      Co-Authored-By: 's avatarMichał Karzyński <postrational@users.noreply.github.com>
      
      * Disable not supported PlaidML tests
      
      * Added missing EOF
      5a6cf4d0
    • aslepko's avatar
      Merge pull request #3753 from NervanaSystems/nmostafa/update_mlir · 6291f0aa
      aslepko authored
      Bump MLIR version
      6291f0aa
  10. 10 Oct, 2019 11 commits