- 13 Jun, 2019 1 commit
-
-
Jayaram Bobba authored
* Change reduction operations to 2-input dynamic variants with convenience constructors for cases where reduction AxisSet is known at op construction time * Modify rest of arithmetic and logical reduction ops to 2-input dynamic variants. Some fixes to existing passes to keep constant reduction axes inputs intact * add new All tests to GPU manifest
-
- 17 Jan, 2019 1 commit
-
-
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
-
- 03 Jan, 2019 1 commit
-
-
Robert Kimball authored
* update licenses for 2019 * style
-
- 16 Nov, 2018 1 commit
-
-
Robert Kimball authored
* Move ParameterVector and ResultVector to the ngraph namespace where they belong * update python wrapper * more python fixes * style * Update setup.py * fix some new code
-
- 18 Sep, 2018 1 commit
-
-
Robert Kimball authored
-
- 29 Aug, 2018 1 commit
-
-
Robert Kimball authored
* use line comments instead of multiline comments for license header * update more * update new files * more header updates * style
-
- 16 Apr, 2018 1 commit
-
-
Nick Korovaiko authored
* get_input_op -> get_argument * more replacing * more replacing2
-
- 09 Apr, 2018 1 commit
-
-
Robert Kimball authored
* force backend compile() to make a copy of the graph fix copy_with_new_args on ops that have function pointers internal update unit test for new backend API add unit test for multiple simulataneous backends * move get_subdevices virtual method to Manager class * update GPU to latest * update call methods * add remove_compiled_function()
-
- 27 Feb, 2018 1 commit
-
-
Scott Cyphers authored
* Replace using aliases with actual classes
-
- 09 Feb, 2018 1 commit
-
-
Adam Procter authored
-
- 08 Feb, 2018 1 commit
-
-
Jennifer Myers authored
-
- 20 Jan, 2018 1 commit
-
-
Robert Kimball authored
* wip * wip * remove get_vector from runtime::TensorView class as it was for unit test only * cleanup * move writting vector to runtime::TensorView to the unit test dir * merge fix * PR review change * update from PR comment * update changes file
-
- 08 Jan, 2018 1 commit
-
-
Adam Procter authored
-
- 29 Dec, 2017 1 commit
-
-
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
-
- 21 Dec, 2017 1 commit
-
-
Robert Kimball authored
* remove ParameterizedConstant * use simpler element Type definition * Move TraitedType to NGVM directory
-
- 19 Dec, 2017 1 commit
-
-
Robert Kimball authored
* remove use of ParameterizedConstant from unit test. Now using Constant instead. Constant is not a templated class. * move ParameterizedTensorView to NGVM directory * element_type cleanup
-
- 14 Dec, 2017 1 commit
-
-
Nick Korovaiko authored
* tuple -> xla_tuple (+headers) xla_get_tuple_element get_tuple_element headers adding get_tuple_element + fixes get_tuple_element XLAFunction; breaks tests compiling libngraph.so w/ XLAFunction and Function; fixing tests is next build & test fixes formatting m_arguments -> get_arguments (first step to hide m_arguments) removing some get_arguments get_arguments -> get_arguments_DEPRECATED more DEPRECATED formatting m_arguments no more! at least technically halfway tests pass xla_function.cpp/hpp move defs into cpp files get_input_argument -> get_input_op formatting * add xla_function.* and assert -> throw * assert -> throw, remove cassert * removing emitter.cpp; poor guy got left behind * addressing feedback p1 * rename GetTupleElement -> GetOutputElement * adding a comment to get_arguments_FOR_GRAPH_REWRITE_ONLY * removing virtual off set_name
-
- 11 Dec, 2017 1 commit
-
-
Robert Kimball authored
* add support for n-dimensional operations by calling runtime/kernels * rename cpu backend classes and files * add tuple support to INTERPRETER * move ndarray out of runtime to test where it belonged * fix Tuple op per review comment
-
- 04 Dec, 2017 1 commit
-
-
Adam Procter authored
* Simpler kernel for broadcast * Fixed behavior for integer divide-by-zero, added unit tests * Strided and higher-dimensional slice (just tested to 3D) * Higher-dimensional sum * Replace-slice de-Eigenized; NOT TESTED AT HIGHER DIMENSIONS YET * Correct sum behavior when eliminating zero-length axes; add unit tests; also, add higher-dim unit tests for replace-slice * Higher-dimensional reduce, 'cause hey, why not? * Remove BroadcastScalarInstruction * Adding test for an observed failure at trivial sum on 5-tensors * De-Eigenized and higher-dimmified concat * Replace 'auto' in the kernels * temporary delete to ease merge * Re-insert tests that were deleted to ease merge * Refactor view-iteration * De-Eigenize reshape * Rework divide kernel to use std::enable_if to distinguish between floating and non-floating types * Update docs to reflect newly implemented cases in several ops * Rename parameters to View for more clarity; remove axis_walk_order (it's redundant) * Formatting * More terminological rejiggering * De-Eigenize scalar-tensor product * De-Eigenize dot * Update docstrings * Remove 'implementation status' tables from docstrings * Change step -> strides everywhere for consistent terminology * Formatting * Replace asserts in view.cpp with exceptions * Fix typo * Fix incorrect result type in dot1d test (ouch...) * Add missing support for Float64 to ngvm/external_function * Add int16 and uint16 (how was this missing?) * A few more additions relative to the missing element types * Disable tests that will not pass on CPU; they can still be run with test/unit-test --gtest_also_run_disabled_tests --gtest_filter='DISABLED_NGVM.*' * Move project_ and inject_ functions to common.[ch]pp, not view.[ch]pp * Rename View to CoordinateTransform * Add prefix ++ and += to CoordinateIterator
-
- 30 Nov, 2017 1 commit
-
-
Robert Kimball authored
* add json lib 2.1.1 * add json serialization of graph * cleanup * enhance unit test * remove FunctionProvider class and replace with virtual get_function() in Node * remove json code from element_type * move serialize to be directly in the ngraph namespace. cleanup header file. * add cname check to element::operator== * add using json = nlohmann::json
-
- 25 Nov, 2017 1 commit
-
-
Robert Kimball authored
* ParameterizedTensorView and ElementType cleanup * change element to_type() to from()
-
- 20 Nov, 2017 1 commit
-
-
Robert Kimball authored
* wip * remove ndarray dependency from ParameterizedTensorView * get rid of operator= on ParameterizedTensorView * remove unimplemented ctor * remove get_parameterized_tensor_view from TensorView class * cleanup * the patient will get worse before getting better. remove ParameterizedTensorView from element type * cleanup obsolete includes * remove unused file * move aligned_buffer and cleanup * cleanup * wip * wip * wip * cleanup * cleanup * wip * finally got rid of getting a non-const vector from PTV * wips * wip * remove unused * fix PR comments
-
- 10 Nov, 2017 1 commit
-
-
Scott Cyphers authored
* Do checking, tensor view spreading and type propagation during op construction Better names for builtin classes replace set_value_type with assert_value_type, which checks if type is as expected * Review comments * Review comments
-
- 06 Nov, 2017 1 commit
-
-
Scott Cyphers authored
-