1. 23 Jun, 2018 1 commit
  2. 22 Jun, 2018 2 commits
  3. 21 Jun, 2018 2 commits
  4. 20 Jun, 2018 3 commits
  5. 19 Jun, 2018 4 commits
    • Nick Korovaiko's avatar
      add check to make sure we don't replace unreachable nodes (#1039) · 85f04dfb
      Nick Korovaiko authored
      * add assert to make sure we don't replace unreachable nodes
      
      * fix unittest failures
      
      * sparsity fix
      85f04dfb
    • 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
    • Jayaram Bobba's avatar
      Minor bug fix in function outlining (#1056) · 5203a301
      Jayaram Bobba authored
      * Move to depth-first serialization of graph for better cache behavior
      
      * Added comment
      
      * Force 64 byte stack alignment to avoid crashes from unaligned AVX loads/stores
      
      * Revert "Force 64 byte stack alignment to avoid crashes from unaligned AVX loads/stores"
      
      This reverts commit 84346420fbd0fbd5d05a4a1e8f5fae12bdc7348b.
      
      * revert to breadth-first serialization
      5203a301
  6. 18 Jun, 2018 6 commits
  7. 17 Jun, 2018 2 commits
  8. 16 Jun, 2018 3 commits
    • Fenglei's avatar
      gpu reverse sequence (#1109) · bdfcf5b4
      Fenglei authored
      * add reverse_sequence
      
      * fix bugs, compiled
      
      * fix index bug
      
      * fix bug and clang format
      
      * correct function name
      
      * clang format
      
      * remove extra ;
      
      * remove tests from skip list
      
      * add backward support, skip tests
      
      * add back template<> line
      
      * remove unecessary lines in kernel
      bdfcf5b4
    • Nick Korovaiko's avatar
      Strided Convolution (#1058) · 94844d13
      Nick Korovaiko authored
      * optimized strided convolutions
      
      * clean up debug messages
      
      * format fixes
      
      * more tests
      
      * even more tests
      
      * adapt to resnet-50.v1
      
      * fix format errors; remove changes from diff PRs
      94844d13
    • Nick Korovaiko's avatar
      enable cse for reduction ops (#1030) · 656dfa55
      Nick Korovaiko authored
      * enable cse for reduction ops
      
      * reduction tests
      656dfa55
  9. 15 Jun, 2018 8 commits
  10. 14 Jun, 2018 3 commits
  11. 13 Jun, 2018 6 commits
    • Jaikrishnan Menon's avatar
      CPU Direct Execution: Implement Ceiling · c829a9c7
      Jaikrishnan Menon authored
      Also, formatting fixes
      c829a9c7
    • Jaikrishnan Menon's avatar
      CPU Direct Execution: Implement Relu · b33fc6a2
      Jaikrishnan Menon authored
      b33fc6a2
    • Jaikrishnan Menon's avatar
      9d0a6998
    • 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