- 14 Nov, 2018 1 commit
-
-
Adam Rogowiec authored
* Unit tests for conv2d causing errors. * UT for conv3D_bias * Fix padding order. `padding below` in nGraph terminology means padding added at the beginning of the axis. Whereas `padding above` means padding added at the end of the axis. * Rename test to sth more descriptive. * Apply clang-format. * Fix handling of `SAME_UPPER/LOWER` auto_pads mode for convolution/pooling ops. * Fix order of padding_below/above. Signed-off-by: Adam Rogowiec <adam.rogowiec@intel.com> * Fix error in calculating output data shape.
-
- 13 Nov, 2018 1 commit
-
-
Adam Rogowiec authored
* Add static keyword for helper function. * Fix MatMul for cases where left hand side is 1D vector. - Add unit-test for this case. * Add new line at the end of file. * Log warning when dealing with scalars * Apply clang-format * Review: fix spelling, rename test model.
-
- 30 Oct, 2018 1 commit
-
-
Michał Karzyński authored
* Add ArgMin operator * Add ArgMax and a basic test case * Rename variables * Apply workaround for problems with Reshape on i64 * Review comments * Review comments
-
- 23 Oct, 2018 1 commit
-
-
Artur Wojcik authored
* onnx: add information about a domain to operators set Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: updates after review Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: update comments in the code Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: fix bug in node's description method Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: fix CentOS compilation Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: more after review changes Signed-off-by: Artur Wojcik <artur.wojcik@intel.com>
-
- 15 Oct, 2018 2 commits
-
-
Michał Karzyński authored
* [ONNX] Assert all op types supported * Apply clang-format * Address code review comments * Fix #include statements
-
Adam Rogowiec authored
* Update ONNX Squeeze Op implementation to conform with doc. Add unit test. * Apply code-format. * Correct attribute value type. * Change used loop structure. * Modified version of loops. - Without erase and with minimal computation time complexity. * Run CI
-
- 14 Sep, 2018 1 commit
-
-
tsocha authored
* [ONNX] Non-linear operators * Review fix pt. 1 * Review fix pt. 2 * Non-linear tests * style check * Exception fix * Test fix
-
- 12 Sep, 2018 2 commits
-
-
Adam Rogowiec authored
* Add missing header. * Test for ReduceSum * Simple tests for reductions - L1/L2/LogSum/LogSumExp/Max/Mean/Min/Prod/SumSquare. * Add floating point literal suffix * Fix typo
-
tsocha authored
* [ONNX] Shape operator * Review fix pt. 1 * Style check
-
- 04 Sep, 2018 1 commit
-
-
tsocha authored
-
- 03 Sep, 2018 1 commit
-
-
Adam Rogowiec authored
* Move reshape utils down to reshape namespace. * Reshape operation. * Reshape operator binding. * Error fixes. * Reshape unit tests. * Move flatten utility function to reshape namespace. * Fix unused catched exception object * Add Constant support for int64 * Review fix. * clang-format * Review fix part 2. * Enable output shape as a second node input (only Constant). * Unit test for "dynamic" output shape (from Constant node). * Review fixes. * Make sure second Reshape op input is Constant node.
-
- 31 Aug, 2018 2 commits
- 30 Aug, 2018 1 commit
-
-
tsocha authored
-
- 29 Aug, 2018 2 commits
-
-
Michał Karzyński authored
* [ONNX] Sum op * [ONNX] Generic variadic op template * Add support for Min op * clang-format * Add support for Max op * Add support for Mean op * Docs, code cleanup * Docs, code cleanup
-
tsocha authored
-
- 28 Aug, 2018 2 commits
-
-
tsocha authored
* [ONNX] Softmax operator * Review fix pt. 1 * Review fix pt. 2 * Add softmax test * Update onnx_import.cpp
-
Michał Karzyński authored
-
- 27 Aug, 2018 1 commit
-
-
tsocha authored
* [ONNX] MatMul operator * Add NL on EOF * Review fix pt. 1
-
- 24 Aug, 2018 2 commits
-
-
tsocha authored
* Enable Mul OP * Reshape, broadcasting utils and Gemm op * Style check * Review fix pt. 1 * Review fix pt. 2 * Reuse documentation
-
Michał Karzyński authored
* Move batch_norm implementation to a .cpp file * Move split implementation to a .cpp file
-
- 23 Aug, 2018 1 commit
-
-
Michał Karzyński authored
* [ONNX] Refactor exceptions * [ONNX] Attribute helper functions * [ONNX] Convolution operation
-
- 21 Aug, 2018 1 commit
-
-
Michał Karzyński authored
* [ONNX] Add Relu op
-
- 14 Aug, 2018 1 commit
-
-
Adam Rogowiec authored
* onnx: add 'constant' operator Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: getting attribute value by name Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: fix code style Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: fix clang compilation warnings Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: exception Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: add 'split' operator Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: add public interface Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: add initial unit test for importer Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: initial implementetion of operator' set Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * [WIP] Unit test for split operation. * Fix Split Op bounds calculation + UT * clang format * Split Op with variable parts unit test. * Remove unused headers * General purpose exceptions. * Change not_supported_error message template. * Add new general purpose errors. * ONNX BatchNormalization operation. * Clang-format * Update CMake * Add fixed test data. * Add missing ngraph install prefix for cmake in travis Dockerfile. * Remove -Wno-zero-as-null-pointer-constant * Code review * Apply clang-format-3.9 * Add missing onnx_import interface files to CMakeList * Clean code. * Fix test. * Apply clang-format-3.9 * Copyright notice format * Remove inputs in separate files * use all_close to compare floating point values * missed changing one CPU to INTERPRETER for unit test
-
- 10 Aug, 2018 1 commit
-
-
Artur Wojcik authored
* onnx: add 'constant' operator Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: getting attribute value by name Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: fix code style Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: fix clang compilation warnings Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: exception Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: add 'split' operator Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: add public interface Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: add initial unit test for importer Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * onnx: initial implementetion of operator' set Signed-off-by: Artur Wojcik <artur.wojcik@intel.com> * [WIP] Unit test for split operation. * Fix Split Op bounds calculation + UT * clang format * Split Op with variable parts unit test. * Remove unused headers * Add missing ngraph install prefix for cmake in travis Dockerfile. * Remove -Wno-zero-as-null-pointer-constant * Code review * Apply clang-format-3.9 * Add missing onnx_import interface files to CMakeList * Copyright notice format
-