- 12 Jun, 2019 1 commit
-
-
Pruthvi authored
-
- 11 Jun, 2019 4 commits
-
-
Michał Karzyński authored
* Test messages improvements * Add comment * and remove conversion from floating point contexts
-
Robert Kimball authored
* Use friendly_name in visualization * sytle * wip * cleanup * style
-
Amy Zhuang authored
* Add CPU backend support for Tile op using Eigen kernel. * Emit Tile code for CODEGEN. * Fix a bug. * Add one comment and fix error message typo.
-
Jayaram Bobba authored
-
- 10 Jun, 2019 2 commits
-
-
Jayaram Bobba authored
* Added build option to disable fast math * Change option name
-
Ilya Churaev authored
* Added float16 support for constant op * Fix Compilation issue. * Style.
-
- 08 Jun, 2019 1 commit
-
-
Robert Kimball authored
* Change serializer disable so that it is enabled by default if you do nothing * fix serializer disable * fix disabled build
-
- 07 Jun, 2019 3 commits
-
-
Pruthvi authored
* layout-aware cpu tensor copy_from * - add unit test case for tensor "copy_from" - set default layout after copy_from src to destination * - added test case to copy between two different layouts * - fix clang error - added test case to check copy_from if the two tensor layouts are different - fix the LayoutDesc comparision * fix windows build error * - move "cop_from" unit tests from tensor to cpu_test * fix compilation error * Added more unit tests * fix read and write API in cpu_tensor_view
-
Adam Procter authored
-
Nishant Patel authored
* Failing conv test case * Opt for mkldnn::algorithm::convolution_direct if input channel is less than 8 * Comment
-
- 06 Jun, 2019 3 commits
-
-
Jayaram Bobba authored
* Unified interpolate layer op * Minor attr name changes
-
Amy Zhuang authored
* Use Eigen kernel for Gather when axis is 0. * Fix style error. * Rename variables. Fix bugs. Use helper function. * Add one unit test. * Check if openmp is defined. * Change unit tests. * Use Eigen kernel for uint8_t type. Add one uint8_t unit test. Address PR feedback. * Update cpu emitter.
-
Tomasz Dołbniak authored
* Use updated reduced-size clDNN * Remove the obsolete BOOST_VERSION variable
-
- 05 Jun, 2019 9 commits
-
-
Adam Procter authored
-
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
-
Robert Kimball authored
* add BatchMatMul unit test to all builds * Check that interpreter is available * fix error * enable tests for features not yet implemented
-
Robert Kimball authored
* wip * build works with serialize disabled * one more try * disable unit test when json disabled * handle case where serialize is disabled in python test * one more fix
-
Scott Cyphers authored
* Fix klocwork issues * Need dynamic cast
-
Rob Earhart authored
* Update to use new backend constructor pattern * Update PlaidML unit test exclusions
-
Amy Zhuang authored
* Use Eigen kernel for ScatterAdd. * Emit ScatterAdd Eigen kernel for CODEGEN. Add comments. Address PR feedback. * Add more unit tests. Fix style error. Add ScatterAdd to AssignOpMap. * Combine non-scalar cases together. * Address PR feedback. * Fix a bug. * Use reshape to make the shapes of two slices match. * Rename variables. Fix bugs. Use helper function. Add one unit test. * Add reshape back.
-
Jayaram Bobba authored
* Added getters for dynslice * Style check fixes
-
Jayaram Bobba authored
* Combine transpose and reshape pattern into a single reshape * optimize reshapes only if in/out shapes dont match * Default to svg format for visualizing graphs and provide an env variable to change it
-
- 04 Jun, 2019 2 commits
-
-
Jayaram Bobba authored
* Handle 0 and -1 in shape inputs for dynamic reshape op * Flag to control semantics of zero values in dynreshape op
-
Adam Rogowiec authored
-
- 03 Jun, 2019 1 commit
-
-
Scott Cyphers authored
* Support for no-arg op construction * Add a-ops. * Two const init variations to try to solve windows link error * Try export for windows * Create outputs as needed, test * Remove attribute helpers * another windows try * windows * windows * Partial node cleanup * Review comments Node destruction that doesn't blow out the stack on deep graphs * Review comments * Update src/ngraph/node.hpp Co-Authored-By: Adam Procter <adam.m.procter@intel.com> * Have huge test check that nodes were deleted * Switch constructors to use Output instead of Node * Review comments * Add some comments
-
- 02 Jun, 2019 1 commit
-
-
Jayaram Bobba authored
Avoid negative values in int64 initialization for cases where int64 parameters are used as indices (#3004)
-
- 31 May, 2019 5 commits
-
-
Robert Kimball authored
* handle case where a node's output is connected multiple inputs of another node * fix creation of the FunctionCall to have the correct outputs * fix per review comment
-
Sang Ik Lee authored
* Cleanup how compile flags set and used by nGraph and external projects. Set C++11 through CMake and pass it down to external projects. Prefer CMake variables such as CMAKE_POSITION_INDEPENDENT_CODE and CMAKE_CXX_STANDARD instead of explicitly setting compiler dependent flags. Create json compilation database for external projects. CMAKE_CXX_FLAGS is used as common global options for nGraph and external projects. add_compile_options() is used for local options for current and sub directories. add_definitions() is used for setting definitions for current and sub directories. Note: Global options are not passed down to some external projects. Note: mkl-dnn resets CMAKE_CXX_FLAGS internally. Note: TBB and MLSL are not CMake based. Noet: Eigen and json is header only library. * Fix error. * Fix error. (second attempt) * Cleanup code. * Allow check for undefined macro. * Try to fix cldnn issue. * Set type for CMake arguments. * Pass C++ standard to protobuf. * Pass C++ standard down to TBB. * Change how Clang specific flags are handled. * Fix error. * Workaround for compile error on Baidu's PDPD docker. * Fix windows build error.
-
Chris Sullivan authored
-
Rob Earhart authored
-
Sang Ik Lee authored
-
- 30 May, 2019 2 commits
-
-
Jayaram Bobba authored
* Initial implementation of implicit broadcasting for eltwise ops. Only Add supported * Addressed PR feedback * cleanup * Rename Bcast to Broadcast * Autobroadcasting support for rest of elementwise ops * Serializer support for autobroadcast * Added missing autob serialization for Minimum * Added execution unit tests and more op types to implicit broadcast elimination * Addressed PR feedback * Fixes windows build issue * RVO optimization per PR feedback
-
Robert Kimball authored
* serialize constant faster * more speedup
-
- 29 May, 2019 6 commits
-
-
Adam Rogowiec authored
* Draft of FakeQuantize operation along with UTs. * Add FakeQuantize to implemented operators on IGPU. * Get back FakeQuantize op case to switch. * Fix compilation errors. * Skip test for INTERPRETER backend and disable type_prop tests. * Initial implementation covering the most basic case * Cleanup of fake_quantize_with_clip UT * Reformat the cpu unit tests manifest and unlock anothe fake quant UT * Handle the clipping case by subtracting input_low from quantization input * Clip the input data before quantization to avoid Selects * UT manifest fix * Obsolete comment removed * Code formatting * Broadcast input data for non-scalar in/out params * Code formatting * Enable the type prop tests for FakeQuantize * Dequant the data without using the Dequantize op (fixes an edge case)
-
Ilya Churaev authored
-
Adam Rogowiec authored
* Move reshape from utils to builder. * Add aliases to functions in old place and describe changes.
-
gcwenger authored
-
Robert Kimball authored
-
Tomasz Dołbniak authored
* ShuffleChannels implementation * Validation of ShuffleChannels params * Implementation of ShuffleChannels decompose_op() * Formatting adjustments * Corrected implementation and validation of op params * Basic test of ShuffleChannels * Negative axis value test * Default params for the ShuffleChannels op * ShuffleChannels test with floats * ShuffleChannels validation unit tests * PR comments * Compilation error fix * PR feedback and cleanup * Code formatting adjustment * Negative axis value documentation * Docs update (PR feedback) * PR feedback: shape and axis validation * Modify axis semantics on shuffle op * Revert "PR feedback: shape and axis validation" This reverts commit 21b708e710b91da2a7e37a69c0da1f31c7743b47.
-