1. 18 Jul, 2018 3 commits
  2. 17 Jul, 2018 1 commit
    • Jayaram Bobba's avatar
      Added more convolution variants to DEX (#1223) · 9bb0b653
      Jayaram Bobba authored
      * CPU Direct Execution: Implement ConvertLayout and refactor
      
      * CPU Direct Execution: Implement Convolution
      
      * 1) Adds computation reuse to direct execution
      2) Add avg_pool, broadcast and convolution_bias to direct execution
      3) Moved some computation reuse utility functions to graph_utils
      
      * Use lists instead of vectors to avoid reallocation overheads
      
      * - Added convolution variants to direct execution
      - Removed ConvolutionBiasRelu, use ConvolutionBias instead
      - Reduced code duplication by moving functionality to mkldnn_emitter
        from cpu_emitter
      
      * Style fix
      
      * Moved mkldnn build_convolution to a templated method
      
      * Style fix
      
      * refactored mkldnn conv bprop builders
      
      * Style fix
      9bb0b653
  3. 14 Jul, 2018 1 commit
  4. 13 Jul, 2018 1 commit
  5. 12 Jul, 2018 2 commits
  6. 11 Jul, 2018 1 commit
  7. 09 Jul, 2018 2 commits
  8. 07 Jul, 2018 1 commit
  9. 06 Jul, 2018 2 commits
  10. 03 Jul, 2018 2 commits
  11. 02 Jul, 2018 3 commits
    • Sandeep's avatar
      move sigmoid to core fusion (#1132) · d05b5e39
      Sandeep authored
      * declare sigmoid for core fusion
      
      * add simple test for sigmoid
      
      * info fusion status
      
      * cp op as main op
      
      * builds as expected
      
      * move sigmoid fusion code
      
      * add reference kernel
      
      * sigmoid bprop reference kernel and clang-format
      
      * add delta to bprop
      
      * fprop called
      
      * compiles bprop
      
      * move tests
      
      * serializer support
      
      * address comments in code
      
      * add doc
      
      * naming similar to core ops
      
      * fix failing test
      
      * fix failing test
      
      * address clang issue
      
      * more changes
      
      * change test macro
      d05b5e39
    • Pruthvi's avatar
      MKLDNN BoundedRelu implementation for Relu6 (#1179) · eaa6091c
      Pruthvi authored
      * 1. Added MKLDNNN BoundedRelu op support for Relu6
      2. CpuLayout && CPU assignment pass for BoundedRelu Op
      3. Unit test inter v/s CPU for BoundedReluOp
      4. MKLDNN and default emitter code for BoundedReluOp
      
      * Removed Debug prints
      
      * 1. Added support for boundedrelu to work on any constant literal
      2. unit test case for rank2, rank3, rank4 for bounded relu without serialized graph
      
      * Removed is_six() method
      eaa6091c
    • Louis Feng's avatar
      Conv+bias shape check for better error detection (#1176) · e42e5815
      Louis Feng authored
      * Reshape bias to 1D for conv + bias bprop fusion
      
      * Reshape goe2 back to 2D before replacing
      
      * added shape checks to validate conv+bias op.
      
      * removed conv+bias backprop merge for separate PR review.
      
      * fixed conv_bias_bprop test.
      
      * minor changes to error messages.
      e42e5815
  12. 30 Jun, 2018 2 commits
    • Pruthvi's avatar
      Pruthvi/fix rnn output (#1135) · c4c24cb0
      Pruthvi authored
      * - Fixed replace output for the multi layer recurrent cell state tensor output
      - Modified rnn add_output to consider direction and n_layer while calculating the output size for mkldnn dst_layer and dst_iter
      
      * fix unit test failure
      c4c24cb0
    • Nick Korovaiko's avatar
      LoopKernel Collector (#1128) · 784735d6
      Nick Korovaiko authored
      * collector
      
      * keeping track of inputs; simplifying a merging stratey; adding LKGraph
      
      * LoopKernel Collector
      
      * address feedback
      
      * address feedback 2
      
      * address feedback 3
      784735d6
  13. 28 Jun, 2018 2 commits
  14. 26 Jun, 2018 3 commits
    • Robert Kimball's avatar
      remove unused file (#1159) · e4db82ec
      Robert Kimball authored
      e4db82ec
    • Jayaram Bobba's avatar
      Convolution sum fusion (#1146) · 82ee0a77
      Jayaram Bobba authored
      * inplace compute
      
      * fix warnings
      
      * Initial support for convolution sum fusion
      
      * Added in-place support for conv sum fusion and test cases
      
      * reverting spurious changes
      
      * Bug fix to account for inplace input in conv sum fusion
      
      * fix compilation error
      
      * Addressed PR feedback
      82ee0a77
    • Igor Kaplounenko's avatar
      OS X support (#1098) · 5395a378
      Igor Kaplounenko authored
      * updated to work with llvm 8.1 that tensorflow is built with
      
      * sane extensions on the mac
      
      * not doing rpath on apple
      
      * apply style
      5395a378
  15. 25 Jun, 2018 2 commits
    • Nick Korovaiko's avatar
      inplace compute (#1141) · 88aa9e9c
      Nick Korovaiko authored
      * inplace compute
      
      * fix warnings
      
      * address bob's feedback
      
      * bob's feedback 2
      
      * bobs feedback 3
      
      * address bob's feedback 4
      88aa9e9c
    • Robert Kimball's avatar
      Fix build for MacOS (#1112) · e2e814e3
      Robert Kimball authored
      * remove reference to ngraph core code from codegen. add stand-alone implementations of needed funcions
      
      * fixed potential pointer leak
      
      * clean up file_util
      
      * more file util cleanup, removing unused functions
      
      * interpreter works on mac
      
      * CPU and INTERPRETER build and pass unmit tests on macos
      
      * move get_directory to file_util
      
      * cleanup
      e2e814e3
  16. 22 Jun, 2018 1 commit
  17. 21 Jun, 2018 1 commit
    • Adam Straw's avatar
      Constant folding for Reshapes (#1130) · b9a77a9d
      Adam Straw authored
      * adding constant propagation pass
      
      * adding test/constant_propagation.cpp
      
      * template make_constant_reshape function
      
      * code review feedback
      
      * add missing files
      b9a77a9d
  18. 20 Jun, 2018 1 commit
  19. 19 Jun, 2018 2 commits
    • Robert Kimball's avatar
      Bob/cmake (#1118) · 4847b2de
      Robert Kimball authored
      * fix mkldnn rpath
      
      * fix compile warning
      
      * close backends when exiting
      
      * set backend output directory of backends to the ngraph output directory
      
      * Aprocter/patch patch (#1119)
      
      * Move more rpath stuff inside if(NOT APPLE)
      
      * fix repatch problem with mkldnn library
      
      * add updated patch command for older versions of cmake
      4847b2de
    • Nick Korovaiko's avatar
      Loop Kernel Op + Tests (#1028) · 96295aaa
      Nick Korovaiko authored
      * loop kernel + tests
      
      * remove commented out code
      
      * remove commented code; add comments
      
      * copy_with_new_args +test
      
      * add comment
      
      * fix comp errors
      96295aaa
  20. 16 Jun, 2018 2 commits
  21. 15 Jun, 2018 2 commits
  22. 13 Jun, 2018 3 commits
    • Robert Kimball's avatar
      Ubuntu 18 build support (#1101) · 838ba3f1
      Robert Kimball authored
      * backend libraries now found in tree
      
      dynamically read header search paths
      
      fix running from install
      838ba3f1
    • Nick Korovaiko's avatar
      Group Convolution (#1041) · 4a2c3c9c
      Nick Korovaiko authored
      *  group conv init
      
      * add GroupConvolution op; refine checks in fusion logic
      
      * add an emitter, cpu assigment
      
      * cpu_layout
      
      * add checks to algebraic simplification
      
      * updating emitter logic for groupconvolution
      
      * working before refactoring
      
      * moving primitive creation logic to mkldnn_emitter
      
      * group convolution graph test
      
      * rename an opt
      
      * address jbobba's feedback
      4a2c3c9c
    • Fenglei's avatar
      gpu deconvolution (#1099) · 40069d27
      Fenglei authored
      * add pad_dilation function
      
      * add dilation to gpu_emitter
      
      * add CoordinateDiff constructor to GPUShape
      
      * remove unecessary cast
      
      * working version for forward
      
      * forward working
      
      * forward test all pass
      
      * deconvolution forward
      
      * backward data dilation
      
      * forward test passed
      
      * initial to 0
      
      * fix bug for get_padded_shape and clang format
      
      * code style, change variable names
      
      * refactor convolution conditions
      
      * fix bug padding_below_diff
      
      * change pad_dilation to pad_dynamic, compare to pad
      
      * remove passed convolution test from skip list, clang format
      
      * change pad to use GPUShape
      40069d27