1. 04 Dec, 2018 2 commits
  2. 30 Nov, 2018 1 commit
    • aslepko's avatar
      Update setup.py (#2148) · 281c8ea1
      aslepko authored
      * Update setup.py
      
      * Update setup.py
      
      * fix errors in edit
      
      * fix ascii error
      
      * get the right readme
      
      * rename a variable at Scott's request
      281c8ea1
  3. 28 Nov, 2018 3 commits
  4. 21 Nov, 2018 1 commit
  5. 20 Nov, 2018 1 commit
    • Chris Sullivan's avatar
      Add MaxPool as an explicit argument to MaxPoolBackprop (#2065) · 67c0488b
      Chris Sullivan authored
      * remove forward op
      
      * fix bbrks
      
      * fix pybind c-tor for max_pool_bprop
      
      * Add new c-tor to MaxPoolBackprop that takes MaxPool as an explicit argument. Add serializer support.
      
      * Add nvgpu support for new backward pooling c-tor, and calculate fprop when it isn't available.
      
      * Add extra layout for 3 arg maxpool backprop.
      
      * Formatting.
      
      * cpu_workspace_insertion to expect 3-arg maxpool bprop
      
      * GPU: add bprop_needs_pooling flag to primitive hash
      
      * Update INTELGPU arguments_check for MaxPoolBackprop and GPU invocation for avg pool.
      67c0488b
  6. 16 Nov, 2018 1 commit
  7. 06 Nov, 2018 1 commit
  8. 31 Oct, 2018 2 commits
  9. 29 Oct, 2018 1 commit
    • Rob Earhart's avatar
      Add PlaidML backend (#1888) · f0acb7da
      Rob Earhart authored
      * Add PlaidML backend
      
      * CR comments
      
      Used m_ prefix for members; removed trailing underscores
      Updated license headers
      Moved associated header inclusions to project blocks
      Wrapped comments to 100 chars
      Added missing newlines between functions
      Removed nested namespaces in operation implementations
      
      * Add earhart to CODEOWNERS
      
      * Rebase updates
      
      * style
      f0acb7da
  10. 24 Oct, 2018 1 commit
  11. 22 Oct, 2018 1 commit
    • Nick Korovaiko's avatar
      BatchNorm splitting into ops (2nd try) (#1828) · 1beec46b
      Nick Korovaiko authored
      * split bn into bn_inference bn_training
      
      * fix warnings
      
      * Add GPU support for the new BN ops (#1569)
      
      * Add GPU support and change batchnorm_globalstats test to use BNInference.
      
      * Changed test back to using BNTraining for global stats and updated cudnn backend to account for it.
      
      * Fix issues in merge with master.
      
      * Formatting.
      
      * CPU fixes
      
      * remove 5-arg training BN for now
      
      * more fixes
      
      * python batchnorm changes
      
      * fix onnx_import
      
      * fix a call BatchNormInference c-tor
      
      * yet another fix to BatchNormInference c-tor
      
      * AND yet another fix to batchnorm_inference c-tor
      
      * ops.py
      
      * address adam's feedback
      
      * Remove unnecessary parameter/argument.
      
      * remove batch_norm_training_relu_with_global_stats
      
      * remove bn_relu (training)
      1beec46b
  12. 18 Oct, 2018 1 commit
  13. 15 Oct, 2018 1 commit
  14. 29 Sep, 2018 1 commit
  15. 27 Sep, 2018 1 commit
    • Robert Kimball's avatar
      Major cleanup of runtime::TensorView (#1682) · 8caa2717
      Robert Kimball authored
      * remove get_tensor method
      
      * remove get_element_count as it is redundant to get_size
      
      * fix a few issues with examples and python wrapper
      
      * rename get_size to get_element_count and add get_size_in_bytes method
      8caa2717
  16. 12 Sep, 2018 1 commit
  17. 06 Sep, 2018 1 commit
    • Sang Ik Lee's avatar
      TopK (w/ArgMax, ArgMin python wrapper) (#1560) · 3548772b
      Sang Ik Lee authored
      * Implement TopK.
      
      * Update python wrappers for TopK, ArgMin and ArgMax.
      
      * Address some reviewer comments.
      
      * Add type property check tests for TopK.
      Set correct TopK behavior for K==0.
      
      * TopK: Add 1d and 3d unit tests.
      
      * Address more reviewer comments.
      
      * Apply code style.
      3548772b
  18. 03 Sep, 2018 1 commit
  19. 31 Aug, 2018 2 commits
    • Scott Cyphers's avatar
      Validate/infer types as a virtual function (#1463) · 132b5305
      Scott Cyphers authored
      * Validate/infer types as a virtual function
      BroadcastLike, ScalarConstantLike
      Set output shape separately from output types
      Remove some obsolete tests
      Replace *Like ops with fixed type versions
      
      * Review comments
      
      * Remove TensorViewType
      
      * Remove PrimaryTensorView
      
      * Reviewer comments
      
      * Style fix.
      
      * Another try at GPU
      
      * GPU
      
      * Simplify class hierarchy
      
      * More of previous.
      
      * Better errors
      
      * Remove unneeded classes
      
      * Merge
      
      * Update Python bindings
      
      * clang-format
      
      * Remove redundant files
      
      * Remove commented out lines
      
      * clang-format
      
      * Group includes
      
      * Missing tests
      
      * Merge error
      132b5305
    • Adam Rogowiec's avatar
      [ONNX] Expose onnx_import C++ interface in Python API. (#1499) · 12def435
      Adam Rogowiec authored
      * Expose onnx_import C++ interface in Python API.
      
      * Pretty printing.
      
      * Add Computation interface using Ngraph Function objects plus UT.
      
      * Apply code format.
      
      * Remove unnecessary stream open mode.
      
      - Code formatting.
      
      * Fix onnx_import submodule visibility.
      
      - Folder restructurization.
      
      * Fix some small errors.
      
      - Wrong function type annotations.
      - Class doc.
      - Code formatting.
      - Class inheritance from object.
      
      * Use modified Runtime class interface.
      
      * Add model for test_onnx_import.
      
      * Revert back to old API.
      
      - Use of Function object in Computation class.
      
      * Use of previous verions API.
      
      * Small refactoring
      
      * Code cleanup
      12def435
  20. 29 Aug, 2018 1 commit
  21. 27 Aug, 2018 1 commit
  22. 16 Aug, 2018 1 commit
    • tsocha's avatar
      [Py] Wrapper for LRN (#1313) · 70738769
      tsocha authored
      * [Py] Wrapper for LRN
      
      * Add missing header
      
      * Add default param values, docs and some unit tests
      
      * Fixes
      
      * clang-format
      70738769
  23. 10 Aug, 2018 1 commit
  24. 02 Aug, 2018 2 commits
  25. 27 Jul, 2018 1 commit
  26. 10 Jul, 2018 1 commit
  27. 07 Jul, 2018 1 commit
  28. 06 Jul, 2018 1 commit
  29. 03 Jul, 2018 1 commit
  30. 26 Jun, 2018 1 commit
    • 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
  31. 06 Jun, 2018 1 commit
  32. 21 May, 2018 1 commit
  33. 18 May, 2018 1 commit
  34. 17 May, 2018 1 commit