1. 02 Aug, 2019 1 commit
  2. 30 Jul, 2019 1 commit
  3. 29 Jul, 2019 1 commit
  4. 25 Jul, 2019 1 commit
  5. 24 Jul, 2019 2 commits
  6. 23 Jul, 2019 2 commits
  7. 22 Jul, 2019 4 commits
  8. 19 Jul, 2019 1 commit
  9. 10 Jul, 2019 1 commit
  10. 26 Jun, 2019 2 commits
    • Robert Kimball's avatar
      fix license header · c0c87d67
      Robert Kimball authored
      c0c87d67
    • tsocha's avatar
      [ONNX] Add support for EyeLike operator (#3050) · 5e19c25c
      tsocha authored
      * [ONNX] Add eyelike operator
      
      * Use shifted square identity in square identity
      
      * Make new helper function to map onnx_types<->ngraph_types
      
      * Add fp16 support to ngraph Python API
      
      * Move helper common.hpp => common.cpp
      
      * Add checker for attribute presence
      
      * Style check
      
      * Add definition of shifted word
      
      * Change return value of attribute presence !(==) -> !=
      
      * Rename is_attribute_present => has_attribute
      
      * Clean-up headers in eyelike.cpp
      
      * Organize headers in common.*pp
      
      * Minor review fixes
      
      * Style check
      
      * Add test for EyeLike with negative k
      5e19c25c
  11. 05 Jun, 2019 1 commit
    • Robert Kimball's avatar
      Remove tensor offset from tensor read/write calls because it was never used (#2979) · c555b36a
      Robert Kimball authored
      * remove tensor offset from tensor read/write calls because it was never used
      
      * fix build errors
      
      * fix build errors
      
      * fix python test errors
      
      * more python fixes
      
      * revert change
      
      * Make old version of read/write deprecated
      
      * fix python read overload
      
      * one more try to fix python binding
      
      * fix python
      
      * yet another try
      
      * why is this so hard
      
      * fix?
      
      * add text to changes.md
      c555b36a
  12. 10 May, 2019 1 commit
    • Adam Procter's avatar
      Dynamic-shape backend API change, with prototype implementation (#2844) · 5b0c6a32
      Adam Procter authored
      * Add create_dynamic_tensor function to Backend signature
      
      * Add skeleton of dynamic wrapper class
      
      * Simple test for construction
      
      * Some progress on dynamic tensor creation
      
      * Compile dynamic wrapper into core; change config string to a factory option
      
      * Add wrapped executable, working on simple example
      
      * Add wrapped dynamic tensor
      
      * Update to match new tensor API
      
      * Update wrapper to clone the graph; basic dyn test now passes
      
      * Update call_with_validate to grok dynamic
      
      * Make the unit tests a little prettier
      
      * Make get_element_type virtual
      
      * Change dynamic tests to be backend-parametric; fix get_element_type check for dyn tensors
      
      * Add dynamic.in.cpp
      
      * CODEOWNERS entry for dynamic_wrapper
      
      * Remove overly-accommodating behavior for create_dynamic_tensor on non-dynamic BEs
      
      * Pass enable_performance_collection to wrapped compile() calls
      
      * More comments in the 'abc' test
      
      * Fix 'create' wrapper in pybind11
      
      * Remove unnecessary WrappedStaticTensor class
      
      * Better names for the classes, and add some docstrings
      
      * Fix pybind for 'create' to return shared_ptr now
      5b0c6a32
  13. 08 May, 2019 1 commit
    • Robert Kimball's avatar
      Create backend as shared_ptr (#2793) · ea4a89ec
      Robert Kimball authored
      * Interpreter working
      
      * cleanup
      
      * cleanup
      
      * add CPU backend
      
      * Update the rest of the backends
      
      * update python API
      
      * update test_case to use new shared_ptr
      ea4a89ec
  14. 01 May, 2019 1 commit
    • Robert Kimball's avatar
      Fix python stuff on Scott's PR (#2843) · bf865efd
      Robert Kimball authored
      * Remove parameter, result, and node vector files and class, use vector
      
      * Fix gcc issues
      
      * style
      
      * Remove python references
      
      * update python files
      
      * fix error
      
      * fix build error
      bf865efd
  15. 25 Apr, 2019 1 commit
  16. 23 Apr, 2019 1 commit
  17. 28 Mar, 2019 1 commit
    • Jianying Lang's avatar
      Add BroadcastDistributed op (#2243) · 3af7837b
      Jianying Lang authored
      * Add MPI_Bcast to nGraph core
      
      * Add mpi_broadcast op and pass the unit test on CPU backend
      
      * Modify API for MLSL
      
      * Remove unused variable
      
      * Fix the format
      
      * Add the op call in python/pyngraph/ops/regmodule_pyngraph_op.cpp.
      
      * Fix emitter function for DistBroadcast op
      
      * Fix format
      
      * Fix the emitter function for distbroadcast op
      
      * Fix format
      
      * Delete the reference code for distbroadcast op
      
      * Include mlsl.h from ngraph build for genernal external usage
      
      * Change back for build
      
      * Fix alphabetical order issue and line space
      
      * Rename disbroadcast to broadcastdistributed
      
      * Change back continue
      
      * Update the changes
      
      * Fix style
      
      * Delete unused variables
      
      * Change some text format
      
      * Add support for interpreter backend for broadcastdistributed
      
      * Delete some redundant code
      
      * Fix format
      
      * rename
      
      * remove unused file
      
      * More renames
      
      * renaming
      
      * Remove one unused file
      
      * Fix a bug
      
      * add back redundant
      
      * One more commit
      
      * More commits
      
      * Unify distributed_send and distributed_recv functions
      
      * Fix format
      3af7837b
  18. 21 Mar, 2019 1 commit
    • tsocha's avatar
      [ONNX] Enable Pad modes for ONNX pad operator (#2590) · f8146495
      tsocha authored
      * Add support for negative padding
      
      * Use std::bind in pad builder check
      
      * Add support for negative padding in CPU backend
      
      * Updated kernel to do pad+slice
      
      * Remove type conversion warnings
      
      * Fix review comments
      
      * Remove interior padding from core op and interpreter stuff
      
      * Update backends other than GPU for retirement of padding_interior
      
      * Skeleton of support for edge/reflect padding
      
      * Post-merge cleanup
      
      * Attempt reference implementation for EDGE.
      
      * Fix the edge-padding reference, and add some unit tests
      
      * Implement REFLECT padding ref; add tests
      
      * Fixes to the CPU stuff so it compiles now
      
      * Fix test
      
      * Add support for different pad modes
      
      * Restore a stub get_padding_interior function, and tweak some stale comments
      
      * Update ONNX importer to not supply interior padding value; add checks for padding-too-small for EDGE and REFLECT
      
      * Typo
      
      * Bop a warning
      
      * Attempt fix to INTELGPU backend
      
      * Attempt another fix to INTELGPU backend
      
      * Fix pyapi
      
      * Style apply
      
      * Add support for padding modes
      
      * Remove unnecesary node validation checks
      
      * Remove tests for minimal reflect and edge pad
      
      * Remove commented tests
      
      * Remove unnecesary Asserts
      
      * Little update of pad documentation
      
      * Monospace for pad_mode options
      
      * Revert "Remove tests for minimal reflect and edge pad"
      
      This reverts commit 81e4787ea47195b832cab1452dde698bc05776fe.
      
      * Revert "Remove unnecesary node validation checks"
      
      This reverts commit 7e68db7564f3c9b1fd40e7db1d1bda4e0677cad9.
      
      * Test only spatial dims
      
      * axis -> spatial axis
      
      * Fix typo
      
      * Style check
      
      * Update test
      
      * Add CoordinateDiff include
      
      * Remove pad_mode from tree visualization
      
      * Convert padding into NVShape
      
      * Skip failing tests on GPU
      
      * Revert mode change
      
      * Remove merge artifact
      
      * Rename pad kernel into pad_ref
      f8146495
  19. 04 Mar, 2019 1 commit
    • Jayaram Bobba's avatar
      Extend compile API to take in PassConfig object (#2516) · a8bc57cb
      Jayaram Bobba authored
      * Extend compile API to take in PassConfig object
      
      * fix override warning
      
      * remove extra semicolon
      
      * cmake fixes to support cases where include_path has multiple directories
      
      * Help pybind find the overloaded compile methods
      
      * Limit compile-api exposed through PyBind (#2530)
      
      * clang-format
      
      * Remove setter for compilation mode to prevent post-init changes. Add compile-mode warning.
      
      * Removed pass_config include
      
      * fix merge
      a8bc57cb
  20. 02 Mar, 2019 1 commit
  21. 27 Feb, 2019 1 commit
  22. 26 Feb, 2019 1 commit
  23. 11 Feb, 2019 1 commit
  24. 28 Jan, 2019 2 commits
  25. 26 Jan, 2019 1 commit
  26. 17 Jan, 2019 1 commit
    • Adam Procter's avatar
      Retire FunctionCall, Reduce, ReduceWindow, SelectAndScatter (#2223) · 18d0993e
      Adam Procter authored
      * Retire Reduce, ReduceWindow, SelectAndScatter
      
      * Remove lingering AnyAllReplacement code
      
      * Remove apparently-now-unused macro
      
      * Remove lingering op/reduce.hpp includes
      
      * Remove FunctionCall
      
      * Update Python stuff to remove FunctionCall, Reduce
      
      * Add Any/All tests to GPU manifest
      
      * Remove deleted .hpp #include from gpu_compiled_function.cpp
      
      * Restore reduce_function.cpp since that is where the All/Any implementations ended up residing
      
      * Add reduce_function.cpp back into CMakeLists.txt
      
      * Remove #include of deleted reduce.hpp
      
      * Re-remove AnyAllReplacement from GPU passes
      
      * Remove deleted #includes from gpu_internal_function.cpp
      
      * Remove git conflict stuff (whoops)
      
      * Add newline at EOF, per review comment
      
      * Address flake8 complaint about unused import
      18d0993e
  27. 03 Jan, 2019 1 commit
  28. 20 Dec, 2018 1 commit
  29. 18 Dec, 2018 1 commit
  30. 08 Dec, 2018 1 commit
  31. 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
  32. 04 Dec, 2018 2 commits