1. 12 Mar, 2020 1 commit
  2. 01 Jan, 2020 1 commit
  3. 21 Sep, 2019 1 commit
  4. 22 Feb, 2019 1 commit
  5. 03 Jan, 2019 1 commit
  6. 19 Dec, 2018 1 commit
  7. 07 Dec, 2018 1 commit
    • Robert Kimball's avatar
      Backend API change pre-work (#2064) · e0933553
      Robert Kimball authored
      * change compile call to return Handle
      
      * make CPU require compile() before call()
      
      * fix unit tests to call compile() before call()
      
      * fix failing ops
      
      * update unit test
      
      * revert some changes
      
      * more fixups
      
      * more diff cleanup
      
      * a few more issues addressed
      
      * more fixes
      
      * update API
      
      * more updates
      
      * fix test_ops.py
      
      * fix
      
      * another attempt to fix
      
      * fix unit test
      
      * fix test error
      e0933553
  8. 16 Nov, 2018 1 commit
  9. 29 Sep, 2018 1 commit
  10. 29 Aug, 2018 1 commit
  11. 13 Aug, 2018 1 commit
  12. 13 Apr, 2018 1 commit
    • Robert Kimball's avatar
      Remove legacy Backend API (#848) · ec501913
      Robert Kimball authored
      * remove deprecated
      
      * remove all legacy Backend API usage
      
      remove deprecated files
      
      * pull in changes from master
      
      * fix GPU calls
      
      * disable tests in convolution generator
      
      * update per PR comments. Enable performance counter feature.
      
      * update per PR comments
      
      * fix build error
      
      * fix conditionally compiled test :(
      ec501913
  13. 03 Apr, 2018 1 commit
  14. 27 Mar, 2018 2 commits
    • Fenglei's avatar
      gpu reshape n-dimension (n>2) (#716) · 4e78f25d
      Fenglei authored
      * add nd reshape
      
      * compiler and no crash with wrong result version
      
      * change output_stride to trans_stride, which transform input idx to output idx
      
      * using vector instead of c array
      
      * remove delete
      
      * using const and reference to pass string and array
      
      * change 'unimplement' comments, remove extra indents
      
      * format and cast size_t to int
      4e78f25d
    • adstraw's avatar
      tensor (sequence) mask (#735) · b3896731
      adstraw authored
      * tensor (sequence) mask
      
      * convert sequence to match input type
      
      * update API to take batch axis
      b3896731
  15. 21 Mar, 2018 1 commit
  16. 27 Feb, 2018 1 commit
  17. 12 Feb, 2018 1 commit
  18. 08 Feb, 2018 1 commit
  19. 20 Jan, 2018 2 commits
  20. 29 Dec, 2017 1 commit
    • Scott Cyphers's avatar
      Get value types out of public API, multi-values from Function (#340) · d092cb91
      Scott Cyphers authored
      * Function can have multiple results
      Remove external use of ValueType, TupleType, Tuple
      Remove many external uses of Output and Input
      
      * corresponding CPU backend changes
      
      * Update master changes.
      
      * Remove type arg from Function, add changes.md
      
      * Merge changes.
      
      * Move bodies to .cpp, add brief doc
      
      * Merge CPU changes.
      
      * Remove xla includes from non-xla files
      
      * Remove xla from tests
      
      * First part of xla tuple support
      
      * change fprop_cache to assume multi-output bprop functions
      
      * New wrappers for handling tuples with XLA
      
      * Review comments
      
      * remove old xla files
      
      * fix merge errors
      
      * hand edit models to use multi output instead of tuples
      d092cb91
  21. 21 Dec, 2017 2 commits
  22. 30 Nov, 2017 1 commit
  23. 28 Nov, 2017 1 commit
    • Matthew Brookhart's avatar
      Reduce Ops in the Builder (#252) · bdd0bc62
      Matthew Brookhart authored
      * First compiling pass, doesn't link tests, looks like templates aren't properly initialized?
      
      * Make reduce inline, compiles, sum passes test
      
      * Initial working reduce op builder
      
      * Add Std dev, Variance, L2Norm. Tests fail because Power isn't actually implemented in ngraph++ yet
      
      * Add Doc Strings, slight refactor
      
      * fix tests after master merge
      
      * Fix style issues raised in PR review
      
      * Switch to Sum-based ops instead of Reduce-based ops for simpler autodiff.
      
      * Add requested TODO comments
      
      * Use all_close for tests
      
      * Remove product op
      bdd0bc62