- 15 Oct, 2017 1 commit
-
-
nikolayk authored
-
- 14 Oct, 2017 1 commit
-
-
Adam Procter authored
-
- 12 Oct, 2017 3 commits
-
-
Adam Procter authored
-
Adam Procter authored
-
Robert Kimball authored
-
- 11 Oct, 2017 1 commit
-
-
Nick Korovaiko authored
missing include fixing vector length format fixes avoid repeating input values in a test use input trig/hyper funcs
-
- 10 Oct, 2017 2 commits
-
-
Adam Procter authored
* Formatting; fix erroneous "type_prop" classification for reduce and slice tests * Clarify comment * Add step parameter to slice, with type checking but not (yet) implementation in VM
-
Adam Procter authored
* Add elementwise exp to VM * Formatting
-
- 09 Oct, 2017 6 commits
-
-
Robert Kimball authored
-
Adam Procter authored
* Type checking for reshape op * Formatting * Implement reduce op for matrices and smaller in VM * Formatting * Missing include for Ubuntu * Remove IndexBuiltin class
-
Adam Procter authored
-
Robert Kimball authored
-
Robert Kimball authored
-
Robert Kimball authored
-
- 08 Oct, 2017 1 commit
-
-
Robert Kimball authored
-
- 06 Oct, 2017 7 commits
-
-
Adam Procter authored
-
Scott Cyphers authored
Add a minimal Backend API and make the interpreter use it. read/write tensors (for frameworks)
-
Robert Kimball authored
* cleanup * fix node includes
-
Adam Procter authored
* isolate graph building / execution scope in some unit tests (this triggered the user-after-free which was also observed from TF) * Change descriptor::layout::TensorViewLayout to store a shared pointer to the TensorViewType rather than a reference to the TensorView
-
Robert Kimball authored
* port functions from funky passman branch * update pass tests * wip * fixed * remove obsolete test * remove debug prints
-
Adam Procter authored
* Type propagation for convert * Implement "convert" through VM * Temporary commit to unconfuse git merge * Undo temporary commit to unconfuse git merge
-
Adam Procter authored
* Add support for some polymorphic operators (arithmetic, etc.) * Extend to all other ops except Tuple, which is tricky (not quite sure where to get the needed type info) * Some tidying(???) up * Extend to handle Tuple op * Slightly more descriptive macro name
-
- 05 Oct, 2017 1 commit
-
-
Matthew Brookhart authored
-
- 04 Oct, 2017 2 commits
-
-
Adam Procter authored
-
Robert Kimball authored
-
- 03 Oct, 2017 4 commits
-
-
Adam Procter authored
* Implement broadcasting of scalars through VM * Implement vector-to-matrix broadcasting through VM * Add missing files * Address review comments
-
Adam Procter authored
Remove old {get,set}_{array_matrix}{_2d,} methods; update dot product to use new Eigen wrapper (#158)
-
Scott Cyphers authored
-
Scott Cyphers authored
* Have abs use layout. * Use layout to get vector info * Add format selector for mapped arrays Convert some ops Drop runtime.cpp since we don't expose the functions any more. * Add vector concat * concat matrix * Switch more ops to simpler eigen wrapping
-
- 02 Oct, 2017 2 commits
-
-
Adam Procter authored
* Add reduce op class and type propagation * Implement FunctionCall through VM * Changes Function to require explicit return type at construction time
-
Robert Kimball authored
-
- 28 Sep, 2017 2 commits
-
-
Scott Cyphers authored
-
Robert Kimball authored
* cleanup pass registration code. * Replace explicit code to do passes with pass_manager passes * make external function work with const types internally, it should not change the graph
-
- 27 Sep, 2017 2 commits
-
-
Scott Cyphers authored
* Basic layouts, tuples * Review comments. * Add incude for size_t. * Bop use-after-free in GetTupleElement * Inline call to get_element_types()
-
Adam Procter authored
* Implement vector and matrix concatenation through VM * Address PR comments * Comments on Concat semantics * Remove some redundant template parameters in concat_matrix and concat_vector * Formatting fixes in external_function.cpp
-
- 26 Sep, 2017 3 commits
-
-
Adam Procter authored
* Vector dot product implementation * Implement matrix mult instruction in VM * Add implementations for scalar-tensor and matrix/vector products.
-
Adam Procter authored
-
Adam Procter authored
* This is kind of a cheap hack for the moment, at least in the tensor constant case: each constant instruction carries around its value, and copies that to the result buffer everytime we need it. Ultimately we will probably want a pass that allocates space in the call frame for constants, similar to what we do for parameters.
-
- 25 Sep, 2017 2 commits
-
-
Adam Procter authored
* Add elementwise ops to runtime * equals operator implementation at graph and runtime level * "Select" operator (elementwise ?:) at graph and runtime level * A few file renames (`notequal` -> `not_equal`, `lessthan` -> `less_than`) * Macro wrapping boilerplate for op registration in `external_function.cpp` (this covers everything except `op::Parameter`).
-
Robert Kimball authored
-