1. 23 Jul, 2019 5 commits
  2. 21 Jul, 2019 11 commits
  3. 20 Jul, 2019 1 commit
    • gaurides's avatar
      Fix perf regression in some models (#3260) · a58d3bc2
      gaurides authored
      * Fix perf regression in vgg16
      
      * Make switch generic
      
      * Remove unused variables
      
      * Review comments
      
      * Remove unused function parameters
      
      * trivial commit to restart CI
      a58d3bc2
  4. 19 Jul, 2019 13 commits
  5. 18 Jul, 2019 6 commits
  6. 17 Jul, 2019 4 commits
    • Diego Caballero's avatar
      [MLIR] Add llvm.noalias attribute to nGraph func args (#3232) · ac8e22d9
      Diego Caballero authored
      Aliasing prevents vectorization and other optimizations in LLVM (dot2d,
      for example). I found that LLVM dialect contemplates the possibility of
      previous dialects adding llvm.noalias attribute to function arguments so
      that the NoAlias attribute is generated in LLVM-IR. This should be good for
      now although we should discuss how to model this in Standard dialect and co.
      ac8e22d9
    • Diego Caballero's avatar
      [WIP] Fix unreachable warnings in constant_folding.cpp (#3146) · 0973ed90
      Diego Caballero authored
      * [WIP] Fix unreachable warnings in constant_folding.cpp
      
      * Introduce NGRAPH_UNREACHABLE macro and silent unreachable warnings
      
      * Fix typo and add missing NGRAPH_UNREACHABLE
      0973ed90
    • Adam Procter's avatar
      Some docstrings for replace_node (#3244) · 96343ffb
      Adam Procter authored
      * Some comments for replace_node
      
      * Update src/ngraph/graph_util.hpp
      
      @csullivan done figured it out
      Co-Authored-By: 's avatarChris Sullivan <chris.sullivan@intel.com>
      
      * Update graph_util.hpp
      96343ffb
    • Pruthvi's avatar
      - MLIR Binary ElementWise Op (#3223) · 073db8fb
      Pruthvi authored
      * - templatize computing binary elementwise
      - added lowering support for Add, Sub, Multiply, Divide
      
      * - Added Support for Greater and less Op
      
      * -Add support for Minimum and Maximum
      
      * use edsc::intrinsics::select instead of terenary operator
      
      * Addressed PR comments
      
      * - return after the conditional check
      073db8fb