1. 04 Oct, 2019 1 commit
  2. 03 Oct, 2019 1 commit
  3. 02 Oct, 2019 1 commit
  4. 01 Oct, 2019 2 commits
  5. 30 Sep, 2019 1 commit
  6. 24 Sep, 2019 2 commits
  7. 23 Sep, 2019 1 commit
  8. 20 Sep, 2019 2 commits
    • Ewa Tusień's avatar
      [ONNX] Add support for negative axes (#3643) · 0c181e9d
      Ewa Tusień authored
      0c181e9d
    • Sang Ik Lee's avatar
      LayerNorm (#3630) · 1a5288ab
      Sang Ik Lee authored
      * Constructors.
      
      Type prop.
      
      Decompose LayerNorm.
      
      Add serialize.
      
      * Add dummy test case.
      
      * Add dummy type prop test.
      
      * Fix some build errors.
      
      * Remove build errors.
      
      * Update decompose for bprop.
      
      * Change begin_norm_axis default value to 1.
      
      * Style.
      
      * Reorder class members.
      
      * Add actual type prop tests.
      
      * Add fprop test.
      
      * Working on bprop test.
      
      * Bprop tests.
      
      * Allow flattened scale and bias.
      
      * Add support for flattened scale and bias.
      
      * Fix incorrect type_name.
      
      * PlaidML: Decompose fused_op LayerNorm
      
      * Update Backprop constructors.
      
      * PlaidML: Add missing header file.
      
      * Remove doc about removed param.
      
      * Fix type prop tests.
      
      * PlaidML: Disable unit test.
      
      * Fix stats flattening axes bug.
      1a5288ab
  9. 18 Sep, 2019 2 commits
  10. 13 Sep, 2019 1 commit
  11. 10 Sep, 2019 5 commits
    • Adam Procter's avatar
      67483af0
    • Nagy Mostafa's avatar
      [MLIR] Remove Fake Instructions (#3568) · 1fb6fa96
      Nagy Mostafa authored
      * WIP
      
      * Fixes
      
      * Increase bitwidth for arg idx attrib
      
      * Minor fixes
      
      * style-apply
      1fb6fa96
    • Michal Chruscinski's avatar
      nGraph-ONNX CI improvement (#3329) · 8757f8e3
      Michal Chruscinski authored
      * nGraph-ONNX CI improvement
      
      - Added parallel CI on many SKUs,
      - Jenkinsfile written in Declarative Pipeline which allows displaying sequential stages for parallel branches in Blue Ocean
      - Moved proper CI code to ngraph-onnx repository
      - Moved base_image_builder to ngraph-onnx repository
      
      * Fix license header
      
      * try catch for git info retrieval
      
      * Add unsupported ops to iGPU backend
      
      * Revert previous change
      8757f8e3
    • Diego Caballero's avatar
      [MLIR] Introduce ngraph-opt tool (#3560) · f159e196
      Diego Caballero authored
      * [MLIR] Enable LIT testing in CMAKE
      
      This PR enables LIT testing in nGraph for MLIR Compiler, introduced in
      PR3523. We can now do `make check-mlir-lit` to run LIT tests.
      
      * Address feedback
      
      * Revisit PR after cmake clean-up
      
      * [MLIR] Introduce ngraph-opt tool
      
      To be used, among other things, for LIT testing.
      `elementwise_binary_ops.mlir` shows a simple LIT test
      using ngraph-opt.
      
      Dummy affine_lowering/lit_test.mlir test that served as initial testing
      of LIT tool configuration is now removed.
      
      * Address feedback
      f159e196
    • Nagy Mostafa's avatar
      [MLIR] Bump commits (#3584) · 3287ca6f
      Nagy Mostafa authored
      * Bump MLIR version and minor fixes in nGraph
      
      * advance commit ids
      
      * fix commit id
      3287ca6f
  12. 09 Sep, 2019 3 commits
  13. 06 Sep, 2019 11 commits
  14. 05 Sep, 2019 7 commits
    • Amy Zhuang's avatar
      Use mkl-dnn v1.0 or v0.x depending on compilation flag. (#3227) · e26d602a
      Amy Zhuang authored
      * Use mkl-dnn v1.0 or v0.x depending on compilation flag.
      
      * Change cpu builder files.
      
      * Modify cmake files.
      
      Use mkldnn-v1.0 for DEX if NGRAPH_USE_MKLDNN_V1 is set to true, otherwise use mkldnn-v0.x.
      
      CODEGEN only builds with mkldnn-v1.0.
      
      * Implement mkldnn utility functions for mkldnn-v1.0.
      
      User mode scratchpad management for mkldnn-v1.0.
      
      * Query scratchpad size and allocate a buffer of max scratchpad size.
      
      * Do not create mkldnn::memory when query scratchpad size of Reorder.
      
      Modify mkldnn utility functions.
      
      Fix convolution_forward_init and inner_product_forward_init.
      
      Modify CPURuntimeContextCG.
      
      * Add user mode scratchpad to CODEGEN.
      
      * mkldnn-v1.0 splits LSTM states. Update Rnn/Lstm Op accordingly.
      
      * Address PR feedback: use MKLDNN_MAJOR_VERSION.
      
      * Modify cpu rnn fusion pass and related unit tests.
      
      * Change Rnn/Lstm arg types to Output.
      
      * Fix Lstm for CODEGEN.
      
      * Set native layout for Slice when input format is blocked.
      
      * Do not print scratchpad size.
      
      * Change external_mkldnn_v1.cmake.
      
      Fix a typo.
      
      * Add mkldnn_v1.patch for mkldnn-v1.0.
      
      * Address PR feedback.
      
      * Define MKLDNN_ERROR_MESSAGE.
      
      * Address PR feedback: change to NGRAPH_USE_LEGACY_MKLDNN.
      
      * Fix a bug.
      
      * Remove unused variable.
      
      * Fix compiler warnings.
      
      * Fix a bug for CODEGEN.
      
      * Move variable only needed for mkldnn-v0.20 inside #if.
      
      * Remove unused variables.
      
      * No in place Reshape rotation for blocked data layout with mkldnn-v1.0.
      
      * Modify mkldnn_v1.patch to force mkldnn to link to libiomp.
      
      * Fix style.
      
      * Change path for find_library and find_file.
      
      * Do not insert ConvertLayout before/after Quantize/DeQuantize for blocked data layout.
      
      * Write strides information to visualized graph.
      
      * Move variables only needed for mkldnn-v0 under #if.
      
      * Move more variables in rnn fusion.
      
      * Fix ConvertLayout constant folding for mkldnn-v1.0.
      e26d602a
    • Robert Kimball's avatar
      Add missing includes to power.hpp (#3567) · cc1daca8
      Robert Kimball authored
      * Add missing includes
      
      * style
      cc1daca8
    • Nagy Mostafa's avatar
      [MLIR] Clear SubGraph construction info (#3559) · bbe4735e
      Nagy Mostafa authored
      * Don't hold to shared pointers after sub-graph extraction pass is done
      
      * style
      bbe4735e
    • Adam Procter's avatar
      Add replace_nodes function (#3468) · 0a6f5bca
      Adam Procter authored
      * Add replace_by_friendly_name function
      
      * Add replace_nodes function
      
      * Nuke replace_by_friendly_name
      
      * Modify replace_nodes to handle parameter replacement
      0a6f5bca
    • Łukasz Durka's avatar
      8e7d10df
    • Tomasz Socha's avatar
      [FUSED] Add new MatMul fused operator (#3330) · 7df89837
      Tomasz Socha authored
      * Move required reshape helpers to builders
      
      * Remove warning from matmul_factory
      
      * Rid off onnx dependency from matmul factory
      
      * Move malmul_factory into builders
      
      * Add implementation of fused MatMul
      
      * Add MatMul to serializer
      
      * Add type_prop tests
      
      * Remove reference.
      
      * Make more metods private
      
      * Use protected instead of private
      
      * Fix compilation issues
      
      * Change construction of matmul_factory in matmul op
      
      * Add MatMul operator into switch of is_supported_impl function
      
      * Change transpose flags from int to bool
      
      * Review Fix I
      
      * Update MatMul op
      
      * Use OutputVector instead of NodeVector in MatmulFactories
      
      * Fix usage of OutputVector
      
      * Convert more shared_ptrs to Outputs
      
      * Fix comments after merge
      
      * Fix comments after merge II
      
      * Fix comments after merge III
      7df89837
    • mbencer's avatar
      c732705f