1. 14 Jan, 2019 1 commit
  2. 13 Jan, 2019 1 commit
  3. 12 Jan, 2019 4 commits
  4. 09 Jan, 2019 1 commit
  5. 08 Jan, 2019 8 commits
  6. 07 Jan, 2019 4 commits
  7. 05 Jan, 2019 1 commit
    • Chris Sullivan's avatar
      nvgpu backend without clang (#2115) · 757621be
      Chris Sullivan authored
      * Separate out external function base class.
      
      * pt1 first step to removing m_writer from GPU_Emitter.
      
      * pt2 add gpu_internal function skeleton
      
      * pt3 temporarily add to gpu_backend for prototyping.
      
      * pt4 add call frame (partial) and runtime constructor
      
      * pt 5 implement resolution for function memory reservations. build new tensor wrapper for use with call frame.
      
      * pt 6 resolve compilation errors.
      
      * pt 7 Add host emitter for emitting host primtives and implement in gpu emitter.
      
      * pt 8 add compile time manifest.
      
      * pt 9 add simple runtime tracer.
      
      * pt 10 seperate runtimes for different functions. index by function name, should switch to using function instance_id for look up performance.
      
      * pt 11 add function call interface and support nested call frames
      
      * pt 12 Reshape elimination check in emitter needs to include offset.
      
      * pt 13 Add default indentation to all op emissions in gpu external functions.
      
      * pt 14 fix constant mem reservation (should not depend on the tmeporary buffers existence check.
      
      * pt 15 backward pooling for avg pool requires only one param. rather than passing this param
      three times, this commit changes the runtime to detect if its avgpooling and pass the appropriate pointers.
      This is a hold over until max and avgpool are refactored into separate cudnn emitters.
      
      * pt 16 update cmake compatibility. gpu backend can now be built without clang via NGRAPH_DEX_ONLY.
      if this cmake variable is not define, then both clang codegen (via gpu external function) and interpreter (via gpu internal function) modes will be built.
      for now codegen is the default backend but can be explicitly disabled by setting the env. variable to NGRAPH_CODEGEN=0/FALSE/NO/etc.
      
      additional note: made codegen::CodeWriter header-only so that it can be used independently of whether the clang codegen library is compiled.
      
      * pt 17 fix issues with merge from master
      
      * pt 18 factor compile function into a few virtual calls so that common passes can be added in a single location for both backends.
      
      * pt 19 formatting
      
      * Remove code_writer.cpp from cmake and disable (temporarily) some reduce tests that require changes to gpu_emitter.cpp
      
      * Move call frame and runtime constructor implementations to source files.
      
      * Use member m_common_function_string.
      
      * Applying analogous bug fix as found in #2145
      
      * Remove underscore from GPU_CompiledFunction, GPU_ExternalFunction, and GPU_InternalFunction.
      
      * Made static members of GPUCompiledFunction static methods.
      
      * Remove 'No' codegen options, use std::toupper and applied format
      
      * review comments
      
      * Remove vector overload for resolve inputs/outputs in GPUCallFrame.
      
      * Remove diagnostic pragmas
      757621be
  8. 03 Jan, 2019 6 commits
  9. 02 Jan, 2019 2 commits
  10. 31 Dec, 2018 1 commit
  11. 29 Dec, 2018 1 commit
  12. 28 Dec, 2018 2 commits
  13. 23 Dec, 2018 2 commits
    • Robert Kimball's avatar
      Hybrid GPU Backend (#2240) · 90503652
      Robert Kimball authored
      * Add GPUH hybrid backend
      
      * update manifests
      
      * update node operator<<
      
      * fix GOE
      
      * remove debug
      
      * remove debug
      
      * more cleanup
      
      * add parent support to cpu and intel gpu backend tensors
      
      * cleanup
      
      * fix odd failure when printing node during construction
      
      * fix node output
      
      * address review comments
      
      * style
      90503652
    • Robert Kimball's avatar
      Remove code designed to support the Ninja cmake generator (#2241) · 42f16035
      Robert Kimball authored
      * update build byproducts to support ninja
      
      * remove unused cmake code
      
      * more cmake cleanup
      
      * display error message if Ninja generator is requested
      
      * fix mkldnn ext project
      
      * revert onnx cmake file
      
      * revert protobuf cmake file
      
      * revert mlsl cmake file
      
      * more fixing
      42f16035
  14. 22 Dec, 2018 4 commits
  15. 21 Dec, 2018 2 commits
    • Nishant Patel's avatar
      Support dynamic scales for Qconv's and Dequantize (#2171) · 7e310e20
      Nishant Patel authored
      * Support dynamic scales for Qconv's and Dequantize
      
      * Remove constant folding
      
      * add additional dynamic_quantize unittest
      
      * add another mxnet quantize unittest
      
      * add additional dynamic_dequantize tests
      
      * fix shape error
      
      * add dynamic signed_quantize unittest
      
      * Pass correct scale
      
      * Refactoring
      
      * Added dynamic scale support for QCBA and QCBSA
      
      * Refactor to create MKLDNN primitives on the first iteration
      
      * remove stray code
      
      * unused variables
      
      * remove extraneous line
      7e310e20
    • gcwenger's avatar
      Graph comparison testing quiet unless problem is detected (#2258) · c153ea8a
      gcwenger authored
      * Graph comparison testing quiet unless problem is detected.
      
      * Fixed file formatting
      
      * Renamed ss => msg
      c153ea8a