1. 20 Jul, 2018 18 commits
  2. 19 Jul, 2018 2 commits
    • L.S. Cook's avatar
      update version and add glossary defs (#1215) · 1df7602e
      L.S. Cook authored
      * update version and add glossary defs
      
      * clean up graph rewrite code blocks
      
      * PR feedback
      
      * add better details to LSTM def
      
      * RNN def generalized
      
      * adding fancy formulas to RNN def glossary entry
      
      * Address API breaking change in PR 1164
      
      * all of the documentation re default install path needed updated with pr 1164
      
      * Assert manual compilation process to build ngraph_dist locally as a sensible default
      1df7602e
    • shssf's avatar
      IntelGPUBackend: const, div, maxpool and max operations (#1234) · 8908c9df
      shssf authored
      * IntelGPUBackend: const, div, maxpool and max operations
      
      * IntelGPUBackend: negative, abs, relu, sqrt, tanh and substract operations
      
      * Update intelgpu_backend.cpp
      8908c9df
  3. 18 Jul, 2018 13 commits
  4. 17 Jul, 2018 2 commits
    • Jaikrishnan Menon's avatar
    • 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
  5. 14 Jul, 2018 4 commits
  6. 13 Jul, 2018 1 commit
    • Chris Sullivan's avatar
      Refactored GPU backend state into BackendContext (#1186) · 55a25d41
      Chris Sullivan authored
      * Refactored GPU backend state into BackendContext and moved it to the highest level GPU_Backend.
      Some bugs have appeared in so doing. Needs investigation.
      
      * extra *block_size
      
      * change grid_size to threads
      
      * Bug fix in softmax cache parameters.
      
      * Additional bug fix for maxpool1d cache parameters.
      
      * Bug fix in softmax cache parameters.
      
      * Additional bug fix for maxpool1d cache parameters.
      
      * Remove temporary print statements.
      
      * Use nthreads in primitive hash.
      
      * Switched from using stack references for cudnn and cublas handles to heap pointers held only the c-struct GPURuntimeContext but managed by the GPU_Backend.
      
      * Refactored the use of GPURuntimeContext* ctx throughout the emitters.
      
      * Use std::prev instead of operator-- for memory iteratory capture
      
      * bug fix from abaf1d7
      55a25d41